blob: a4b3c8c8494198176e5a17a668d232fbfaf07b6a [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
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020015#include <common/cfgparse.h>
16#include <common/compat.h>
17#include <common/config.h>
18#include <common/debug.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010019#include <common/hathreads.h>
20#include <common/initcall.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020021#include <common/memory.h>
22#include <common/time.h>
23
24#include <types/arg.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020025#include <types/global.h>
Christopher Faulet1f40b912017-02-17 09:32:19 +010026#include <types/spoe.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020027
Christopher Faulet57583e42017-09-04 15:41:09 +020028#include <proto/acl.h>
Christopher Faulet76c09ef2017-09-21 11:03:52 +020029#include <proto/action.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020030#include <proto/arg.h>
31#include <proto/backend.h>
32#include <proto/filters.h>
Christopher Faulet48026722016-11-16 15:01:12 +010033#include <proto/freq_ctr.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020034#include <proto/frontend.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +020035#include <proto/http_rules.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020036#include <proto/log.h>
37#include <proto/proto_http.h>
38#include <proto/proxy.h>
39#include <proto/sample.h>
40#include <proto/session.h>
41#include <proto/signal.h>
Christopher Faulet4ff3e572017-02-24 14:31:11 +010042#include <proto/spoe.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020043#include <proto/stream.h>
44#include <proto/stream_interface.h>
45#include <proto/task.h>
Christopher Faulet76c09ef2017-09-21 11:03:52 +020046#include <proto/tcp_rules.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020047#include <proto/vars.h>
48
49#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
50#define SPOE_PRINTF(x...) fprintf(x)
Christopher Fauletb077cdc2018-01-24 16:37:57 +010051#define SPOE_DEBUG_STMT(statement) statement
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020052#else
53#define SPOE_PRINTF(x...)
Christopher Fauletb077cdc2018-01-24 16:37:57 +010054#define SPOE_DEBUG_STMT(statement)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020055#endif
56
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +010057/* Reserved 4 bytes to the frame size. So a frame and its size can be written
58 * together in a buffer */
59#define MAX_FRAME_SIZE global.tune.bufsize - 4
60
61/* The minimum size for a frame */
62#define MIN_FRAME_SIZE 256
63
Christopher Fauletf51f5fa2017-01-19 10:01:12 +010064/* Reserved for the metadata and the frame type.
65 * So <MAX_FRAME_SIZE> - <FRAME_HDR_SIZE> is the maximum payload size */
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +010066#define FRAME_HDR_SIZE 32
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020067
Christopher Fauletf51f5fa2017-01-19 10:01:12 +010068/* Helper to get SPOE ctx inside an appctx */
Christopher Faulet42bfa462017-01-04 14:14:19 +010069#define SPOE_APPCTX(appctx) ((struct spoe_appctx *)((appctx)->ctx.spoe.ptr))
70
Christopher Faulet3b386a32017-02-23 10:17:15 +010071/* SPOE filter id. Used to identify SPOE filters */
72const char *spoe_filter_id = "SPOE filter";
73
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020074/* Set if the handle on SIGUSR1 is registered */
75static int sighandler_registered = 0;
76
77/* proxy used during the parsing */
78struct proxy *curproxy = NULL;
79
80/* The name of the SPOE engine, used during the parsing */
81char *curengine = NULL;
82
83/* SPOE agent used during the parsing */
Christopher Faulet11610f32017-09-21 10:23:10 +020084/* SPOE agent/group/message used during the parsing */
85struct spoe_agent *curagent = NULL;
86struct spoe_group *curgrp = NULL;
87struct spoe_message *curmsg = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020088
89/* list of SPOE messages and placeholders used during the parsing */
90struct list curmsgs;
Christopher Faulet11610f32017-09-21 10:23:10 +020091struct list curgrps;
92struct list curmphs;
93struct list curgphs;
Christopher Faulet336d3ef2017-12-22 10:00:55 +010094struct list curvars;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020095
Christopher Faulet7250b8f2018-03-26 17:19:01 +020096/* list of log servers used during the parsing */
97struct list curlogsrvs;
98
Christopher Faulet0e0f0852018-03-26 17:20:36 +020099/* agent's proxy flags (PR_O_* and PR_O2_*) used during parsing */
100int curpxopts;
101int curpxopts2;
102
Christopher Faulet42bfa462017-01-04 14:14:19 +0100103/* Pools used to allocate SPOE structs */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100104DECLARE_STATIC_POOL(pool_head_spoe_ctx, "spoe_ctx", sizeof(struct spoe_context));
105DECLARE_STATIC_POOL(pool_head_spoe_appctx, "spoe_appctx", sizeof(struct spoe_appctx));
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200106
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200107struct flt_ops spoe_ops;
108
Christopher Faulet8ef75252017-02-20 22:56:03 +0100109static int spoe_queue_context(struct spoe_context *ctx);
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200110static int spoe_acquire_buffer(struct buffer *buf, struct buffer_wait *buffer_wait);
111static void spoe_release_buffer(struct buffer *buf, struct buffer_wait *buffer_wait);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200112
113/********************************************************************
114 * helper functions/globals
115 ********************************************************************/
116static void
Christopher Faulet11610f32017-09-21 10:23:10 +0200117spoe_release_placeholder(struct spoe_placeholder *ph)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200118{
Christopher Faulet11610f32017-09-21 10:23:10 +0200119 if (!ph)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200120 return;
Christopher Faulet11610f32017-09-21 10:23:10 +0200121 free(ph->id);
122 free(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200123}
124
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200125static void
Christopher Faulet8ef75252017-02-20 22:56:03 +0100126spoe_release_message(struct spoe_message *msg)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200127{
Christopher Faulet57583e42017-09-04 15:41:09 +0200128 struct spoe_arg *arg, *argback;
129 struct acl *acl, *aclback;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200130
131 if (!msg)
132 return;
133 free(msg->id);
134 free(msg->conf.file);
Christopher Faulet57583e42017-09-04 15:41:09 +0200135 list_for_each_entry_safe(arg, argback, &msg->args, list) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200136 release_sample_expr(arg->expr);
137 free(arg->name);
138 LIST_DEL(&arg->list);
139 free(arg);
140 }
Christopher Faulet57583e42017-09-04 15:41:09 +0200141 list_for_each_entry_safe(acl, aclback, &msg->acls, list) {
142 LIST_DEL(&acl->list);
143 prune_acl(acl);
144 free(acl);
145 }
146 if (msg->cond) {
147 prune_acl_cond(msg->cond);
148 free(msg->cond);
149 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200150 free(msg);
151}
152
153static void
Christopher Faulet11610f32017-09-21 10:23:10 +0200154spoe_release_group(struct spoe_group *grp)
155{
156 if (!grp)
157 return;
158 free(grp->id);
159 free(grp->conf.file);
160 free(grp);
161}
162
163static void
Christopher Faulet8ef75252017-02-20 22:56:03 +0100164spoe_release_agent(struct spoe_agent *agent)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200165{
Christopher Faulet11610f32017-09-21 10:23:10 +0200166 struct spoe_message *msg, *msgback;
167 struct spoe_group *grp, *grpback;
Christopher Faulet24289f22017-09-25 14:48:02 +0200168 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200169
170 if (!agent)
171 return;
172 free(agent->id);
173 free(agent->conf.file);
174 free(agent->var_pfx);
Christopher Faulet985532d2016-11-16 15:36:19 +0100175 free(agent->var_on_error);
Christopher Faulet36bda1c2018-03-22 09:08:20 +0100176 free(agent->var_t_process);
177 free(agent->var_t_total);
Christopher Faulet11610f32017-09-21 10:23:10 +0200178 list_for_each_entry_safe(msg, msgback, &agent->messages, list) {
179 LIST_DEL(&msg->list);
180 spoe_release_message(msg);
181 }
182 list_for_each_entry_safe(grp, grpback, &agent->groups, list) {
183 LIST_DEL(&grp->list);
184 spoe_release_group(grp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200185 }
Willy Tarreau3ddcf762019-02-07 14:22:52 +0100186 if (agent->rt) {
Christopher Faulet46c76822019-09-17 11:55:52 +0200187 for (i = 0; i < global.nbthread; ++i) {
188 free(agent->rt[i].engine_id);
Willy Tarreau3ddcf762019-02-07 14:22:52 +0100189 HA_SPIN_DESTROY(&agent->rt[i].lock);
Christopher Faulet46c76822019-09-17 11:55:52 +0200190 }
Willy Tarreau3ddcf762019-02-07 14:22:52 +0100191 }
Christopher Faulet24289f22017-09-25 14:48:02 +0200192 free(agent->rt);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200193 free(agent);
194}
195
196static const char *spoe_frm_err_reasons[SPOE_FRM_ERRS] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100197 [SPOE_FRM_ERR_NONE] = "normal",
198 [SPOE_FRM_ERR_IO] = "I/O error",
199 [SPOE_FRM_ERR_TOUT] = "a timeout occurred",
200 [SPOE_FRM_ERR_TOO_BIG] = "frame is too big",
201 [SPOE_FRM_ERR_INVALID] = "invalid frame received",
202 [SPOE_FRM_ERR_NO_VSN] = "version value not found",
203 [SPOE_FRM_ERR_NO_FRAME_SIZE] = "max-frame-size value not found",
204 [SPOE_FRM_ERR_NO_CAP] = "capabilities value not found",
205 [SPOE_FRM_ERR_BAD_VSN] = "unsupported version",
206 [SPOE_FRM_ERR_BAD_FRAME_SIZE] = "max-frame-size too big or too small",
207 [SPOE_FRM_ERR_FRAG_NOT_SUPPORTED] = "fragmentation not supported",
208 [SPOE_FRM_ERR_INTERLACED_FRAMES] = "invalid interlaced frames",
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100209 [SPOE_FRM_ERR_FRAMEID_NOTFOUND] = "frame-id not found",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100210 [SPOE_FRM_ERR_RES] = "resource allocation error",
211 [SPOE_FRM_ERR_UNKNOWN] = "an unknown error occurred",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200212};
213
214static const char *spoe_event_str[SPOE_EV_EVENTS] = {
215 [SPOE_EV_ON_CLIENT_SESS] = "on-client-session",
216 [SPOE_EV_ON_TCP_REQ_FE] = "on-frontend-tcp-request",
217 [SPOE_EV_ON_TCP_REQ_BE] = "on-backend-tcp-request",
218 [SPOE_EV_ON_HTTP_REQ_FE] = "on-frontend-http-request",
219 [SPOE_EV_ON_HTTP_REQ_BE] = "on-backend-http-request",
220
221 [SPOE_EV_ON_SERVER_SESS] = "on-server-session",
222 [SPOE_EV_ON_TCP_RSP] = "on-tcp-response",
223 [SPOE_EV_ON_HTTP_RSP] = "on-http-response",
224};
225
226
227#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
228
229static const char *spoe_ctx_state_str[SPOE_CTX_ST_ERROR+1] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100230 [SPOE_CTX_ST_NONE] = "NONE",
231 [SPOE_CTX_ST_READY] = "READY",
232 [SPOE_CTX_ST_ENCODING_MSGS] = "ENCODING_MSGS",
233 [SPOE_CTX_ST_SENDING_MSGS] = "SENDING_MSGS",
234 [SPOE_CTX_ST_WAITING_ACK] = "WAITING_ACK",
235 [SPOE_CTX_ST_DONE] = "DONE",
236 [SPOE_CTX_ST_ERROR] = "ERROR",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200237};
238
239static const char *spoe_appctx_state_str[SPOE_APPCTX_ST_END+1] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100240 [SPOE_APPCTX_ST_CONNECT] = "CONNECT",
241 [SPOE_APPCTX_ST_CONNECTING] = "CONNECTING",
242 [SPOE_APPCTX_ST_IDLE] = "IDLE",
243 [SPOE_APPCTX_ST_PROCESSING] = "PROCESSING",
244 [SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY] = "SENDING_FRAG_NOTIFY",
245 [SPOE_APPCTX_ST_WAITING_SYNC_ACK] = "WAITING_SYNC_ACK",
246 [SPOE_APPCTX_ST_DISCONNECT] = "DISCONNECT",
247 [SPOE_APPCTX_ST_DISCONNECTING] = "DISCONNECTING",
248 [SPOE_APPCTX_ST_EXIT] = "EXIT",
249 [SPOE_APPCTX_ST_END] = "END",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200250};
251
252#endif
Christopher Fauleta1cda022016-12-21 08:58:06 +0100253
Christopher Faulet8ef75252017-02-20 22:56:03 +0100254/* Used to generates a unique id for an engine. On success, it returns a
255 * allocated string. So it is the caller's reponsibility to release it. If the
256 * allocation failed, it returns NULL. */
Christopher Fauleta1cda022016-12-21 08:58:06 +0100257static char *
258generate_pseudo_uuid()
259{
Christopher Fauleta1cda022016-12-21 08:58:06 +0100260 char *uuid;
Christopher Fauleteaf11912019-09-17 15:07:02 +0200261 uint32_t rnd[4] = { 0, 0, 0, 0 };
262 uint64_t last = 0;
263 int byte = 0;
264 uint8_t bits = 0;
265 unsigned int rand_max_bits = my_flsl(RAND_MAX);
Christopher Fauleta1cda022016-12-21 08:58:06 +0100266
Christopher Fauleteaf11912019-09-17 15:07:02 +0200267 if ((uuid = calloc(1, 37)) == NULL)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100268 return NULL;
269
Christopher Fauleteaf11912019-09-17 15:07:02 +0200270 while (byte < 4) {
271 while (bits < 32) {
Willy Tarreau861c4ef2020-03-08 00:42:37 +0100272 last |= (uint64_t)ha_random() << bits;
Christopher Fauleteaf11912019-09-17 15:07:02 +0200273 bits += rand_max_bits;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100274 }
Christopher Fauleteaf11912019-09-17 15:07:02 +0200275 rnd[byte++] = last;
276 last >>= 32u;
277 bits -= 32;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100278 }
Willy Tarreau079ec122019-10-29 10:25:49 +0100279 snprintf(uuid, 37, "%8.8x-%4.4x-%4.4x-%4.4x-%12.12llx",
Christopher Fauleteaf11912019-09-17 15:07:02 +0200280 rnd[0],
281 rnd[1] & 0xFFFF,
282 ((rnd[1] >> 16u) & 0xFFF) | 0x4000, // highest 4 bits indicate the uuid version
283 (rnd[2] & 0x3FFF) | 0x8000, // the highest 2 bits indicate the UUID variant (10),
284 (long long)((rnd[2] >> 14u) | ((uint64_t) rnd[3] << 18u)) & 0xFFFFFFFFFFFFull
285 );
Christopher Fauleta1cda022016-12-21 08:58:06 +0100286 return uuid;
287}
288
Christopher Fauletb2dd1e02018-03-22 09:07:41 +0100289
290static inline void
291spoe_update_stat_time(struct timeval *tv, long *t)
292{
293 if (*t == -1)
294 *t = tv_ms_elapsed(tv, &now);
295 else
296 *t += tv_ms_elapsed(tv, &now);
297 tv_zero(tv);
298}
299
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200300/********************************************************************
301 * Functions that encode/decode SPOE frames
302 ********************************************************************/
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200303/* Helper to get static string length, excluding the terminating null byte */
304#define SLEN(str) (sizeof(str)-1)
305
306/* Predefined key used in HELLO/DISCONNECT frames */
307#define SUPPORTED_VERSIONS_KEY "supported-versions"
308#define VERSION_KEY "version"
309#define MAX_FRAME_SIZE_KEY "max-frame-size"
310#define CAPABILITIES_KEY "capabilities"
Christopher Fauleta1cda022016-12-21 08:58:06 +0100311#define ENGINE_ID_KEY "engine-id"
Christopher Fauletba7bc162016-11-07 21:07:38 +0100312#define HEALTHCHECK_KEY "healthcheck"
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200313#define STATUS_CODE_KEY "status-code"
314#define MSG_KEY "message"
315
316struct spoe_version {
317 char *str;
318 int min;
319 int max;
320};
321
322/* All supported versions */
323static struct spoe_version supported_versions[] = {
Christopher Faulet63816502018-05-31 14:56:42 +0200324 /* 1.0 is now unsupported because of a bug about frame's flags*/
325 {"2.0", 2000, 2000},
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200326 {NULL, 0, 0}
327};
328
329/* Comma-separated list of supported versions */
Christopher Faulet63816502018-05-31 14:56:42 +0200330#define SUPPORTED_VERSIONS_VAL "2.0"
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200331
Christopher Faulet8ef75252017-02-20 22:56:03 +0100332/* Convert a string to a SPOE version value. The string must follow the format
333 * "MAJOR.MINOR". It will be concerted into the integer (1000 * MAJOR + MINOR).
334 * If an error occurred, -1 is returned. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200335static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100336spoe_str_to_vsn(const char *str, size_t len)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200337{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100338 const char *p, *end;
339 int maj, min, vsn;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200340
Christopher Faulet8ef75252017-02-20 22:56:03 +0100341 p = str;
342 end = str+len;
343 maj = min = 0;
344 vsn = -1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200345
Christopher Faulet8ef75252017-02-20 22:56:03 +0100346 /* skip leading spaces */
347 while (p < end && isspace(*p))
348 p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200349
Christopher Faulet8ef75252017-02-20 22:56:03 +0100350 /* parse Major number, until the '.' */
351 while (*p != '.') {
352 if (p >= end || *p < '0' || *p > '9')
353 goto out;
354 maj *= 10;
355 maj += (*p - '0');
356 p++;
357 }
358
359 /* check Major version */
360 if (!maj)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200361 goto out;
362
Christopher Faulet8ef75252017-02-20 22:56:03 +0100363 p++; /* skip the '.' */
364 if (p >= end || *p < '0' || *p > '9') /* Minor number is missing */
365 goto out;
366
367 /* Parse Minor number */
368 while (p < end) {
369 if (*p < '0' || *p > '9')
370 break;
371 min *= 10;
372 min += (*p - '0');
373 p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200374 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100375
376 /* check Minor number */
377 if (min > 999)
378 goto out;
379
380 /* skip trailing spaces */
381 while (p < end && isspace(*p))
382 p++;
383 if (p != end)
384 goto out;
385
386 vsn = maj * 1000 + min;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200387 out:
388 return vsn;
389}
390
Christopher Faulet8ef75252017-02-20 22:56:03 +0100391/* Encode the HELLO frame sent by HAProxy to an agent. It returns the number of
Joseph Herlantf7f60312018-11-15 13:46:49 -0800392 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
Christopher Faulet8ef75252017-02-20 22:56:03 +0100393 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200394static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100395spoe_prepare_hahello_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200396{
Willy Tarreau83061a82018-07-13 11:56:34 +0200397 struct buffer *chk;
Christopher Faulet42bfa462017-01-04 14:14:19 +0100398 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100399 char *p, *end;
400 unsigned int flags = SPOE_FRM_FL_FIN;
401 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200402
Christopher Faulet8ef75252017-02-20 22:56:03 +0100403 p = frame;
404 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200405
Christopher Faulet8ef75252017-02-20 22:56:03 +0100406 /* Set Frame type */
407 *p++ = SPOE_FRM_T_HAPROXY_HELLO;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200408
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100409 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200410 flags = htonl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100411 memcpy(p, (char *)&flags, 4);
412 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200413
414 /* No stream-id and frame-id for HELLO frames */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100415 *p++ = 0; *p++ = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200416
417 /* There are 3 mandatory items: "supported-versions", "max-frame-size"
418 * and "capabilities" */
419
420 /* "supported-versions" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100421 sz = SLEN(SUPPORTED_VERSIONS_KEY);
422 if (spoe_encode_buffer(SUPPORTED_VERSIONS_KEY, sz, &p, end) == -1)
423 goto too_big;
424
425 *p++ = SPOE_DATA_T_STR;
426 sz = SLEN(SUPPORTED_VERSIONS_VAL);
427 if (spoe_encode_buffer(SUPPORTED_VERSIONS_VAL, sz, &p, end) == -1)
428 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200429
430 /* "max-fram-size" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100431 sz = SLEN(MAX_FRAME_SIZE_KEY);
432 if (spoe_encode_buffer(MAX_FRAME_SIZE_KEY, sz, &p, end) == -1)
433 goto too_big;
434
435 *p++ = SPOE_DATA_T_UINT32;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200436 if (encode_varint(SPOE_APPCTX(appctx)->max_frame_size, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100437 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200438
439 /* "capabilities" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100440 sz = SLEN(CAPABILITIES_KEY);
441 if (spoe_encode_buffer(CAPABILITIES_KEY, sz, &p, end) == -1)
442 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200443
Christopher Faulet8ef75252017-02-20 22:56:03 +0100444 *p++ = SPOE_DATA_T_STR;
Christopher Faulet305c6072017-02-23 16:17:53 +0100445 chk = get_trash_chunk();
446 if (agent != NULL && (agent->flags & SPOE_FL_PIPELINING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200447 memcpy(chk->area, "pipelining", 10);
448 chk->data += 10;
Christopher Faulet305c6072017-02-23 16:17:53 +0100449 }
450 if (agent != NULL && (agent->flags & SPOE_FL_ASYNC)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200451 if (chk->data) chk->area[chk->data++] = ',';
452 memcpy(chk->area+chk->data, "async", 5);
453 chk->data += 5;
Christopher Faulet305c6072017-02-23 16:17:53 +0100454 }
Christopher Fauletcecd8522017-02-24 22:11:21 +0100455 if (agent != NULL && (agent->flags & SPOE_FL_RCV_FRAGMENTATION)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200456 if (chk->data) chk->area[chk->data++] = ',';
457 memcpy(chk->area+chk->data, "fragmentation", 13);
Miroslav Zagorac6b3690b2019-01-13 16:55:01 +0100458 chk->data += 13;
Christopher Fauletcecd8522017-02-24 22:11:21 +0100459 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200460 if (spoe_encode_buffer(chk->area, chk->data, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100461 goto too_big;
462
463 /* (optionnal) "engine-id" K/V item, if present */
Christopher Faulet46c76822019-09-17 11:55:52 +0200464 if (agent != NULL && agent->rt[tid].engine_id != NULL) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100465 sz = SLEN(ENGINE_ID_KEY);
466 if (spoe_encode_buffer(ENGINE_ID_KEY, sz, &p, end) == -1)
467 goto too_big;
468
469 *p++ = SPOE_DATA_T_STR;
Christopher Faulet46c76822019-09-17 11:55:52 +0200470 sz = strlen(agent->rt[tid].engine_id);
471 if (spoe_encode_buffer(agent->rt[tid].engine_id, sz, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100472 goto too_big;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100473 }
474
Christopher Faulet8ef75252017-02-20 22:56:03 +0100475 return (p - frame);
476
477 too_big:
478 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
479 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200480}
481
Christopher Faulet8ef75252017-02-20 22:56:03 +0100482/* Encode DISCONNECT frame sent by HAProxy to an agent. It returns the number of
483 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
484 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200485static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100486spoe_prepare_hadiscon_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200487{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100488 const char *reason;
489 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100490 unsigned int flags = SPOE_FRM_FL_FIN;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100491 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200492
Christopher Faulet8ef75252017-02-20 22:56:03 +0100493 p = frame;
494 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200495
Christopher Faulet8ef75252017-02-20 22:56:03 +0100496 /* Set Frame type */
497 *p++ = SPOE_FRM_T_HAPROXY_DISCON;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200498
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100499 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200500 flags = htonl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100501 memcpy(p, (char *)&flags, 4);
502 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200503
504 /* No stream-id and frame-id for DISCONNECT frames */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100505 *p++ = 0; *p++ = 0;
506
507 if (SPOE_APPCTX(appctx)->status_code >= SPOE_FRM_ERRS)
508 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_UNKNOWN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200509
510 /* There are 2 mandatory items: "status-code" and "message" */
511
512 /* "status-code" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100513 sz = SLEN(STATUS_CODE_KEY);
514 if (spoe_encode_buffer(STATUS_CODE_KEY, sz, &p, end) == -1)
515 goto too_big;
516
517 *p++ = SPOE_DATA_T_UINT32;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200518 if (encode_varint(SPOE_APPCTX(appctx)->status_code, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100519 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200520
521 /* "message" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100522 sz = SLEN(MSG_KEY);
523 if (spoe_encode_buffer(MSG_KEY, sz, &p, end) == -1)
524 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200525
Christopher Faulet8ef75252017-02-20 22:56:03 +0100526 /*Get the message corresponding to the status code */
527 reason = spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code];
528
529 *p++ = SPOE_DATA_T_STR;
530 sz = strlen(reason);
531 if (spoe_encode_buffer(reason, sz, &p, end) == -1)
532 goto too_big;
533
534 return (p - frame);
535
536 too_big:
537 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
538 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200539}
540
Christopher Faulet8ef75252017-02-20 22:56:03 +0100541/* Encode the NOTIFY frame sent by HAProxy to an agent. It returns the number of
542 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
543 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200544static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100545spoe_prepare_hanotify_frame(struct appctx *appctx, struct spoe_context *ctx,
Christopher Fauleta1cda022016-12-21 08:58:06 +0100546 char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200547{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100548 char *p, *end;
549 unsigned int stream_id, frame_id;
550 unsigned int flags = SPOE_FRM_FL_FIN;
551 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200552
Christopher Faulet8ef75252017-02-20 22:56:03 +0100553 p = frame;
554 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200555
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100556 stream_id = ctx->stream_id;
557 frame_id = ctx->frame_id;
558
559 if (ctx->flags & SPOE_CTX_FL_FRAGMENTED) {
560 /* The fragmentation is not supported by the applet */
561 if (!(SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_FRAGMENTATION)) {
562 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
563 return -1;
564 }
565 flags = ctx->frag_ctx.flags;
566 }
567
568 /* Set Frame type */
569 *p++ = SPOE_FRM_T_HAPROXY_NOTIFY;
570
571 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200572 flags = htonl(flags);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100573 memcpy(p, (char *)&flags, 4);
574 p += 4;
575
576 /* Set stream-id and frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200577 if (encode_varint(stream_id, &p, end) == -1)
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100578 goto too_big;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200579 if (encode_varint(frame_id, &p, end) == -1)
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100580 goto too_big;
581
582 /* Copy encoded messages, if possible */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200583 sz = b_data(&ctx->buffer);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100584 if (p + sz >= end)
585 goto too_big;
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200586 memcpy(p, b_head(&ctx->buffer), sz);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100587 p += sz;
588
589 return (p - frame);
590
591 too_big:
592 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
593 return 0;
594}
595
596/* Encode next part of a fragmented frame sent by HAProxy to an agent. It
597 * returns the number of encoded bytes in the frame on success, 0 if an encoding
598 * error occurred and -1 if a fatal error occurred. */
599static int
600spoe_prepare_hafrag_frame(struct appctx *appctx, struct spoe_context *ctx,
601 char *frame, size_t size)
602{
603 char *p, *end;
604 unsigned int stream_id, frame_id;
605 unsigned int flags;
606 size_t sz;
607
608 p = frame;
609 end = frame+size;
610
Christopher Faulet8ef75252017-02-20 22:56:03 +0100611 /* <ctx> is null when the stream has aborted the processing of a
612 * fragmented frame. In this case, we must notify the corresponding
613 * agent using ids stored in <frag_ctx>. */
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100614 if (ctx == NULL) {
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100615 flags = (SPOE_FRM_FL_FIN|SPOE_FRM_FL_ABRT);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100616 stream_id = SPOE_APPCTX(appctx)->frag_ctx.cursid;
617 frame_id = SPOE_APPCTX(appctx)->frag_ctx.curfid;
618 }
619 else {
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100620 flags = ctx->frag_ctx.flags;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100621 stream_id = ctx->stream_id;
622 frame_id = ctx->frame_id;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100623 }
624
Christopher Faulet8ef75252017-02-20 22:56:03 +0100625 /* Set Frame type */
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100626 *p++ = SPOE_FRM_T_UNSET;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100627
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100628 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200629 flags = htonl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100630 memcpy(p, (char *)&flags, 4);
631 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200632
633 /* Set stream-id and frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200634 if (encode_varint(stream_id, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100635 goto too_big;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200636 if (encode_varint(frame_id, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100637 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200638
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100639 if (ctx == NULL)
640 goto end;
641
Christopher Faulet8ef75252017-02-20 22:56:03 +0100642 /* Copy encoded messages, if possible */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200643 sz = b_data(&ctx->buffer);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100644 if (p + sz >= end)
645 goto too_big;
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200646 memcpy(p, b_head(&ctx->buffer), sz);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100647 p += sz;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100648
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100649 end:
Christopher Faulet8ef75252017-02-20 22:56:03 +0100650 return (p - frame);
651
652 too_big:
653 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
654 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200655}
656
Christopher Faulet8ef75252017-02-20 22:56:03 +0100657/* Decode and process the HELLO frame sent by an agent. It returns the number of
658 * read bytes on success, 0 if a decoding error occurred, and -1 if a fatal
659 * error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200660static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100661spoe_handle_agenthello_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200662{
Christopher Faulet305c6072017-02-23 16:17:53 +0100663 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
664 char *p, *end;
665 int vsn, max_frame_size;
666 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100667
668 p = frame;
669 end = frame + size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200670
671 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100672 if (*p++ != SPOE_FRM_T_AGENT_HELLO) {
673 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200674 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100675 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200676
Christopher Faulet8ef75252017-02-20 22:56:03 +0100677 if (size < 7 /* TYPE + METADATA */) {
678 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
679 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200680 }
681
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100682 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100683 memcpy((char *)&flags, p, 4);
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200684 flags = ntohl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100685 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200686
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100687 /* Fragmentation is not supported for HELLO frame */
688 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100689 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100690 return -1;
691 }
692
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200693 /* stream-id and frame-id must be cleared */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100694 if (*p != 0 || *(p+1) != 0) {
695 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
696 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200697 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100698 p += 2;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200699
700 /* There are 3 mandatory items: "version", "max-frame-size" and
701 * "capabilities" */
702
703 /* Loop on K/V items */
Christopher Fauleta1cda022016-12-21 08:58:06 +0100704 vsn = max_frame_size = flags = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100705 while (p < end) {
706 char *str;
Frédéric Lécaille6ca71a92017-08-22 10:33:14 +0200707 uint64_t sz;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100708 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200709
710 /* Decode the item key */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100711 ret = spoe_decode_buffer(&p, end, &str, &sz);
712 if (ret == -1 || !sz) {
713 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
714 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200715 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100716
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200717 /* Check "version" K/V item */
Willy Tarreau249346d2020-06-16 17:58:14 +0200718 if (sz >= strlen(VERSION_KEY) && !memcmp(str, VERSION_KEY, strlen(VERSION_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100719 int i, type = *p++;
720
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200721 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100722 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
723 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
724 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200725 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100726 if (spoe_decode_buffer(&p, end, &str, &sz) == -1) {
727 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
728 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200729 }
730
Christopher Faulet8ef75252017-02-20 22:56:03 +0100731 vsn = spoe_str_to_vsn(str, sz);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200732 if (vsn == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100733 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200734 return -1;
735 }
736 for (i = 0; supported_versions[i].str != NULL; ++i) {
737 if (vsn >= supported_versions[i].min &&
738 vsn <= supported_versions[i].max)
739 break;
740 }
741 if (supported_versions[i].str == NULL) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100742 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200743 return -1;
744 }
745 }
746 /* Check "max-frame-size" K/V item */
Willy Tarreau249346d2020-06-16 17:58:14 +0200747 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 +0100748 int type = *p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200749
750 /* The value must be integer */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200751 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT32 &&
752 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT64 &&
753 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT32 &&
754 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT64) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100755 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
756 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200757 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200758 if (decode_varint(&p, end, &sz) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100759 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
760 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200761 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100762 if (sz < MIN_FRAME_SIZE ||
763 sz > SPOE_APPCTX(appctx)->max_frame_size) {
764 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_FRAME_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200765 return -1;
766 }
767 max_frame_size = sz;
768 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100769 /* Check "capabilities" K/V item */
Willy Tarreau249346d2020-06-16 17:58:14 +0200770 else if (sz >= strlen(CAPABILITIES_KEY) && !memcmp(str, CAPABILITIES_KEY, strlen(CAPABILITIES_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100771 int type = *p++;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100772
773 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100774 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
775 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
776 return 0;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100777 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100778 if (spoe_decode_buffer(&p, end, &str, &sz) == -1) {
779 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
780 return 0;
781 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100782
Christopher Faulet8ef75252017-02-20 22:56:03 +0100783 while (sz) {
Christopher Fauleta1cda022016-12-21 08:58:06 +0100784 char *delim;
785
786 /* Skip leading spaces */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100787 for (; isspace(*str) && sz; str++, sz--);
Christopher Fauleta1cda022016-12-21 08:58:06 +0100788
Christopher Faulet8ef75252017-02-20 22:56:03 +0100789 if (sz >= 10 && !strncmp(str, "pipelining", 10)) {
790 str += 10; sz -= 10;
791 if (!sz || isspace(*str) || *str == ',')
Christopher Fauleta1cda022016-12-21 08:58:06 +0100792 flags |= SPOE_APPCTX_FL_PIPELINING;
793 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100794 else if (sz >= 5 && !strncmp(str, "async", 5)) {
795 str += 5; sz -= 5;
796 if (!sz || isspace(*str) || *str == ',')
Christopher Fauleta1cda022016-12-21 08:58:06 +0100797 flags |= SPOE_APPCTX_FL_ASYNC;
798 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100799 else if (sz >= 13 && !strncmp(str, "fragmentation", 13)) {
800 str += 13; sz -= 13;
801 if (!sz || isspace(*str) || *str == ',')
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100802 flags |= SPOE_APPCTX_FL_FRAGMENTATION;
803 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100804
Christopher Faulet8ef75252017-02-20 22:56:03 +0100805 /* Get the next comma or break */
806 if (!sz || (delim = memchr(str, ',', sz)) == NULL)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100807 break;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100808 delim++;
809 sz -= (delim - str);
810 str = delim;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100811 }
812 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200813 else {
814 /* Silently ignore unknown item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100815 if (spoe_skip_data(&p, end) == -1) {
816 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
817 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200818 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200819 }
820 }
821
822 /* Final checks */
823 if (!vsn) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100824 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NO_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200825 return -1;
826 }
827 if (!max_frame_size) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100828 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NO_FRAME_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200829 return -1;
830 }
Christopher Faulet11389012019-02-07 16:13:26 +0100831 if (!agent)
832 flags &= ~(SPOE_APPCTX_FL_PIPELINING|SPOE_APPCTX_FL_ASYNC);
833 else {
834 if ((flags & SPOE_APPCTX_FL_PIPELINING) && !(agent->flags & SPOE_FL_PIPELINING))
835 flags &= ~SPOE_APPCTX_FL_PIPELINING;
836 if ((flags & SPOE_APPCTX_FL_ASYNC) && !(agent->flags & SPOE_FL_ASYNC))
837 flags &= ~SPOE_APPCTX_FL_ASYNC;
838 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200839
Christopher Faulet42bfa462017-01-04 14:14:19 +0100840 SPOE_APPCTX(appctx)->version = (unsigned int)vsn;
841 SPOE_APPCTX(appctx)->max_frame_size = (unsigned int)max_frame_size;
842 SPOE_APPCTX(appctx)->flags |= flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100843
844 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200845}
846
847/* Decode DISCONNECT frame sent by an agent. It returns the number of by read
848 * bytes on success, 0 if the frame can be ignored and -1 if an error
849 * occurred. */
850static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100851spoe_handle_agentdiscon_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200852{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100853 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100854 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100855
856 p = frame;
857 end = frame + size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200858
859 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100860 if (*p++ != SPOE_FRM_T_AGENT_DISCON) {
861 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200862 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100863 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200864
Christopher Faulet8ef75252017-02-20 22:56:03 +0100865 if (size < 7 /* TYPE + METADATA */) {
866 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
867 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200868 }
869
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100870 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100871 memcpy((char *)&flags, p, 4);
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200872 flags = ntohl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100873 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200874
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100875 /* Fragmentation is not supported for DISCONNECT frame */
876 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100877 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100878 return -1;
879 }
880
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200881 /* stream-id and frame-id must be cleared */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100882 if (*p != 0 || *(p+1) != 0) {
883 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
884 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200885 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100886 p += 2;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200887
888 /* There are 2 mandatory items: "status-code" and "message" */
889
890 /* Loop on K/V items */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100891 while (p < end) {
892 char *str;
Frédéric Lécaille6ca71a92017-08-22 10:33:14 +0200893 uint64_t sz;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100894 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200895
896 /* Decode the item key */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100897 ret = spoe_decode_buffer(&p, end, &str, &sz);
898 if (ret == -1 || !sz) {
899 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
900 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200901 }
902
903 /* Check "status-code" K/V item */
Willy Tarreau249346d2020-06-16 17:58:14 +0200904 if (sz >= strlen(STATUS_CODE_KEY) && !memcmp(str, STATUS_CODE_KEY, strlen(STATUS_CODE_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100905 int type = *p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200906
907 /* The value must be an integer */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200908 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT32 &&
909 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT64 &&
910 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT32 &&
911 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT64) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100912 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
913 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200914 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200915 if (decode_varint(&p, end, &sz) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100916 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
917 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200918 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100919 SPOE_APPCTX(appctx)->status_code = sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200920 }
921
922 /* Check "message" K/V item */
Willy Tarreau249346d2020-06-16 17:58:14 +0200923 else if (sz >= strlen(MSG_KEY) && !memcmp(str, MSG_KEY, strlen(MSG_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100924 int type = *p++;
925
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200926 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100927 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
928 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
929 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200930 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100931 ret = spoe_decode_buffer(&p, end, &str, &sz);
932 if (ret == -1 || sz > 255) {
933 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
934 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200935 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100936#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
937 SPOE_APPCTX(appctx)->reason = str;
938 SPOE_APPCTX(appctx)->rlen = sz;
939#endif
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200940 }
941 else {
942 /* Silently ignore unknown item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100943 if (spoe_skip_data(&p, end) == -1) {
944 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
945 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200946 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200947 }
948 }
949
Christopher Faulet8ef75252017-02-20 22:56:03 +0100950 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200951}
952
953
Christopher Fauleta1cda022016-12-21 08:58:06 +0100954/* Decode ACK frame sent by an agent. It returns the number of read bytes on
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200955 * success, 0 if the frame can be ignored and -1 if an error occurred. */
956static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100957spoe_handle_agentack_frame(struct appctx *appctx, struct spoe_context **ctx,
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100958 char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200959{
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100960 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100961 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100962 uint64_t stream_id, frame_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100963 int len;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100964 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100965
966 p = frame;
967 end = frame + size;
968 *ctx = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200969
970 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100971 if (*p++ != SPOE_FRM_T_AGENT_ACK) {
972 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200973 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100974 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200975
Christopher Faulet8ef75252017-02-20 22:56:03 +0100976 if (size < 7 /* TYPE + METADATA */) {
977 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
978 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200979 }
980
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100981 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100982 memcpy((char *)&flags, p, 4);
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200983 flags = ntohl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100984 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200985
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100986 /* Fragmentation is not supported for now */
987 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100988 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100989 return -1;
990 }
991
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200992 /* Get the stream-id and the frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200993 if (decode_varint(&p, end, &stream_id) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100994 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100995 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100996 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200997 if (decode_varint(&p, end, &frame_id) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100998 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200999 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001000 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001001
Christopher Faulet8ef75252017-02-20 22:56:03 +01001002 /* Try to find the corresponding SPOE context */
Christopher Faulet42bfa462017-01-04 14:14:19 +01001003 if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_ASYNC) {
Christopher Faulet24289f22017-09-25 14:48:02 +02001004 list_for_each_entry((*ctx), &agent->rt[tid].waiting_queue, list) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001005 if ((*ctx)->stream_id == (unsigned int)stream_id &&
1006 (*ctx)->frame_id == (unsigned int)frame_id)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001007 goto found;
1008 }
1009 }
1010 else {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001011 list_for_each_entry((*ctx), &SPOE_APPCTX(appctx)->waiting_queue, list) {
1012 if ((*ctx)->stream_id == (unsigned int)stream_id &&
Christopher Faulet8ef75252017-02-20 22:56:03 +01001013 (*ctx)->frame_id == (unsigned int)frame_id)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001014 goto found;
1015 }
1016 }
1017
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001018 if (SPOE_APPCTX(appctx)->frag_ctx.ctx &&
1019 SPOE_APPCTX(appctx)->frag_ctx.cursid == (unsigned int)stream_id &&
1020 SPOE_APPCTX(appctx)->frag_ctx.curfid == (unsigned int)frame_id) {
1021
1022 /* ABRT bit is set for an unfinished fragmented frame */
1023 if (flags & SPOE_FRM_FL_ABRT) {
1024 *ctx = SPOE_APPCTX(appctx)->frag_ctx.ctx;
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001025 (*ctx)->state = SPOE_CTX_ST_ERROR;
1026 (*ctx)->status_code = SPOE_CTX_ERR_FRAG_FRAME_ABRT;
1027 /* Ignore the payload */
1028 goto end;
1029 }
1030 /* TODO: Handle more flags for fragmented frames: RESUME, FINISH... */
1031 /* For now, we ignore the ack */
1032 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
1033 return 0;
1034 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001035
Christopher Fauleta1cda022016-12-21 08:58:06 +01001036 /* No Stream found, ignore the frame */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001037 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1038 " - Ignore ACK frame"
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001039 " - stream-id=%u - frame-id=%u\n",
1040 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1041 __FUNCTION__, appctx,
1042 (unsigned int)stream_id, (unsigned int)frame_id);
1043
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001044 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAMEID_NOTFOUND;
Christopher Fauletf4e52512020-11-10 14:31:39 +01001045 if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK) {
1046 /* Report an error if we are waiting the ack for another frame,
1047 * but not if there is no longer frame waiting for a ack
1048 * (timeout)
1049 */
1050 if (!LIST_ISEMPTY(&SPOE_APPCTX(appctx)->waiting_queue) ||
1051 SPOE_APPCTX(appctx)->frag_ctx.ctx)
1052 return -1;
1053 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1054 SPOE_APPCTX(appctx)->cur_fpa = 0;
1055 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001056 return 0;
1057
1058 found:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001059 if (!spoe_acquire_buffer(&SPOE_APPCTX(appctx)->buffer,
1060 &SPOE_APPCTX(appctx)->buffer_wait)) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001061 *ctx = NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001062 return 1; /* Retry later */
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001063 }
Christopher Faulet4596fb72017-01-11 14:05:19 +01001064
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001065 /* Copy encoded actions */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001066 len = (end - p);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001067 memcpy(b_head(&SPOE_APPCTX(appctx)->buffer), p, len);
1068 b_set_data(&SPOE_APPCTX(appctx)->buffer, len);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001069 p += len;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001070
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001071 /* Transfer the buffer ownership to the SPOE context */
1072 (*ctx)->buffer = SPOE_APPCTX(appctx)->buffer;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001073 SPOE_APPCTX(appctx)->buffer = BUF_NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001074
Christopher Faulet8ef75252017-02-20 22:56:03 +01001075 (*ctx)->state = SPOE_CTX_ST_DONE;
1076
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001077 end:
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001078 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01001079 " - ACK frame received"
1080 " - ctx=%p - stream-id=%u - frame-id=%u - flags=0x%08x\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001081 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001082 __FUNCTION__, appctx, *ctx, (*ctx)->stream_id,
1083 (*ctx)->frame_id, flags);
1084 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001085}
1086
Christopher Fauletba7bc162016-11-07 21:07:38 +01001087/* This function is used in cfgparse.c and declared in proto/checks.h. It
1088 * prepare the request to send to agents during a healthcheck. It returns 0 on
1089 * success and -1 if an error occurred. */
1090int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001091spoe_prepare_healthcheck_request(char **req, int *len)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001092{
Christopher Faulet8ef75252017-02-20 22:56:03 +01001093 struct appctx appctx;
1094 struct spoe_appctx spoe_appctx;
1095 char *frame, *end, buf[MAX_FRAME_SIZE+4];
1096 size_t sz;
1097 int ret;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001098
Christopher Faulet42bfa462017-01-04 14:14:19 +01001099 memset(&appctx, 0, sizeof(appctx));
1100 memset(&spoe_appctx, 0, sizeof(spoe_appctx));
Christopher Fauletba7bc162016-11-07 21:07:38 +01001101 memset(buf, 0, sizeof(buf));
Christopher Faulet42bfa462017-01-04 14:14:19 +01001102
1103 appctx.ctx.spoe.ptr = &spoe_appctx;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001104 SPOE_APPCTX(&appctx)->max_frame_size = MAX_FRAME_SIZE;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001105
Christopher Faulet8ef75252017-02-20 22:56:03 +01001106 frame = buf+4; /* Reserved the 4 first bytes for the frame size */
1107 end = frame + MAX_FRAME_SIZE;
1108
1109 ret = spoe_prepare_hahello_frame(&appctx, frame, MAX_FRAME_SIZE);
1110 if (ret <= 0)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001111 return -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001112 frame += ret;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001113
Christopher Faulet8ef75252017-02-20 22:56:03 +01001114 /* Add "healthcheck" K/V item */
1115 sz = SLEN(HEALTHCHECK_KEY);
1116 if (spoe_encode_buffer(HEALTHCHECK_KEY, sz, &frame, end) == -1)
1117 return -1;
1118 *frame++ = (SPOE_DATA_T_BOOL | SPOE_DATA_FL_TRUE);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001119
Christopher Faulet8ef75252017-02-20 22:56:03 +01001120 *len = frame - buf;
1121 sz = htonl(*len - 4);
1122 memcpy(buf, (char *)&sz, 4);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001123
Christopher Faulet8ef75252017-02-20 22:56:03 +01001124 if ((*req = malloc(*len)) == NULL)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001125 return -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001126 memcpy(*req, buf, *len);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001127 return 0;
1128}
1129
1130/* This function is used in checks.c and declared in proto/checks.h. It decode
1131 * the response received from an agent during a healthcheck. It returns 0 on
1132 * success and -1 if an error occurred. */
1133int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001134spoe_handle_healthcheck_response(char *frame, size_t size, char *err, int errlen)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001135{
Christopher Faulet42bfa462017-01-04 14:14:19 +01001136 struct appctx appctx;
1137 struct spoe_appctx spoe_appctx;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001138
Christopher Faulet42bfa462017-01-04 14:14:19 +01001139 memset(&appctx, 0, sizeof(appctx));
1140 memset(&spoe_appctx, 0, sizeof(spoe_appctx));
Christopher Fauletba7bc162016-11-07 21:07:38 +01001141
Christopher Faulet42bfa462017-01-04 14:14:19 +01001142 appctx.ctx.spoe.ptr = &spoe_appctx;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001143 SPOE_APPCTX(&appctx)->max_frame_size = MAX_FRAME_SIZE;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001144
Christopher Faulet8ef75252017-02-20 22:56:03 +01001145 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1146 spoe_handle_agentdiscon_frame(&appctx, frame, size);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001147 goto error;
1148 }
Christopher Faulet8ef75252017-02-20 22:56:03 +01001149 if (spoe_handle_agenthello_frame(&appctx, frame, size) <= 0)
1150 goto error;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001151
1152 return 0;
1153
1154 error:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001155 if (SPOE_APPCTX(&appctx)->status_code >= SPOE_FRM_ERRS)
1156 SPOE_APPCTX(&appctx)->status_code = SPOE_FRM_ERR_UNKNOWN;
1157 strncpy(err, spoe_frm_err_reasons[SPOE_APPCTX(&appctx)->status_code], errlen);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001158 return -1;
1159}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001160
Christopher Fauleta1cda022016-12-21 08:58:06 +01001161/* Send a SPOE frame to an agent. It returns -1 when an error occurred, 0 when
1162 * the frame can be ignored, 1 to retry later, and the frame legnth on
1163 * success. */
1164static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001165spoe_send_frame(struct appctx *appctx, char *buf, size_t framesz)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001166{
1167 struct stream_interface *si = appctx->owner;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001168 int ret;
1169 uint32_t netint;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001170
Christopher Faulet8ef75252017-02-20 22:56:03 +01001171 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1172 * length. */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001173 netint = htonl(framesz);
1174 memcpy(buf, (char *)&netint, 4);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001175 ret = ci_putblk(si_ic(si), buf, framesz+4);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001176 if (ret <= 0) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001177 if ((ret == -3 && b_is_null(&si_ic(si)->buf)) || ret == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001178 si_rx_room_blk(si);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001179 return 1; /* retry */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001180 }
1181 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001182 return -1; /* error */
1183 }
1184 return framesz;
1185}
1186
1187/* Receive a SPOE frame from an agent. It return -1 when an error occurred, 0
1188 * when the frame can be ignored, 1 to retry later and the frame length on
1189 * success. */
1190static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001191spoe_recv_frame(struct appctx *appctx, char *buf, size_t framesz)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001192{
1193 struct stream_interface *si = appctx->owner;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001194 int ret;
1195 uint32_t netint;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001196
Willy Tarreau06d80a92017-10-19 14:32:15 +02001197 ret = co_getblk(si_oc(si), (char *)&netint, 4, 0);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001198 if (ret > 0) {
1199 framesz = ntohl(netint);
Christopher Faulet42bfa462017-01-04 14:14:19 +01001200 if (framesz > SPOE_APPCTX(appctx)->max_frame_size) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001201 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001202 return -1;
1203 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02001204 ret = co_getblk(si_oc(si), buf, framesz, 4);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001205 }
1206 if (ret <= 0) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001207 if (ret == 0) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01001208 return 1; /* retry */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001209 }
1210 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001211 return -1; /* error */
1212 }
1213 return framesz;
1214}
1215
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001216/********************************************************************
1217 * Functions that manage the SPOE applet
1218 ********************************************************************/
Christopher Faulet4596fb72017-01-11 14:05:19 +01001219static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001220spoe_wakeup_appctx(struct appctx *appctx)
Christopher Faulet4596fb72017-01-11 14:05:19 +01001221{
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01001222 si_want_get(appctx->owner);
Willy Tarreau8bb2ffb2018-11-14 17:54:13 +01001223 si_rx_endp_more(appctx->owner);
Christopher Faulet4596fb72017-01-11 14:05:19 +01001224 appctx_wakeup(appctx);
1225 return 1;
1226}
1227
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001228/* Callback function that catches applet timeouts. If a timeout occurred, we set
1229 * <appctx->st1> flag and the SPOE applet is woken up. */
1230static struct task *
Olivier Houchard9f6af332018-05-25 14:04:04 +02001231spoe_process_appctx(struct task * task, void *context, unsigned short state)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001232{
Olivier Houchard9f6af332018-05-25 14:04:04 +02001233 struct appctx *appctx = context;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001234
1235 appctx->st1 = SPOE_APPCTX_ERR_NONE;
1236 if (tick_is_expired(task->expire, now_ms)) {
1237 task->expire = TICK_ETERNITY;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001238 appctx->st1 = SPOE_APPCTX_ERR_TOUT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001239 }
Christopher Faulet8ef75252017-02-20 22:56:03 +01001240 spoe_wakeup_appctx(appctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001241 return task;
1242}
1243
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001244/* Callback function that releases a SPOE applet. This happens when the
1245 * connection with the agent is closed. */
1246static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01001247spoe_release_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001248{
Christopher Faulet8ef75252017-02-20 22:56:03 +01001249 struct stream_interface *si = appctx->owner;
1250 struct spoe_appctx *spoe_appctx = SPOE_APPCTX(appctx);
1251 struct spoe_agent *agent;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001252 struct spoe_context *ctx, *back;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001253
1254 if (spoe_appctx == NULL)
1255 return;
1256
1257 appctx->ctx.spoe.ptr = NULL;
1258 agent = spoe_appctx->agent;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001259
1260 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p\n",
1261 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1262 __FUNCTION__, appctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001263
Christopher Faulet8ef75252017-02-20 22:56:03 +01001264 /* Remove applet from the list of running applets */
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001265 _HA_ATOMIC_SUB(&agent->counters.applets, 1);
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001266 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001267 if (!LIST_ISEMPTY(&spoe_appctx->list)) {
1268 LIST_DEL(&spoe_appctx->list);
1269 LIST_INIT(&spoe_appctx->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001270 }
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001271 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001272
Christopher Faulet8ef75252017-02-20 22:56:03 +01001273 /* Shutdown the server connection, if needed */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001274 if (appctx->st0 != SPOE_APPCTX_ST_END) {
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001275 if (appctx->st0 == SPOE_APPCTX_ST_IDLE) {
1276 eb32_delete(&spoe_appctx->node);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001277 _HA_ATOMIC_SUB(&agent->counters.idles, 1);
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001278 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001279
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001280 appctx->st0 = SPOE_APPCTX_ST_END;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001281 if (spoe_appctx->status_code == SPOE_FRM_ERR_NONE)
1282 spoe_appctx->status_code = SPOE_FRM_ERR_IO;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001283
1284 si_shutw(si);
1285 si_shutr(si);
1286 si_ic(si)->flags |= CF_READ_NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001287 }
1288
Christopher Faulet8ef75252017-02-20 22:56:03 +01001289 /* Destroy the task attached to this applet */
Willy Tarreauf6562792019-05-07 19:05:35 +02001290 task_destroy(spoe_appctx->task);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001291
Christopher Faulet8ef75252017-02-20 22:56:03 +01001292 /* Notify all waiting streams */
1293 list_for_each_entry_safe(ctx, back, &spoe_appctx->waiting_queue, list) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01001294 LIST_DEL(&ctx->list);
1295 LIST_INIT(&ctx->list);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001296 _HA_ATOMIC_SUB(&agent->counters.nb_waiting, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001297 spoe_update_stat_time(&ctx->stats.tv_wait, &ctx->stats.t_waiting);
Christopher Faulet746326a2020-11-10 18:45:34 +01001298 ctx->spoe_appctx = NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001299 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001300 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001301 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001302 }
1303
Christopher Faulet8ef75252017-02-20 22:56:03 +01001304 /* If the applet was processing a fragmented frame, notify the
1305 * corresponding stream. */
1306 if (spoe_appctx->frag_ctx.ctx) {
1307 ctx = spoe_appctx->frag_ctx.ctx;
Christopher Fauletfce747b2018-01-24 15:59:32 +01001308 ctx->spoe_appctx = NULL;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001309 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001310 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001311 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1312 }
1313
Christopher Faulet746326a2020-11-10 18:45:34 +01001314 if (!LIST_ISEMPTY(&agent->rt[tid].applets)) {
1315 list_for_each_entry_safe(ctx, back, &agent->rt[tid].waiting_queue, list) {
1316 if (ctx->spoe_appctx == spoe_appctx)
1317 ctx->spoe_appctx = NULL;
1318 }
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001319 goto end;
Christopher Faulet746326a2020-11-10 18:45:34 +01001320 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001321
Christopher Faulet8ef75252017-02-20 22:56:03 +01001322 /* If this was the last running applet, notify all waiting streams */
Christopher Faulet24289f22017-09-25 14:48:02 +02001323 list_for_each_entry_safe(ctx, back, &agent->rt[tid].sending_queue, list) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01001324 LIST_DEL(&ctx->list);
1325 LIST_INIT(&ctx->list);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001326 _HA_ATOMIC_SUB(&agent->counters.nb_sending, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001327 spoe_update_stat_time(&ctx->stats.tv_queue, &ctx->stats.t_queue);
Christopher Faulet746326a2020-11-10 18:45:34 +01001328 ctx->spoe_appctx = NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001329 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001330 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001331 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001332 }
Christopher Faulet24289f22017-09-25 14:48:02 +02001333 list_for_each_entry_safe(ctx, back, &agent->rt[tid].waiting_queue, list) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01001334 LIST_DEL(&ctx->list);
1335 LIST_INIT(&ctx->list);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001336 _HA_ATOMIC_SUB(&agent->counters.nb_waiting, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001337 spoe_update_stat_time(&ctx->stats.tv_wait, &ctx->stats.t_waiting);
Christopher Faulet746326a2020-11-10 18:45:34 +01001338 ctx->spoe_appctx = NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001339 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001340 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001341 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1342 }
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001343
1344 end:
Christopher Faulet55ae8a62019-05-23 22:47:48 +02001345 /* Release allocated memory */
1346 spoe_release_buffer(&spoe_appctx->buffer,
1347 &spoe_appctx->buffer_wait);
1348 pool_free(pool_head_spoe_appctx, spoe_appctx);
1349
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001350 /* Update runtinme agent info */
Christopher Faulet24289f22017-09-25 14:48:02 +02001351 agent->rt[tid].frame_size = agent->max_frame_size;
1352 list_for_each_entry(spoe_appctx, &agent->rt[tid].applets, list)
1353 HA_ATOMIC_UPDATE_MIN(&agent->rt[tid].frame_size, spoe_appctx->max_frame_size);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001354}
1355
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001356static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001357spoe_handle_connect_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001358{
Christopher Fauleta1cda022016-12-21 08:58:06 +01001359 struct stream_interface *si = appctx->owner;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001360 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001361 char *frame, *buf;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001362 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001363
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001364 if (si_state_in(si->state, SI_SB_CER|SI_SB_DIS|SI_SB_CLO)) {
1365 /* closed */
1366 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
1367 goto exit;
1368 }
1369
Willy Tarreau4f283fa2019-06-05 14:34:03 +02001370 if (!si_state_in(si->state, SI_SB_RDY|SI_SB_EST)) {
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001371 /* not connected yet */
Willy Tarreau8bb2ffb2018-11-14 17:54:13 +01001372 si_rx_endp_more(si);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001373 task_wakeup(si_strm(si)->task, TASK_WOKEN_MSG);
1374 goto stop;
1375 }
Christopher Fauleta73e59b2016-12-09 17:30:18 +01001376
Christopher Fauleta1cda022016-12-21 08:58:06 +01001377 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001378 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1379 " - Connection timed out\n",
1380 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1381 __FUNCTION__, appctx);
1382 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001383 goto exit;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001384 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001385
Christopher Faulet42bfa462017-01-04 14:14:19 +01001386 if (SPOE_APPCTX(appctx)->task->expire == TICK_ETERNITY)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001387 SPOE_APPCTX(appctx)->task->expire =
1388 tick_add_ifset(now_ms, agent->timeout.hello);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001389
Christopher Faulet8ef75252017-02-20 22:56:03 +01001390 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1391 * length. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001392 buf = trash.area; frame = buf+4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001393 ret = spoe_prepare_hahello_frame(appctx, frame,
1394 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001395 if (ret > 1)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001396 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001397
1398 switch (ret) {
1399 case -1: /* error */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001400 case 0: /* ignore => an error, cannot be ignored */
1401 goto exit;
1402
1403 case 1: /* retry later */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001404 goto stop;
1405
Christopher Faulet8ef75252017-02-20 22:56:03 +01001406 default:
1407 /* HELLO frame successfully sent, now wait for the
1408 * reply. */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001409 appctx->st0 = SPOE_APPCTX_ST_CONNECTING;
1410 goto next;
1411 }
1412
1413 next:
1414 return 0;
1415 stop:
1416 return 1;
1417 exit:
1418 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1419 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001420}
1421
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001422static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001423spoe_handle_connecting_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001424{
Christopher Fauleta1cda022016-12-21 08:58:06 +01001425 struct stream_interface *si = appctx->owner;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001426 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001427 char *frame;
1428 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001429
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001430
Christopher Fauletb067b062017-01-04 16:39:11 +01001431 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001432 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001433 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001434 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001435
Christopher Fauleta1cda022016-12-21 08:58:06 +01001436 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001437 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1438 " - Connection timed out\n",
1439 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1440 __FUNCTION__, appctx);
1441 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001442 goto exit;
1443 }
1444
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001445 frame = trash.area; trash.data = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001446 ret = spoe_recv_frame(appctx, frame,
1447 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001448 if (ret > 1) {
1449 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1450 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
1451 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001452 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001453 trash.data = ret + 4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001454 ret = spoe_handle_agenthello_frame(appctx, frame, ret);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001455 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001456
Christopher Fauleta1cda022016-12-21 08:58:06 +01001457 switch (ret) {
1458 case -1: /* error */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001459 case 0: /* ignore => an error, cannot be ignored */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001460 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1461 goto next;
1462
1463 case 1: /* retry later */
1464 goto stop;
1465
1466 default:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001467 /* HELLO handshake is finished, set the idle timeout and
1468 * add the applet in the list of running applets. */
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001469 _HA_ATOMIC_ADD(&agent->counters.idles, 1);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001470 appctx->st0 = SPOE_APPCTX_ST_IDLE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001471 SPOE_APPCTX(appctx)->node.key = 0;
1472 eb32_insert(&agent->rt[tid].idle_applets, &SPOE_APPCTX(appctx)->node);
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001473
1474 /* Update runtinme agent info */
Christopher Faulet24289f22017-09-25 14:48:02 +02001475 HA_ATOMIC_UPDATE_MIN(&agent->rt[tid].frame_size, SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001476 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001477 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001478
Christopher Fauleta1cda022016-12-21 08:58:06 +01001479 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001480 /* Do not forget to remove processed frame from the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001481 if (trash.data)
1482 co_skip(si_oc(si), trash.data);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001483
1484 SPOE_APPCTX(appctx)->task->expire =
1485 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001486 return 0;
1487 stop:
1488 return 1;
1489 exit:
1490 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1491 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001492}
1493
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001494
Christopher Fauleta1cda022016-12-21 08:58:06 +01001495static int
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001496spoe_handle_sending_frame_appctx(struct appctx *appctx, int *skip)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001497{
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001498 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
1499 struct spoe_context *ctx = NULL;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001500 char *frame, *buf;
1501 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001502
Christopher Faulet8ef75252017-02-20 22:56:03 +01001503 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1504 * length. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001505 buf = trash.area; frame = buf+4;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001506
1507 if (appctx->st0 == SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY) {
1508 ctx = SPOE_APPCTX(appctx)->frag_ctx.ctx;
1509 ret = spoe_prepare_hafrag_frame(appctx, ctx, frame,
1510 SPOE_APPCTX(appctx)->max_frame_size);
1511 }
Christopher Faulet24289f22017-09-25 14:48:02 +02001512 else if (LIST_ISEMPTY(&agent->rt[tid].sending_queue)) {
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001513 *skip = 1;
1514 ret = 1;
1515 goto end;
1516 }
1517 else {
Christopher Faulet24289f22017-09-25 14:48:02 +02001518 ctx = LIST_NEXT(&agent->rt[tid].sending_queue, typeof(ctx), list);
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001519 ret = spoe_prepare_hanotify_frame(appctx, ctx, frame,
1520 SPOE_APPCTX(appctx)->max_frame_size);
1521
1522 }
1523
Christopher Faulet8ef75252017-02-20 22:56:03 +01001524 if (ret > 1)
1525 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001526
Christopher Faulet8ef75252017-02-20 22:56:03 +01001527 switch (ret) {
1528 case -1: /* error */
1529 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1530 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001531
Christopher Faulet8ef75252017-02-20 22:56:03 +01001532 case 0: /* ignore */
1533 if (ctx == NULL)
1534 goto abort_frag_frame;
1535
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001536 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001537 LIST_DEL(&ctx->list);
1538 LIST_INIT(&ctx->list);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001539 _HA_ATOMIC_SUB(&agent->counters.nb_sending, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001540 spoe_update_stat_time(&ctx->stats.tv_queue, &ctx->stats.t_queue);
Christopher Fauletfce747b2018-01-24 15:59:32 +01001541 ctx->spoe_appctx = NULL;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001542 ctx->state = SPOE_CTX_ST_ERROR;
1543 ctx->status_code = (SPOE_APPCTX(appctx)->status_code + 0x100);
1544 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001545 *skip = 1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001546 break;
1547
1548 case 1: /* retry */
1549 *skip = 1;
1550 break;
1551
1552 default:
1553 if (ctx == NULL)
1554 goto abort_frag_frame;
1555
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001556 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001557 LIST_DEL(&ctx->list);
1558 LIST_INIT(&ctx->list);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001559 _HA_ATOMIC_SUB(&agent->counters.nb_sending, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001560 spoe_update_stat_time(&ctx->stats.tv_queue, &ctx->stats.t_queue);
Christopher Fauletfce747b2018-01-24 15:59:32 +01001561 ctx->spoe_appctx = SPOE_APPCTX(appctx);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001562 if (!(ctx->flags & SPOE_CTX_FL_FRAGMENTED) ||
1563 (ctx->frag_ctx.flags & SPOE_FRM_FL_FIN))
1564 goto no_frag_frame_sent;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001565 else
Christopher Faulet8ef75252017-02-20 22:56:03 +01001566 goto frag_frame_sent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001567 }
1568 goto end;
1569
1570 frag_frame_sent:
1571 appctx->st0 = SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001572 *skip = 1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001573 SPOE_APPCTX(appctx)->frag_ctx.ctx = ctx;
1574 SPOE_APPCTX(appctx)->frag_ctx.cursid = ctx->stream_id;
1575 SPOE_APPCTX(appctx)->frag_ctx.curfid = ctx->frame_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001576 ctx->state = SPOE_CTX_ST_ENCODING_MSGS;
1577 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1578 goto end;
1579
1580 no_frag_frame_sent:
1581 if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_ASYNC) {
1582 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
Christopher Faulet24289f22017-09-25 14:48:02 +02001583 LIST_ADDQ(&agent->rt[tid].waiting_queue, &ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001584 }
1585 else if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_PIPELINING) {
1586 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1587 LIST_ADDQ(&SPOE_APPCTX(appctx)->waiting_queue, &ctx->list);
1588 }
1589 else {
1590 appctx->st0 = SPOE_APPCTX_ST_WAITING_SYNC_ACK;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001591 *skip = 1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001592 LIST_ADDQ(&SPOE_APPCTX(appctx)->waiting_queue, &ctx->list);
1593 }
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001594 _HA_ATOMIC_ADD(&agent->counters.nb_waiting, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001595 ctx->stats.tv_wait = now;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001596 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1597 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1598 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001599 SPOE_APPCTX(appctx)->cur_fpa++;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001600
Christopher Faulet8ef75252017-02-20 22:56:03 +01001601 ctx->state = SPOE_CTX_ST_WAITING_ACK;
1602 goto end;
1603
1604 abort_frag_frame:
1605 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1606 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1607 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1608 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
1609 goto end;
1610
1611 end:
1612 return ret;
1613}
1614
1615static int
1616spoe_handle_receiving_frame_appctx(struct appctx *appctx, int *skip)
1617{
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02001618 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001619 struct spoe_context *ctx = NULL;
1620 char *frame;
1621 int ret;
1622
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001623 frame = trash.area; trash.data = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001624 ret = spoe_recv_frame(appctx, frame,
1625 SPOE_APPCTX(appctx)->max_frame_size);
1626 if (ret > 1) {
1627 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1628 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001629 ret = -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001630 goto end;
1631 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001632 trash.data = ret + 4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001633 ret = spoe_handle_agentack_frame(appctx, &ctx, frame, ret);
1634 }
1635 switch (ret) {
1636 case -1: /* error */
1637 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1638 break;
1639
1640 case 0: /* ignore */
1641 break;
1642
1643 case 1: /* retry */
1644 *skip = 1;
1645 break;
1646
1647 default:
1648 LIST_DEL(&ctx->list);
1649 LIST_INIT(&ctx->list);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001650 _HA_ATOMIC_SUB(&agent->counters.nb_waiting, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001651 spoe_update_stat_time(&ctx->stats.tv_wait, &ctx->stats.t_waiting);
1652 ctx->stats.tv_response = now;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001653 if (ctx->spoe_appctx) {
1654 ctx->spoe_appctx->cur_fpa--;
Christopher Fauletfce747b2018-01-24 15:59:32 +01001655 ctx->spoe_appctx = NULL;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001656 }
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001657 if (appctx->st0 == SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY &&
1658 ctx == SPOE_APPCTX(appctx)->frag_ctx.ctx) {
1659 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1660 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1661 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1662 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
1663 }
1664 else if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK)
1665 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001666 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1667 break;
1668 }
1669
1670 /* Do not forget to remove processed frame from the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001671 if (trash.data)
1672 co_skip(si_oc(appctx->owner), trash.data);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001673 end:
1674 return ret;
1675}
1676
1677static int
1678spoe_handle_processing_appctx(struct appctx *appctx)
1679{
1680 struct stream_interface *si = appctx->owner;
1681 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001682 int ret, skip_sending = 0, skip_receiving = 0, active_s = 0, active_r = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001683
1684 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) {
1685 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
1686 goto exit;
1687 }
1688
1689 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
1690 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
1691 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1692 appctx->st1 = SPOE_APPCTX_ERR_NONE;
1693 goto next;
1694 }
1695
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001696 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001697 " - process: fpa=%u/%u - appctx-state=%s - weight=%u - flags=0x%08x\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001698 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8f82b202018-01-24 16:23:03 +01001699 __FUNCTION__, appctx, SPOE_APPCTX(appctx)->cur_fpa,
1700 agent->max_fpa, spoe_appctx_state_str[appctx->st0],
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001701 SPOE_APPCTX(appctx)->node.key, SPOE_APPCTX(appctx)->flags);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001702
Christopher Faulet8f82b202018-01-24 16:23:03 +01001703 if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK)
1704 skip_sending = 1;
Christopher Faulet4596fb72017-01-11 14:05:19 +01001705
Christopher Faulet8f82b202018-01-24 16:23:03 +01001706 /* receiving_frame loop */
1707 while (!skip_receiving) {
1708 ret = spoe_handle_receiving_frame_appctx(appctx, &skip_receiving);
1709 switch (ret) {
1710 case -1: /* error */
1711 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001712
Christopher Faulet8f82b202018-01-24 16:23:03 +01001713 case 0: /* ignore */
1714 active_r = 1;
1715 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001716
Christopher Faulet8f82b202018-01-24 16:23:03 +01001717 case 1: /* retry */
1718 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001719
Christopher Faulet8f82b202018-01-24 16:23:03 +01001720 default:
1721 active_r = 1;
1722 break;
1723 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001724 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001725
Christopher Faulet8f82b202018-01-24 16:23:03 +01001726 /* send_frame loop */
1727 while (!skip_sending && SPOE_APPCTX(appctx)->cur_fpa < agent->max_fpa) {
1728 ret = spoe_handle_sending_frame_appctx(appctx, &skip_sending);
1729 switch (ret) {
1730 case -1: /* error */
1731 goto next;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001732
Christopher Faulet8f82b202018-01-24 16:23:03 +01001733 case 0: /* ignore */
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001734 if (SPOE_APPCTX(appctx)->node.key)
1735 SPOE_APPCTX(appctx)->node.key--;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001736 active_s++;
1737 break;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001738
Christopher Faulet8f82b202018-01-24 16:23:03 +01001739 case 1: /* retry */
1740 break;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001741
Christopher Faulet8f82b202018-01-24 16:23:03 +01001742 default:
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001743 if (SPOE_APPCTX(appctx)->node.key)
1744 SPOE_APPCTX(appctx)->node.key--;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001745 active_s++;
1746 break;
1747 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001748 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001749
Christopher Faulet8f82b202018-01-24 16:23:03 +01001750 if (active_s || active_r) {
Christopher Faulet8f82b202018-01-24 16:23:03 +01001751 update_freq_ctr(&agent->rt[tid].processing_per_sec, active_s);
1752 SPOE_APPCTX(appctx)->task->expire = tick_add_ifset(now_ms, agent->timeout.idle);
1753 }
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001754
Christopher Faulet8f82b202018-01-24 16:23:03 +01001755 if (appctx->st0 == SPOE_APPCTX_ST_PROCESSING && SPOE_APPCTX(appctx)->cur_fpa < agent->max_fpa) {
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001756 _HA_ATOMIC_ADD(&agent->counters.idles, 1);
Christopher Faulet8f82b202018-01-24 16:23:03 +01001757 appctx->st0 = SPOE_APPCTX_ST_IDLE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001758 eb32_insert(&agent->rt[tid].idle_applets, &SPOE_APPCTX(appctx)->node);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001759 }
1760 return 1;
1761
Christopher Faulet8f82b202018-01-24 16:23:03 +01001762 next:
1763 SPOE_APPCTX(appctx)->task->expire = tick_add_ifset(now_ms, agent->timeout.idle);
1764 return 0;
1765
Christopher Fauleta1cda022016-12-21 08:58:06 +01001766 exit:
1767 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1768 return 0;
1769}
1770
1771static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001772spoe_handle_disconnect_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001773{
1774 struct stream_interface *si = appctx->owner;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001775 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001776 char *frame, *buf;
1777 int ret;
Christopher Fauletb067b062017-01-04 16:39:11 +01001778
Christopher Fauleta1cda022016-12-21 08:58:06 +01001779 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO)
1780 goto exit;
1781
1782 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT)
1783 goto exit;
1784
Christopher Faulet8ef75252017-02-20 22:56:03 +01001785 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1786 * length. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001787 buf = trash.area; frame = buf+4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001788 ret = spoe_prepare_hadiscon_frame(appctx, frame,
1789 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001790 if (ret > 1)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001791 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001792
1793 switch (ret) {
1794 case -1: /* error */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001795 case 0: /* ignore => an error, cannot be ignored */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001796 goto exit;
1797
1798 case 1: /* retry */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001799 goto stop;
1800
1801 default:
1802 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1803 " - disconnected by HAProxy (%d): %s\n",
1804 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001805 __FUNCTION__, appctx,
1806 SPOE_APPCTX(appctx)->status_code,
1807 spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001808
1809 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
1810 goto next;
1811 }
1812
1813 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001814 SPOE_APPCTX(appctx)->task->expire =
1815 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001816 return 0;
1817 stop:
1818 return 1;
1819 exit:
1820 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1821 return 0;
1822}
1823
1824static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001825spoe_handle_disconnecting_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001826{
1827 struct stream_interface *si = appctx->owner;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001828 char *frame;
1829 int ret;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001830
Christopher Fauletb067b062017-01-04 16:39:11 +01001831 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001832 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001833 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001834 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001835
Christopher Fauletb067b062017-01-04 16:39:11 +01001836 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001837 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001838 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001839 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001840
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001841 frame = trash.area; trash.data = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001842 ret = spoe_recv_frame(appctx, frame,
1843 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001844 if (ret > 1) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001845 trash.data = ret + 4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001846 ret = spoe_handle_agentdiscon_frame(appctx, frame, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001847 }
1848
1849 switch (ret) {
1850 case -1: /* error */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001851 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1852 " - error on frame (%s)\n",
1853 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet42bfa462017-01-04 14:14:19 +01001854 ((struct spoe_agent *)SPOE_APPCTX(appctx)->agent)->id,
Christopher Fauleta1cda022016-12-21 08:58:06 +01001855 __FUNCTION__, appctx,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001856 spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001857 goto exit;
1858
1859 case 0: /* ignore */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001860 goto next;
1861
1862 case 1: /* retry */
1863 goto stop;
1864
1865 default:
Christopher Fauleta1cda022016-12-21 08:58:06 +01001866 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01001867 " - disconnected by peer (%d): %.*s\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01001868 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet42bfa462017-01-04 14:14:19 +01001869 ((struct spoe_agent *)SPOE_APPCTX(appctx)->agent)->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001870 __FUNCTION__, appctx, SPOE_APPCTX(appctx)->status_code,
1871 SPOE_APPCTX(appctx)->rlen, SPOE_APPCTX(appctx)->reason);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001872 goto exit;
1873 }
1874
1875 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001876 /* Do not forget to remove processed frame from the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001877 if (trash.data)
1878 co_skip(si_oc(appctx->owner), trash.data);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001879
Christopher Fauleta1cda022016-12-21 08:58:06 +01001880 return 0;
1881 stop:
1882 return 1;
1883 exit:
1884 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1885 return 0;
1886}
1887
1888/* I/O Handler processing messages exchanged with the agent */
1889static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01001890spoe_handle_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001891{
Christopher Faulet8ef75252017-02-20 22:56:03 +01001892 struct stream_interface *si = appctx->owner;
1893 struct spoe_agent *agent;
1894
1895 if (SPOE_APPCTX(appctx) == NULL)
1896 return;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001897
Christopher Faulet8ef75252017-02-20 22:56:03 +01001898 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE;
1899 agent = SPOE_APPCTX(appctx)->agent;
Christopher Fauletb067b062017-01-04 16:39:11 +01001900
Christopher Fauleta1cda022016-12-21 08:58:06 +01001901 switchstate:
1902 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1903 " - appctx-state=%s\n",
1904 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1905 __FUNCTION__, appctx, spoe_appctx_state_str[appctx->st0]);
1906
1907 switch (appctx->st0) {
1908 case SPOE_APPCTX_ST_CONNECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001909 if (spoe_handle_connect_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001910 goto out;
1911 goto switchstate;
1912
1913 case SPOE_APPCTX_ST_CONNECTING:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001914 if (spoe_handle_connecting_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001915 goto out;
1916 goto switchstate;
1917
1918 case SPOE_APPCTX_ST_IDLE:
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001919 _HA_ATOMIC_SUB(&agent->counters.idles, 1);
Christopher Faulet7d9f1ba2018-02-28 13:33:26 +01001920 eb32_delete(&SPOE_APPCTX(appctx)->node);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001921 if (stopping &&
Christopher Faulet24289f22017-09-25 14:48:02 +02001922 LIST_ISEMPTY(&agent->rt[tid].sending_queue) &&
Christopher Faulet42bfa462017-01-04 14:14:19 +01001923 LIST_ISEMPTY(&SPOE_APPCTX(appctx)->waiting_queue)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001924 SPOE_APPCTX(appctx)->task->expire =
1925 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001926 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001927 goto switchstate;
1928 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001929 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1930 /* fall through */
1931
1932 case SPOE_APPCTX_ST_PROCESSING:
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001933 case SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY:
1934 case SPOE_APPCTX_ST_WAITING_SYNC_ACK:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001935 if (spoe_handle_processing_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001936 goto out;
1937 goto switchstate;
1938
1939 case SPOE_APPCTX_ST_DISCONNECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001940 if (spoe_handle_disconnect_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001941 goto out;
1942 goto switchstate;
1943
1944 case SPOE_APPCTX_ST_DISCONNECTING:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001945 if (spoe_handle_disconnecting_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001946 goto out;
1947 goto switchstate;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001948
1949 case SPOE_APPCTX_ST_EXIT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001950 appctx->st0 = SPOE_APPCTX_ST_END;
1951 SPOE_APPCTX(appctx)->task->expire = TICK_ETERNITY;
1952
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001953 si_shutw(si);
1954 si_shutr(si);
1955 si_ic(si)->flags |= CF_READ_NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001956 /* fall through */
1957
1958 case SPOE_APPCTX_ST_END:
Christopher Fauleta73e59b2016-12-09 17:30:18 +01001959 return;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001960 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001961 out:
Christopher Faulet24289f22017-09-25 14:48:02 +02001962 if (stopping)
1963 spoe_wakeup_appctx(appctx);
1964
Christopher Faulet42bfa462017-01-04 14:14:19 +01001965 if (SPOE_APPCTX(appctx)->task->expire != TICK_ETERNITY)
1966 task_queue(SPOE_APPCTX(appctx)->task);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001967}
1968
1969struct applet spoe_applet = {
1970 .obj_type = OBJ_TYPE_APPLET,
1971 .name = "<SPOE>", /* used for logging */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001972 .fct = spoe_handle_appctx,
1973 .release = spoe_release_appctx,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001974};
1975
1976/* Create a SPOE applet. On success, the created applet is returned, else
1977 * NULL. */
1978static struct appctx *
Christopher Faulet8ef75252017-02-20 22:56:03 +01001979spoe_create_appctx(struct spoe_config *conf)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001980{
1981 struct appctx *appctx;
1982 struct session *sess;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001983 struct stream *strm;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001984
Emeric Brun1138fd02017-06-19 12:38:55 +02001985 if ((appctx = appctx_new(&spoe_applet, tid_bit)) == NULL)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001986 goto out_error;
1987
Willy Tarreaubafbe012017-11-24 17:34:44 +01001988 appctx->ctx.spoe.ptr = pool_alloc_dirty(pool_head_spoe_appctx);
Christopher Faulet42bfa462017-01-04 14:14:19 +01001989 if (SPOE_APPCTX(appctx) == NULL)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001990 goto out_free_appctx;
Willy Tarreaubafbe012017-11-24 17:34:44 +01001991 memset(appctx->ctx.spoe.ptr, 0, pool_head_spoe_appctx->size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001992
Christopher Faulet42bfa462017-01-04 14:14:19 +01001993 appctx->st0 = SPOE_APPCTX_ST_CONNECT;
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01001994 if ((SPOE_APPCTX(appctx)->task = task_new(tid_bit)) == NULL)
Christopher Faulet42bfa462017-01-04 14:14:19 +01001995 goto out_free_spoe_appctx;
1996
1997 SPOE_APPCTX(appctx)->owner = appctx;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001998 SPOE_APPCTX(appctx)->task->process = spoe_process_appctx;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001999 SPOE_APPCTX(appctx)->task->context = appctx;
2000 SPOE_APPCTX(appctx)->agent = conf->agent;
2001 SPOE_APPCTX(appctx)->version = 0;
2002 SPOE_APPCTX(appctx)->max_frame_size = conf->agent->max_frame_size;
2003 SPOE_APPCTX(appctx)->flags = 0;
Christopher Fauletb067b062017-01-04 16:39:11 +01002004 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002005 SPOE_APPCTX(appctx)->buffer = BUF_NULL;
Christopher Faulet8f82b202018-01-24 16:23:03 +01002006 SPOE_APPCTX(appctx)->cur_fpa = 0;
Christopher Faulet4596fb72017-01-11 14:05:19 +01002007
2008 LIST_INIT(&SPOE_APPCTX(appctx)->buffer_wait.list);
2009 SPOE_APPCTX(appctx)->buffer_wait.target = appctx;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002010 SPOE_APPCTX(appctx)->buffer_wait.wakeup_cb = (int (*)(void *))spoe_wakeup_appctx;
Christopher Faulet42bfa462017-01-04 14:14:19 +01002011
2012 LIST_INIT(&SPOE_APPCTX(appctx)->list);
2013 LIST_INIT(&SPOE_APPCTX(appctx)->waiting_queue);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002014
Willy Tarreau5820a362016-12-22 15:59:02 +01002015 sess = session_new(&conf->agent_fe, NULL, &appctx->obj_type);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002016 if (!sess)
2017 goto out_free_spoe;
2018
Willy Tarreau87787ac2017-08-28 16:22:54 +02002019 if ((strm = stream_new(sess, &appctx->obj_type)) == NULL)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002020 goto out_free_sess;
2021
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002022 stream_set_backend(strm, conf->agent->b.be);
2023
2024 /* applet is waiting for data */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002025 si_cant_get(&strm->si[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002026 appctx_wakeup(appctx);
2027
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002028 strm->do_log = NULL;
2029 strm->res.flags |= CF_READ_DONTWAIT;
2030
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002031 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &conf->agent->rt[tid].lock);
Christopher Faulet24289f22017-09-25 14:48:02 +02002032 LIST_ADDQ(&conf->agent->rt[tid].applets, &SPOE_APPCTX(appctx)->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002033 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &conf->agent->rt[tid].lock);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01002034 _HA_ATOMIC_ADD(&conf->agent->counters.applets, 1);
Emeric Brun5f77fef2017-05-29 15:26:51 +02002035
Emeric Brunc60def82017-09-27 14:59:38 +02002036 task_wakeup(SPOE_APPCTX(appctx)->task, TASK_WOKEN_INIT);
Willy Tarreau87787ac2017-08-28 16:22:54 +02002037 task_wakeup(strm->task, TASK_WOKEN_INIT);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002038 return appctx;
2039
2040 /* Error unrolling */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002041 out_free_sess:
2042 session_free(sess);
2043 out_free_spoe:
Olivier Houchard3f795f72019-04-17 22:51:06 +02002044 task_destroy(SPOE_APPCTX(appctx)->task);
Christopher Faulet42bfa462017-01-04 14:14:19 +01002045 out_free_spoe_appctx:
Willy Tarreaubafbe012017-11-24 17:34:44 +01002046 pool_free(pool_head_spoe_appctx, SPOE_APPCTX(appctx));
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002047 out_free_appctx:
2048 appctx_free(appctx);
2049 out_error:
2050 return NULL;
2051}
2052
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002053static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002054spoe_queue_context(struct spoe_context *ctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002055{
2056 struct spoe_config *conf = FLT_CONF(ctx->filter);
2057 struct spoe_agent *agent = conf->agent;
2058 struct appctx *appctx;
Christopher Faulet42bfa462017-01-04 14:14:19 +01002059 struct spoe_appctx *spoe_appctx;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002060
Christopher Fauleta1cda022016-12-21 08:58:06 +01002061 /* Check if we need to create a new SPOE applet or not. */
Christopher Fauletb077cdc2018-01-24 16:37:57 +01002062 if (!eb_is_empty(&agent->rt[tid].idle_applets) &&
Christopher Fauletd6cd2b32020-06-22 15:32:14 +02002063 (agent->rt[tid].processing == 1 || agent->rt[tid].processing < read_freq_ctr(&agent->rt[tid].processing_per_sec)))
Christopher Fauleta1cda022016-12-21 08:58:06 +01002064 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002065
2066 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Fauleta1cda022016-12-21 08:58:06 +01002067 " - try to create new SPOE appctx\n",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002068 (int)now.tv_sec, (int)now.tv_usec, agent->id, __FUNCTION__,
2069 ctx->strm);
2070
Christopher Fauleta1cda022016-12-21 08:58:06 +01002071 /* Do not try to create a new applet if there is no server up for the
2072 * agent's backend. */
2073 if (!agent->b.be->srv_act && !agent->b.be->srv_bck) {
2074 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2075 " - cannot create SPOE appctx: no server up\n",
2076 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2077 __FUNCTION__, ctx->strm);
2078 goto end;
2079 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002080
Christopher Fauleta1cda022016-12-21 08:58:06 +01002081 /* Do not try to create a new applet if we have reached the maximum of
2082 * connection per seconds */
Christopher Faulet48026722016-11-16 15:01:12 +01002083 if (agent->cps_max > 0) {
Christopher Faulet24289f22017-09-25 14:48:02 +02002084 if (!freq_ctr_remain(&agent->rt[tid].conn_per_sec, agent->cps_max, 0)) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002085 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2086 " - cannot create SPOE appctx: max CPS reached\n",
2087 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2088 __FUNCTION__, ctx->strm);
2089 goto end;
2090 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002091 }
2092
Christopher Faulet8ef75252017-02-20 22:56:03 +01002093 appctx = spoe_create_appctx(conf);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002094 if (appctx == NULL) {
2095 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2096 " - failed to create SPOE appctx\n",
2097 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2098 __FUNCTION__, ctx->strm);
Christopher Faulet3b8e3492018-03-26 17:20:58 +02002099 send_log(&conf->agent_fe, LOG_EMERG,
Christopher Faulet72bcc472017-01-04 16:39:41 +01002100 "SPOE: [%s] failed to create SPOE applet\n",
2101 agent->id);
2102
Christopher Fauleta1cda022016-12-21 08:58:06 +01002103 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002104 }
2105
Christopher Fauleta1cda022016-12-21 08:58:06 +01002106 /* Increase the per-process number of cumulated connections */
2107 if (agent->cps_max > 0)
Christopher Faulet24289f22017-09-25 14:48:02 +02002108 update_freq_ctr(&agent->rt[tid].conn_per_sec, 1);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002109
Christopher Fauleta1cda022016-12-21 08:58:06 +01002110 end:
2111 /* The only reason to return an error is when there is no applet */
Christopher Faulet24289f22017-09-25 14:48:02 +02002112 if (LIST_ISEMPTY(&agent->rt[tid].applets)) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002113 ctx->status_code = SPOE_CTX_ERR_RES;
2114 return -1;
2115 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002116
Christopher Faulet3e86cec2019-04-10 14:02:12 +02002117 /* Add the SPOE context in the sending queue if the stream has no applet
2118 * already assigned and wakeup all idle applets. Otherwise, don't queue
2119 * it. */
Olivier Houchard9e7ae282019-03-08 18:50:42 +01002120 _HA_ATOMIC_ADD(&agent->counters.nb_sending, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002121 spoe_update_stat_time(&ctx->stats.tv_request, &ctx->stats.t_request);
2122 ctx->stats.tv_queue = now;
Christopher Faulet3e86cec2019-04-10 14:02:12 +02002123 if (ctx->spoe_appctx)
2124 return 1;
2125 LIST_ADDQ(&agent->rt[tid].sending_queue, &ctx->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002126
2127 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002128 " - Add stream in sending queue"
Christopher Faulet68db0232018-04-06 11:34:12 +02002129 " - applets=%u - idles=%u - processing=%u\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01002130 (int)now.tv_sec, (int)now.tv_usec, agent->id, __FUNCTION__,
Christopher Faulet68db0232018-04-06 11:34:12 +02002131 ctx->strm, agent->counters.applets, agent->counters.idles,
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002132 agent->rt[tid].processing);
Christopher Fauletf7a30922016-11-10 15:04:51 +01002133
Christopher Fauletb077cdc2018-01-24 16:37:57 +01002134 /* Finally try to wakeup an IDLE applet. */
2135 if (!eb_is_empty(&agent->rt[tid].idle_applets)) {
2136 struct eb32_node *node;
2137
2138 node = eb32_first(&agent->rt[tid].idle_applets);
2139 spoe_appctx = eb32_entry(node, struct spoe_appctx, node);
2140 if (node && spoe_appctx) {
2141 eb32_delete(&spoe_appctx->node);
2142 spoe_appctx->node.key++;
2143 eb32_insert(&agent->rt[tid].idle_applets, &spoe_appctx->node);
2144 spoe_wakeup_appctx(spoe_appctx->owner);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002145 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002146 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01002147 return 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002148}
2149
2150/***************************************************************************
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002151 * Functions that encode SPOE messages
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002152 **************************************************************************/
Christopher Faulet10e37672017-09-21 16:38:22 +02002153/* Encode a SPOE message. Info in <ctx->frag_ctx>, if any, are used to handle
2154 * fragmented_content. If the next message can be processed, it returns 0. If
2155 * the message is too big, it returns -1.*/
2156static int
2157spoe_encode_message(struct stream *s, struct spoe_context *ctx,
2158 struct spoe_message *msg, int dir,
2159 char **buf, char *end)
2160{
2161 struct sample *smp;
2162 struct spoe_arg *arg;
2163 int ret;
2164
2165 if (msg->cond) {
2166 ret = acl_exec_cond(msg->cond, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2167 ret = acl_pass(ret);
2168 if (msg->cond->pol == ACL_COND_UNLESS)
2169 ret = !ret;
2170
2171 /* the rule does not match */
2172 if (!ret)
2173 goto next;
2174 }
2175
2176 /* Resume encoding of a SPOE argument */
2177 if (ctx->frag_ctx.curarg != NULL) {
2178 arg = ctx->frag_ctx.curarg;
2179 goto encode_argument;
2180 }
2181
2182 if (ctx->frag_ctx.curoff != UINT_MAX)
2183 goto encode_msg_payload;
2184
2185 /* Check if there is enough space for the message name and the
2186 * number of arguments. It implies <msg->id_len> is encoded on 2
2187 * bytes, at most (< 2288). */
2188 if (*buf + 2 + msg->id_len + 1 > end)
2189 goto too_big;
2190
2191 /* Encode the message name */
2192 if (spoe_encode_buffer(msg->id, msg->id_len, buf, end) == -1)
2193 goto too_big;
2194
2195 /* Set the number of arguments for this message */
2196 **buf = msg->nargs;
2197 (*buf)++;
2198
2199 ctx->frag_ctx.curoff = 0;
2200 encode_msg_payload:
2201
2202 /* Loop on arguments */
2203 list_for_each_entry(arg, &msg->args, list) {
2204 ctx->frag_ctx.curarg = arg;
2205 ctx->frag_ctx.curoff = UINT_MAX;
Kevin Zhuf7f54282019-04-26 14:00:01 +08002206 ctx->frag_ctx.curlen = 0;
Christopher Faulet10e37672017-09-21 16:38:22 +02002207
2208 encode_argument:
2209 if (ctx->frag_ctx.curoff != UINT_MAX)
2210 goto encode_arg_value;
2211
Joseph Herlantf7f60312018-11-15 13:46:49 -08002212 /* Encode the argument name as a string. It can by NULL */
Christopher Faulet10e37672017-09-21 16:38:22 +02002213 if (spoe_encode_buffer(arg->name, arg->name_len, buf, end) == -1)
2214 goto too_big;
2215
2216 ctx->frag_ctx.curoff = 0;
2217 encode_arg_value:
2218
Joseph Herlantf7f60312018-11-15 13:46:49 -08002219 /* Fetch the argument value */
Christopher Faulet10e37672017-09-21 16:38:22 +02002220 smp = sample_process(s->be, s->sess, s, dir|SMP_OPT_FINAL, arg->expr, NULL);
Christopher Faulet3b1d0042019-05-06 09:53:10 +02002221 if (smp) {
2222 smp->ctx.a[0] = &ctx->frag_ctx.curlen;
2223 smp->ctx.a[1] = &ctx->frag_ctx.curoff;
2224 }
Christopher Faulet85db3212019-04-26 14:30:15 +02002225 ret = spoe_encode_data(smp, buf, end);
Christopher Faulet10e37672017-09-21 16:38:22 +02002226 if (ret == -1 || ctx->frag_ctx.curoff)
2227 goto too_big;
2228 }
2229
2230 next:
2231 return 0;
2232
2233 too_big:
2234 return -1;
2235}
2236
Christopher Fauletc718b822017-09-21 16:50:56 +02002237/* Encode list of SPOE messages. Info in <ctx->frag_ctx>, if any, are used to
2238 * handle fragmented content. On success it returns 1. If an error occurred, -1
2239 * is returned. If nothing has been encoded, it returns 0 (this is only possible
2240 * for unfragmented payload). */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002241static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002242spoe_encode_messages(struct stream *s, struct spoe_context *ctx,
Christopher Fauletc718b822017-09-21 16:50:56 +02002243 struct list *messages, int dir, int type)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002244{
Christopher Fauleta1cda022016-12-21 08:58:06 +01002245 struct spoe_config *conf = FLT_CONF(ctx->filter);
2246 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002247 struct spoe_message *msg;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002248 char *p, *end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002249
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002250 p = b_head(&ctx->buffer);
Christopher Faulet24289f22017-09-25 14:48:02 +02002251 end = p + agent->rt[tid].frame_size - FRAME_HDR_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002252
Christopher Fauletc718b822017-09-21 16:50:56 +02002253 if (type == SPOE_MSGS_BY_EVENT) { /* Loop on messages by event */
2254 /* Resume encoding of a SPOE message */
2255 if (ctx->frag_ctx.curmsg != NULL) {
2256 msg = ctx->frag_ctx.curmsg;
2257 goto encode_evt_message;
2258 }
2259
2260 list_for_each_entry(msg, messages, by_evt) {
2261 ctx->frag_ctx.curmsg = msg;
2262 ctx->frag_ctx.curarg = NULL;
2263 ctx->frag_ctx.curoff = UINT_MAX;
2264
2265 encode_evt_message:
2266 if (spoe_encode_message(s, ctx, msg, dir, &p, end) == -1)
2267 goto too_big;
2268 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002269 }
Christopher Fauletc718b822017-09-21 16:50:56 +02002270 else if (type == SPOE_MSGS_BY_GROUP) { /* Loop on messages by group */
2271 /* Resume encoding of a SPOE message */
2272 if (ctx->frag_ctx.curmsg != NULL) {
2273 msg = ctx->frag_ctx.curmsg;
2274 goto encode_grp_message;
2275 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002276
Christopher Fauletc718b822017-09-21 16:50:56 +02002277 list_for_each_entry(msg, messages, by_grp) {
2278 ctx->frag_ctx.curmsg = msg;
2279 ctx->frag_ctx.curarg = NULL;
2280 ctx->frag_ctx.curoff = UINT_MAX;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002281
Christopher Fauletc718b822017-09-21 16:50:56 +02002282 encode_grp_message:
2283 if (spoe_encode_message(s, ctx, msg, dir, &p, end) == -1)
2284 goto too_big;
2285 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002286 }
Christopher Fauletc718b822017-09-21 16:50:56 +02002287 else
2288 goto skip;
2289
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002290
Christopher Faulet57583e42017-09-04 15:41:09 +02002291 /* nothing has been encoded for an unfragmented payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002292 if (!(ctx->flags & SPOE_CTX_FL_FRAGMENTED) && p == b_head(&ctx->buffer))
Christopher Faulet57583e42017-09-04 15:41:09 +02002293 goto skip;
2294
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002295 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002296 " - encode %s messages - spoe_appctx=%p"
2297 "- max_size=%u - encoded=%ld\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002298 (int)now.tv_sec, (int)now.tv_usec,
2299 agent->id, __FUNCTION__, s,
2300 ((ctx->flags & SPOE_CTX_FL_FRAGMENTED) ? "last fragment of" : "unfragmented"),
Christopher Fauletfce747b2018-01-24 15:59:32 +01002301 ctx->spoe_appctx, (agent->rt[tid].frame_size - FRAME_HDR_SIZE),
Christopher Faulet45073512018-07-20 10:16:29 +02002302 p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002303
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002304 b_set_data(&ctx->buffer, p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002305 ctx->frag_ctx.curmsg = NULL;
2306 ctx->frag_ctx.curarg = NULL;
2307 ctx->frag_ctx.curoff = 0;
2308 ctx->frag_ctx.flags = SPOE_FRM_FL_FIN;
Christopher Faulet57583e42017-09-04 15:41:09 +02002309
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002310 return 1;
2311
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002312 too_big:
Christopher Fauleta715ea82019-04-10 14:21:51 +02002313 /* Return an error if fragmentation is unsupported or if nothing has
2314 * been encoded because its too big and not splittable. */
2315 if (!(agent->flags & SPOE_FL_SND_FRAGMENTATION) || p == b_head(&ctx->buffer)) {
Christopher Fauletcecd8522017-02-24 22:11:21 +01002316 ctx->status_code = SPOE_CTX_ERR_TOO_BIG;
2317 return -1;
2318 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002319
2320 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002321 " - encode fragmented messages - spoe_appctx=%p"
2322 " - curmsg=%p - curarg=%p - curoff=%u"
2323 " - max_size=%u - encoded=%ld\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002324 (int)now.tv_sec, (int)now.tv_usec,
Christopher Fauletfce747b2018-01-24 15:59:32 +01002325 agent->id, __FUNCTION__, s, ctx->spoe_appctx,
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002326 ctx->frag_ctx.curmsg, ctx->frag_ctx.curarg, ctx->frag_ctx.curoff,
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002327 (agent->rt[tid].frame_size - FRAME_HDR_SIZE), p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002328
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002329 b_set_data(&ctx->buffer, p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002330 ctx->flags |= SPOE_CTX_FL_FRAGMENTED;
2331 ctx->frag_ctx.flags &= ~SPOE_FRM_FL_FIN;
2332 return 1;
Christopher Faulet57583e42017-09-04 15:41:09 +02002333
2334 skip:
2335 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2336 " - skip the frame because nothing has been encoded\n",
2337 (int)now.tv_sec, (int)now.tv_usec,
2338 agent->id, __FUNCTION__, s);
2339 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002340}
2341
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002342
2343/***************************************************************************
2344 * Functions that handle SPOE actions
2345 **************************************************************************/
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002346/* Helper function to set a variable */
2347static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002348spoe_set_var(struct spoe_context *ctx, char *scope, char *name, int len,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002349 struct sample *smp)
2350{
2351 struct spoe_config *conf = FLT_CONF(ctx->filter);
2352 struct spoe_agent *agent = conf->agent;
2353 char varname[64];
2354
2355 memset(varname, 0, sizeof(varname));
2356 len = snprintf(varname, sizeof(varname), "%s.%s.%.*s",
2357 scope, agent->var_pfx, len, name);
Etienne Carriereaec89892017-12-14 09:36:40 +00002358 if (agent->flags & SPOE_FL_FORCE_SET_VAR)
2359 vars_set_by_name(varname, len, smp);
2360 else
2361 vars_set_by_name_ifexist(varname, len, smp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002362}
2363
2364/* Helper function to unset a variable */
2365static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002366spoe_unset_var(struct spoe_context *ctx, char *scope, char *name, int len,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002367 struct sample *smp)
2368{
2369 struct spoe_config *conf = FLT_CONF(ctx->filter);
2370 struct spoe_agent *agent = conf->agent;
2371 char varname[64];
2372
2373 memset(varname, 0, sizeof(varname));
2374 len = snprintf(varname, sizeof(varname), "%s.%s.%.*s",
2375 scope, agent->var_pfx, len, name);
2376 vars_unset_by_name_ifexist(varname, len, smp);
2377}
2378
2379
Christopher Faulet8ef75252017-02-20 22:56:03 +01002380static inline int
2381spoe_decode_action_set_var(struct stream *s, struct spoe_context *ctx,
2382 char **buf, char *end, int dir)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002383{
Christopher Faulet8ef75252017-02-20 22:56:03 +01002384 char *str, *scope, *p = *buf;
2385 struct sample smp;
2386 uint64_t sz;
2387 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002388
Christopher Faulet8ef75252017-02-20 22:56:03 +01002389 if (p + 2 >= end)
2390 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002391
Christopher Faulet8ef75252017-02-20 22:56:03 +01002392 /* SET-VAR requires 3 arguments */
2393 if (*p++ != 3)
2394 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002395
Christopher Faulet8ef75252017-02-20 22:56:03 +01002396 switch (*p++) {
2397 case SPOE_SCOPE_PROC: scope = "proc"; break;
2398 case SPOE_SCOPE_SESS: scope = "sess"; break;
2399 case SPOE_SCOPE_TXN : scope = "txn"; break;
2400 case SPOE_SCOPE_REQ : scope = "req"; break;
2401 case SPOE_SCOPE_RES : scope = "res"; break;
2402 default: goto skip;
2403 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002404
Christopher Faulet8ef75252017-02-20 22:56:03 +01002405 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
2406 goto skip;
2407 memset(&smp, 0, sizeof(smp));
2408 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002409
Christopher Faulet8ef75252017-02-20 22:56:03 +01002410 if (spoe_decode_data(&p, end, &smp) == -1)
2411 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002412
Christopher Faulet8ef75252017-02-20 22:56:03 +01002413 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2414 " - set-var '%s.%s.%.*s'\n",
2415 (int)now.tv_sec, (int)now.tv_usec,
2416 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id,
2417 __FUNCTION__, s, scope,
2418 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->var_pfx,
2419 (int)sz, str);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002420
Christopher Fauletb135abc2020-10-15 16:08:30 +02002421 if (smp.data.type == SMP_T_ANY)
2422 spoe_unset_var(ctx, scope, str, sz, &smp);
2423 else
2424 spoe_set_var(ctx, scope, str, sz, &smp);
Christopher Fauletb5cff602016-11-24 14:53:22 +01002425
Christopher Faulet8ef75252017-02-20 22:56:03 +01002426 ret = (p - *buf);
2427 *buf = p;
2428 return ret;
2429 skip:
2430 return 0;
2431}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002432
Christopher Faulet8ef75252017-02-20 22:56:03 +01002433static inline int
2434spoe_decode_action_unset_var(struct stream *s, struct spoe_context *ctx,
2435 char **buf, char *end, int dir)
2436{
2437 char *str, *scope, *p = *buf;
2438 struct sample smp;
2439 uint64_t sz;
2440 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002441
Christopher Faulet8ef75252017-02-20 22:56:03 +01002442 if (p + 2 >= end)
2443 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002444
Christopher Faulet8ef75252017-02-20 22:56:03 +01002445 /* UNSET-VAR requires 2 arguments */
2446 if (*p++ != 2)
2447 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002448
Christopher Faulet8ef75252017-02-20 22:56:03 +01002449 switch (*p++) {
2450 case SPOE_SCOPE_PROC: scope = "proc"; break;
2451 case SPOE_SCOPE_SESS: scope = "sess"; break;
2452 case SPOE_SCOPE_TXN : scope = "txn"; break;
2453 case SPOE_SCOPE_REQ : scope = "req"; break;
2454 case SPOE_SCOPE_RES : scope = "res"; break;
2455 default: goto skip;
2456 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002457
Christopher Faulet8ef75252017-02-20 22:56:03 +01002458 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
2459 goto skip;
2460 memset(&smp, 0, sizeof(smp));
2461 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002462
Christopher Faulet8ef75252017-02-20 22:56:03 +01002463 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2464 " - unset-var '%s.%s.%.*s'\n",
2465 (int)now.tv_sec, (int)now.tv_usec,
2466 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id,
2467 __FUNCTION__, s, scope,
2468 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->var_pfx,
2469 (int)sz, str);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002470
Christopher Faulet8ef75252017-02-20 22:56:03 +01002471 spoe_unset_var(ctx, scope, str, sz, &smp);
2472
2473 ret = (p - *buf);
2474 *buf = p;
2475 return ret;
2476 skip:
2477 return 0;
2478}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002479
Christopher Faulet8ef75252017-02-20 22:56:03 +01002480/* Process SPOE actions for a specific event. It returns 1 on success. If an
2481 * error occurred, 0 is returned. */
2482static int
Christopher Faulet58d03682017-09-21 16:57:24 +02002483spoe_process_actions(struct stream *s, struct spoe_context *ctx, int dir)
Christopher Faulet8ef75252017-02-20 22:56:03 +01002484{
2485 char *p, *end;
2486 int ret;
2487
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002488 p = b_head(&ctx->buffer);
2489 end = p + b_data(&ctx->buffer);
Christopher Faulet8ef75252017-02-20 22:56:03 +01002490
2491 while (p < end) {
2492 enum spoe_action_type type;
2493
2494 type = *p++;
2495 switch (type) {
2496 case SPOE_ACT_T_SET_VAR:
2497 ret = spoe_decode_action_set_var(s, ctx, &p, end, dir);
2498 if (!ret)
2499 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002500 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002501
Christopher Faulet8ef75252017-02-20 22:56:03 +01002502 case SPOE_ACT_T_UNSET_VAR:
2503 ret = spoe_decode_action_unset_var(s, ctx, &p, end, dir);
2504 if (!ret)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002505 goto skip;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002506 break;
2507
2508 default:
2509 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002510 }
2511 }
2512
2513 return 1;
2514 skip:
2515 return 0;
2516}
2517
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002518/***************************************************************************
2519 * Functions that process SPOE events
2520 **************************************************************************/
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002521static void
2522spoe_update_stats(struct stream *s, struct spoe_agent *agent,
2523 struct spoe_context *ctx, int dir)
2524{
2525 if (!tv_iszero(&ctx->stats.tv_start)) {
2526 spoe_update_stat_time(&ctx->stats.tv_start, &ctx->stats.t_process);
2527 ctx->stats.t_total += ctx->stats.t_process;
2528 tv_zero(&ctx->stats.tv_request);
2529 tv_zero(&ctx->stats.tv_queue);
2530 tv_zero(&ctx->stats.tv_wait);
2531 tv_zero(&ctx->stats.tv_response);
2532 }
2533
2534 if (agent->var_t_process) {
2535 struct sample smp;
2536
2537 memset(&smp, 0, sizeof(smp));
2538 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2539 smp.data.u.sint = ctx->stats.t_process;
2540 smp.data.type = SMP_T_SINT;
2541
2542 spoe_set_var(ctx, "txn", agent->var_t_process,
2543 strlen(agent->var_t_process), &smp);
2544 }
2545
2546 if (agent->var_t_total) {
2547 struct sample smp;
2548
2549 memset(&smp, 0, sizeof(smp));
2550 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2551 smp.data.u.sint = ctx->stats.t_total;
2552 smp.data.type = SMP_T_SINT;
2553
2554 spoe_set_var(ctx, "txn", agent->var_t_total,
2555 strlen(agent->var_t_total), &smp);
2556 }
2557}
2558
2559static void
2560spoe_handle_processing_error(struct stream *s, struct spoe_agent *agent,
2561 struct spoe_context *ctx, int dir)
2562{
2563 if (agent->eps_max > 0)
2564 update_freq_ctr(&agent->rt[tid].err_per_sec, 1);
2565
2566 if (agent->var_on_error) {
2567 struct sample smp;
2568
2569 memset(&smp, 0, sizeof(smp));
2570 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2571 smp.data.u.sint = ctx->status_code;
2572 smp.data.type = SMP_T_BOOL;
2573
2574 spoe_set_var(ctx, "txn", agent->var_on_error,
2575 strlen(agent->var_on_error), &smp);
2576 }
2577
2578 ctx->state = ((agent->flags & SPOE_FL_CONT_ON_ERR)
2579 ? SPOE_CTX_ST_READY
2580 : SPOE_CTX_ST_NONE);
2581}
2582
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002583static inline int
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002584spoe_start_processing(struct spoe_agent *agent, struct spoe_context *ctx, int dir)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002585{
Christopher Fauleta1cda022016-12-21 08:58:06 +01002586 /* If a process is already started for this SPOE context, retry
2587 * later. */
2588 if (ctx->flags & SPOE_CTX_FL_PROCESS)
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002589 return 0;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002590
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002591 agent->rt[tid].processing++;
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002592 ctx->stats.tv_start = now;
2593 ctx->stats.tv_request = now;
2594 ctx->stats.t_request = -1;
2595 ctx->stats.t_queue = -1;
2596 ctx->stats.t_waiting = -1;
2597 ctx->stats.t_response = -1;
2598 ctx->stats.t_process = -1;
2599
2600 ctx->status_code = 0;
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002601
Christopher Fauleta1cda022016-12-21 08:58:06 +01002602 /* Set the right flag to prevent request and response processing
2603 * in same time. */
2604 ctx->flags |= ((dir == SMP_OPT_DIR_REQ)
2605 ? SPOE_CTX_FL_REQ_PROCESS
2606 : SPOE_CTX_FL_RSP_PROCESS);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002607 return 1;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002608}
2609
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002610static inline void
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002611spoe_stop_processing(struct spoe_agent *agent, struct spoe_context *ctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002612{
Christopher Fauletfce747b2018-01-24 15:59:32 +01002613 struct spoe_appctx *sa = ctx->spoe_appctx;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002614
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002615 if (!(ctx->flags & SPOE_CTX_FL_PROCESS))
2616 return;
Olivier Houchard9e7ae282019-03-08 18:50:42 +01002617 _HA_ATOMIC_ADD(&agent->counters.nb_processed, 1);
Christopher Faulet879dca92018-03-23 11:53:24 +01002618 if (sa) {
2619 if (sa->frag_ctx.ctx == ctx) {
2620 sa->frag_ctx.ctx = NULL;
2621 spoe_wakeup_appctx(sa->owner);
2622 }
2623 else
2624 sa->cur_fpa--;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002625 }
2626
Christopher Fauleta1cda022016-12-21 08:58:06 +01002627 /* Reset the flag to allow next processing */
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002628 agent->rt[tid].processing--;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002629 ctx->flags &= ~(SPOE_CTX_FL_PROCESS|SPOE_CTX_FL_FRAGMENTED);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002630
2631 /* Reset processing timer */
2632 ctx->process_exp = TICK_ETERNITY;
2633
Christopher Faulet8ef75252017-02-20 22:56:03 +01002634 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002635
Christopher Fauletfce747b2018-01-24 15:59:32 +01002636 ctx->spoe_appctx = NULL;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002637 ctx->frag_ctx.curmsg = NULL;
2638 ctx->frag_ctx.curarg = NULL;
2639 ctx->frag_ctx.curoff = 0;
2640 ctx->frag_ctx.flags = 0;
2641
Christopher Fauleta1cda022016-12-21 08:58:06 +01002642 if (!LIST_ISEMPTY(&ctx->list)) {
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002643 if (ctx->state == SPOE_CTX_ST_SENDING_MSGS)
Olivier Houchard9e7ae282019-03-08 18:50:42 +01002644 _HA_ATOMIC_SUB(&agent->counters.nb_sending, 1);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002645 else
Olivier Houchard9e7ae282019-03-08 18:50:42 +01002646 _HA_ATOMIC_SUB(&agent->counters.nb_waiting, 1);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002647
Christopher Fauleta1cda022016-12-21 08:58:06 +01002648 LIST_DEL(&ctx->list);
2649 LIST_INIT(&ctx->list);
2650 }
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002651}
2652
Christopher Faulet58d03682017-09-21 16:57:24 +02002653/* Process a list of SPOE messages. First, this functions will process messages
2654 * and send them to an agent in a NOTIFY frame. Then, it will wait a ACK frame
2655 * to process corresponding actions. During all the processing, it returns 0
2656 * and it returns 1 when the processing is finished. If an error occurred, -1
2657 * is returned. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002658static int
Christopher Faulet58d03682017-09-21 16:57:24 +02002659spoe_process_messages(struct stream *s, struct spoe_context *ctx,
2660 struct list *messages, int dir, int type)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002661{
Christopher Fauletf7a30922016-11-10 15:04:51 +01002662 struct spoe_config *conf = FLT_CONF(ctx->filter);
2663 struct spoe_agent *agent = conf->agent;
Christopher Faulet58d03682017-09-21 16:57:24 +02002664 int ret = 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002665
2666 if (ctx->state == SPOE_CTX_ST_ERROR)
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002667 goto end;
Christopher Fauletf7a30922016-11-10 15:04:51 +01002668
2669 if (tick_is_expired(ctx->process_exp, now_ms) && ctx->state != SPOE_CTX_ST_DONE) {
2670 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet58d03682017-09-21 16:57:24 +02002671 " - failed to process messages: timeout\n",
Christopher Fauletf7a30922016-11-10 15:04:51 +01002672 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet58d03682017-09-21 16:57:24 +02002673 agent->id, __FUNCTION__, s);
Christopher Fauletb067b062017-01-04 16:39:11 +01002674 ctx->status_code = SPOE_CTX_ERR_TOUT;
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002675 goto end;
Christopher Fauletf7a30922016-11-10 15:04:51 +01002676 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002677
2678 if (ctx->state == SPOE_CTX_ST_READY) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002679 if (agent->eps_max > 0) {
Christopher Faulet24289f22017-09-25 14:48:02 +02002680 if (!freq_ctr_remain(&agent->rt[tid].err_per_sec, agent->eps_max, 0)) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002681 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet58d03682017-09-21 16:57:24 +02002682 " - skip processing of messages: max EPS reached\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01002683 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet58d03682017-09-21 16:57:24 +02002684 agent->id, __FUNCTION__, s);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002685 goto skip;
2686 }
2687 }
2688
Christopher Fauletf7a30922016-11-10 15:04:51 +01002689 if (!tick_isset(ctx->process_exp)) {
2690 ctx->process_exp = tick_add_ifset(now_ms, agent->timeout.processing);
2691 s->task->expire = tick_first((tick_is_expired(s->task->expire, now_ms) ? 0 : s->task->expire),
2692 ctx->process_exp);
2693 }
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002694 ret = spoe_start_processing(agent, ctx, dir);
Christopher Fauletb067b062017-01-04 16:39:11 +01002695 if (!ret)
2696 goto out;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002697
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002698 ctx->state = SPOE_CTX_ST_ENCODING_MSGS;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002699 /* fall through */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002700 }
2701
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002702 if (ctx->state == SPOE_CTX_ST_ENCODING_MSGS) {
Christopher Faulet63263e52019-04-10 14:47:18 +02002703 if (tv_iszero(&ctx->stats.tv_request))
2704 ctx->stats.tv_request = now;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002705 if (!spoe_acquire_buffer(&ctx->buffer, &ctx->buffer_wait))
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002706 goto out;
Christopher Faulet58d03682017-09-21 16:57:24 +02002707 ret = spoe_encode_messages(s, ctx, messages, dir, type);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002708 if (ret < 0)
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002709 goto end;
Christopher Faulet57583e42017-09-04 15:41:09 +02002710 if (!ret)
2711 goto skip;
Christopher Faulet333694d2018-01-12 10:45:47 +01002712 if (spoe_queue_context(ctx) < 0)
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002713 goto end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002714 ctx->state = SPOE_CTX_ST_SENDING_MSGS;
2715 }
2716
2717 if (ctx->state == SPOE_CTX_ST_SENDING_MSGS) {
Christopher Fauletfce747b2018-01-24 15:59:32 +01002718 if (ctx->spoe_appctx)
2719 spoe_wakeup_appctx(ctx->spoe_appctx->owner);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002720 ret = 0;
2721 goto out;
2722 }
2723
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002724 if (ctx->state == SPOE_CTX_ST_WAITING_ACK) {
2725 ret = 0;
2726 goto out;
2727 }
2728
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002729 if (ctx->state == SPOE_CTX_ST_DONE) {
Christopher Faulet58d03682017-09-21 16:57:24 +02002730 spoe_process_actions(s, ctx, dir);
Christopher Faulet8ef75252017-02-20 22:56:03 +01002731 ret = 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002732 ctx->frame_id++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002733 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002734 spoe_update_stat_time(&ctx->stats.tv_response, &ctx->stats.t_response);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002735 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002736 }
2737
2738 out:
2739 return ret;
2740
Christopher Fauleta1cda022016-12-21 08:58:06 +01002741 skip:
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002742 tv_zero(&ctx->stats.tv_start);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002743 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002744 spoe_stop_processing(agent, ctx);
2745 return 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002746
Christopher Fauleta1cda022016-12-21 08:58:06 +01002747 end:
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002748 spoe_update_stats(s, agent, ctx, dir);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002749 spoe_stop_processing(agent, ctx);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002750 if (ctx->status_code) {
Olivier Houchard9e7ae282019-03-08 18:50:42 +01002751 _HA_ATOMIC_ADD(&agent->counters.nb_errors, 1);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002752 spoe_handle_processing_error(s, agent, ctx, dir);
2753 ret = 1;
2754 }
Christopher Faulet58d03682017-09-21 16:57:24 +02002755 return ret;
2756}
2757
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002758/* Process a SPOE group, ie the list of messages attached to the group <grp>.
2759 * See spoe_process_message for details. */
2760static int
2761spoe_process_group(struct stream *s, struct spoe_context *ctx,
2762 struct spoe_group *group, int dir)
2763{
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002764 struct spoe_config *conf = FLT_CONF(ctx->filter);
2765 struct spoe_agent *agent = conf->agent;
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002766 int ret;
2767
2768 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2769 " - ctx-state=%s - Process messages for group=%s\n",
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002770 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002771 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
2772 group->id);
2773
2774 if (LIST_ISEMPTY(&group->messages))
2775 return 1;
2776
2777 ret = spoe_process_messages(s, ctx, &group->messages, dir, SPOE_MSGS_BY_GROUP);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002778 if (ret && ctx->stats.t_process != -1) {
2779 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002780 " - <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 +01002781 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002782 __FUNCTION__, s, group->id, s->uniq_id, ctx->status_code,
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002783 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002784 ctx->stats.t_response, ctx->stats.t_process,
2785 agent->counters.idles, agent->counters.applets,
2786 agent->counters.nb_sending, agent->counters.nb_waiting,
2787 agent->counters.nb_errors, agent->counters.nb_processed,
2788 agent->rt[tid].processing, read_freq_ctr(&agent->rt[tid].processing_per_sec));
2789 if (ctx->status_code || !(conf->agent_fe.options2 & PR_O2_NOLOGNORM))
2790 send_log(&conf->agent_fe, (!ctx->status_code ? LOG_NOTICE : LOG_WARNING),
2791 "SPOE: [%s] <GROUP:%s> sid=%u st=%u %ld/%ld/%ld/%ld/%ld %u/%u %u/%u %llu/%llu\n",
2792 agent->id, group->id, s->uniq_id, ctx->status_code,
2793 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
2794 ctx->stats.t_response, ctx->stats.t_process,
2795 agent->counters.idles, agent->counters.applets,
2796 agent->counters.nb_sending, agent->counters.nb_waiting,
2797 agent->counters.nb_errors, agent->counters.nb_processed);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002798 }
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002799 return ret;
2800}
2801
Christopher Faulet58d03682017-09-21 16:57:24 +02002802/* Process a SPOE event, ie the list of messages attached to the event <ev>.
2803 * See spoe_process_message for details. */
2804static int
2805spoe_process_event(struct stream *s, struct spoe_context *ctx,
2806 enum spoe_event ev)
2807{
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002808 struct spoe_config *conf = FLT_CONF(ctx->filter);
2809 struct spoe_agent *agent = conf->agent;
Christopher Faulet58d03682017-09-21 16:57:24 +02002810 int dir, ret;
2811
2812 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002813 " - ctx-state=%s - Process messages for event=%s\n",
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002814 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet58d03682017-09-21 16:57:24 +02002815 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
2816 spoe_event_str[ev]);
2817
2818 dir = ((ev < SPOE_EV_ON_SERVER_SESS) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES);
2819
2820 if (LIST_ISEMPTY(&(ctx->events[ev])))
2821 return 1;
2822
2823 ret = spoe_process_messages(s, ctx, &(ctx->events[ev]), dir, SPOE_MSGS_BY_EVENT);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002824 if (ret && ctx->stats.t_process != -1) {
2825 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002826 " - <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 +01002827 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2828 __FUNCTION__, s, spoe_event_str[ev], s->uniq_id, ctx->status_code,
2829 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002830 ctx->stats.t_response, ctx->stats.t_process,
2831 agent->counters.idles, agent->counters.applets,
2832 agent->counters.nb_sending, agent->counters.nb_waiting,
2833 agent->counters.nb_errors, agent->counters.nb_processed,
2834 agent->rt[tid].processing, read_freq_ctr(&agent->rt[tid].processing_per_sec));
2835 if (ctx->status_code || !(conf->agent_fe.options2 & PR_O2_NOLOGNORM))
2836 send_log(&conf->agent_fe, (!ctx->status_code ? LOG_NOTICE : LOG_WARNING),
2837 "SPOE: [%s] <EVENT:%s> sid=%u st=%u %ld/%ld/%ld/%ld/%ld %u/%u %u/%u %llu/%llu\n",
2838 agent->id, spoe_event_str[ev], s->uniq_id, ctx->status_code,
2839 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
2840 ctx->stats.t_response, ctx->stats.t_process,
2841 agent->counters.idles, agent->counters.applets,
2842 agent->counters.nb_sending, agent->counters.nb_waiting,
2843 agent->counters.nb_errors, agent->counters.nb_processed);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002844 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01002845 return ret;
2846}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002847
2848/***************************************************************************
2849 * Functions that create/destroy SPOE contexts
2850 **************************************************************************/
Christopher Fauleta1cda022016-12-21 08:58:06 +01002851static int
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002852spoe_acquire_buffer(struct buffer *buf, struct buffer_wait *buffer_wait)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002853{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002854 if (buf->size)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002855 return 1;
2856
Christopher Faulet4596fb72017-01-11 14:05:19 +01002857 if (!LIST_ISEMPTY(&buffer_wait->list)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002858 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Faulet4596fb72017-01-11 14:05:19 +01002859 LIST_DEL(&buffer_wait->list);
2860 LIST_INIT(&buffer_wait->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002861 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002862 }
2863
Christopher Faulet4596fb72017-01-11 14:05:19 +01002864 if (b_alloc_margin(buf, global.tune.reserved_bufs))
Christopher Fauleta1cda022016-12-21 08:58:06 +01002865 return 1;
2866
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002867 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Faulet4596fb72017-01-11 14:05:19 +01002868 LIST_ADDQ(&buffer_wq, &buffer_wait->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002869 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002870 return 0;
2871}
2872
2873static void
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002874spoe_release_buffer(struct buffer *buf, struct buffer_wait *buffer_wait)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002875{
Christopher Faulet4596fb72017-01-11 14:05:19 +01002876 if (!LIST_ISEMPTY(&buffer_wait->list)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002877 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Faulet4596fb72017-01-11 14:05:19 +01002878 LIST_DEL(&buffer_wait->list);
2879 LIST_INIT(&buffer_wait->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002880 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002881 }
2882
2883 /* Release the buffer if needed */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002884 if (buf->size) {
Christopher Faulet4596fb72017-01-11 14:05:19 +01002885 b_free(buf);
Olivier Houchard673867c2018-05-25 16:58:52 +02002886 offer_buffers(buffer_wait->target, tasks_run_queue);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002887 }
2888}
2889
Christopher Faulet4596fb72017-01-11 14:05:19 +01002890static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002891spoe_wakeup_context(struct spoe_context *ctx)
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002892{
2893 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
2894 return 1;
2895}
2896
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002897static struct spoe_context *
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002898spoe_create_context(struct stream *s, struct filter *filter)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002899{
2900 struct spoe_config *conf = FLT_CONF(filter);
2901 struct spoe_context *ctx;
2902
Willy Tarreaubafbe012017-11-24 17:34:44 +01002903 ctx = pool_alloc_dirty(pool_head_spoe_ctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002904 if (ctx == NULL) {
2905 return NULL;
2906 }
2907 memset(ctx, 0, sizeof(*ctx));
Christopher Fauletb067b062017-01-04 16:39:11 +01002908 ctx->filter = filter;
2909 ctx->state = SPOE_CTX_ST_NONE;
2910 ctx->status_code = SPOE_CTX_ERR_NONE;
2911 ctx->flags = 0;
Christopher Faulet11610f32017-09-21 10:23:10 +02002912 ctx->events = conf->agent->events;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02002913 ctx->groups = &conf->agent->groups;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002914 ctx->buffer = BUF_NULL;
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002915 LIST_INIT(&ctx->buffer_wait.list);
2916 ctx->buffer_wait.target = ctx;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002917 ctx->buffer_wait.wakeup_cb = (int (*)(void *))spoe_wakeup_context;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002918 LIST_INIT(&ctx->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002919
Christopher Fauletf7a30922016-11-10 15:04:51 +01002920 ctx->stream_id = 0;
2921 ctx->frame_id = 1;
2922 ctx->process_exp = TICK_ETERNITY;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002923
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002924 tv_zero(&ctx->stats.tv_start);
2925 tv_zero(&ctx->stats.tv_request);
2926 tv_zero(&ctx->stats.tv_queue);
2927 tv_zero(&ctx->stats.tv_wait);
2928 tv_zero(&ctx->stats.tv_response);
2929 ctx->stats.t_request = -1;
2930 ctx->stats.t_queue = -1;
2931 ctx->stats.t_waiting = -1;
2932 ctx->stats.t_response = -1;
2933 ctx->stats.t_process = -1;
2934 ctx->stats.t_total = 0;
2935
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002936 ctx->strm = s;
2937 ctx->state = SPOE_CTX_ST_READY;
2938 filter->ctx = ctx;
2939
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002940 return ctx;
2941}
2942
2943static void
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002944spoe_destroy_context(struct filter *filter)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002945{
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002946 struct spoe_config *conf = FLT_CONF(filter);
2947 struct spoe_context *ctx = filter->ctx;
2948
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002949 if (!ctx)
2950 return;
2951
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002952 spoe_stop_processing(conf->agent, ctx);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002953 pool_free(pool_head_spoe_ctx, ctx);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002954 filter->ctx = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002955}
2956
2957static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002958spoe_reset_context(struct spoe_context *ctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002959{
2960 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01002961 ctx->flags &= ~(SPOE_CTX_FL_PROCESS|SPOE_CTX_FL_FRAGMENTED);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002962
2963 tv_zero(&ctx->stats.tv_start);
2964 tv_zero(&ctx->stats.tv_request);
2965 tv_zero(&ctx->stats.tv_queue);
2966 tv_zero(&ctx->stats.tv_wait);
2967 tv_zero(&ctx->stats.tv_response);
2968 ctx->stats.t_request = -1;
2969 ctx->stats.t_queue = -1;
2970 ctx->stats.t_waiting = -1;
2971 ctx->stats.t_response = -1;
2972 ctx->stats.t_process = -1;
2973 ctx->stats.t_total = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002974}
2975
2976
2977/***************************************************************************
2978 * Hooks that manage the filter lifecycle (init/check/deinit)
2979 **************************************************************************/
2980/* Signal handler: Do a soft stop, wakeup SPOE applet */
2981static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002982spoe_sig_stop(struct sig_handler *sh)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002983{
2984 struct proxy *p;
2985
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002986 p = proxies_list;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002987 while (p) {
2988 struct flt_conf *fconf;
2989
2990 list_for_each_entry(fconf, &p->filter_configs, list) {
Christopher Faulet3b386a32017-02-23 10:17:15 +01002991 struct spoe_config *conf;
2992 struct spoe_agent *agent;
Christopher Faulet42bfa462017-01-04 14:14:19 +01002993 struct spoe_appctx *spoe_appctx;
Christopher Faulet24289f22017-09-25 14:48:02 +02002994 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002995
Christopher Faulet3b386a32017-02-23 10:17:15 +01002996 if (fconf->id != spoe_filter_id)
2997 continue;
2998
2999 conf = fconf->conf;
3000 agent = conf->agent;
3001
Christopher Faulet24289f22017-09-25 14:48:02 +02003002 for (i = 0; i < global.nbthread; ++i) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003003 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &agent->rt[i].lock);
Christopher Faulet24289f22017-09-25 14:48:02 +02003004 list_for_each_entry(spoe_appctx, &agent->rt[i].applets, list)
3005 spoe_wakeup_appctx(spoe_appctx->owner);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003006 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &agent->rt[i].lock);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003007 }
3008 }
3009 p = p->next;
3010 }
3011}
3012
3013
3014/* Initialize the SPOE filter. Returns -1 on error, else 0. */
3015static int
3016spoe_init(struct proxy *px, struct flt_conf *fconf)
3017{
3018 struct spoe_config *conf = fconf->conf;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003019
Christopher Faulet7250b8f2018-03-26 17:19:01 +02003020 /* conf->agent_fe was already initialized during the config
3021 * parsing. Finish initialization. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003022 conf->agent_fe.last_change = now.tv_sec;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003023 conf->agent_fe.cap = PR_CAP_FE;
3024 conf->agent_fe.mode = PR_MODE_TCP;
3025 conf->agent_fe.maxconn = 0;
3026 conf->agent_fe.options2 |= PR_O2_INDEPSTR;
3027 conf->agent_fe.conn_retries = CONN_RETRIES;
3028 conf->agent_fe.accept = frontend_accept;
3029 conf->agent_fe.srv = NULL;
3030 conf->agent_fe.timeout.client = TICK_ETERNITY;
3031 conf->agent_fe.default_target = &spoe_applet.obj_type;
3032 conf->agent_fe.fe_req_ana = AN_REQ_SWITCHING_RULES;
3033
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003034 if (!sighandler_registered) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01003035 signal_register_fct(0, spoe_sig_stop, 0);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003036 sighandler_registered = 1;
3037 }
3038
Christopher Faulet00292352019-01-09 15:05:10 +01003039 fconf->flags |= FLT_CFG_FL_HTX;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003040 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003041}
3042
3043/* Free ressources allocated by the SPOE filter. */
3044static void
3045spoe_deinit(struct proxy *px, struct flt_conf *fconf)
3046{
3047 struct spoe_config *conf = fconf->conf;
3048
3049 if (conf) {
3050 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003051
Christopher Faulet8ef75252017-02-20 22:56:03 +01003052 spoe_release_agent(agent);
Christopher Faulet7ee86672017-09-19 11:08:28 +02003053 free(conf->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003054 free(conf);
3055 }
3056 fconf->conf = NULL;
3057}
3058
3059/* Check configuration of a SPOE filter for a specified proxy.
3060 * Return 1 on error, else 0. */
3061static int
3062spoe_check(struct proxy *px, struct flt_conf *fconf)
3063{
Christopher Faulet7ee86672017-09-19 11:08:28 +02003064 struct flt_conf *f;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003065 struct spoe_config *conf = fconf->conf;
3066 struct proxy *target;
Willy Tarreaub0769b22019-02-07 13:40:33 +01003067 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003068
Christopher Faulet7ee86672017-09-19 11:08:28 +02003069 /* Check all SPOE filters for proxy <px> to be sure all SPOE agent names
3070 * are uniq */
3071 list_for_each_entry(f, &px->filter_configs, list) {
3072 struct spoe_config *c = f->conf;
3073
3074 /* This is not an SPOE filter */
3075 if (f->id != spoe_filter_id)
3076 continue;
3077 /* This is the current SPOE filter */
3078 if (f == fconf)
3079 continue;
3080
3081 /* Check engine Id. It should be uniq */
3082 if (!strcmp(conf->id, c->id)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003083 ha_alert("Proxy %s : duplicated name for SPOE engine '%s'.\n",
3084 px->id, conf->id);
Christopher Faulet7ee86672017-09-19 11:08:28 +02003085 return 1;
3086 }
3087 }
3088
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003089 target = proxy_be_by_name(conf->agent->b.name);
3090 if (target == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003091 ha_alert("Proxy %s : unknown backend '%s' used by SPOE agent '%s'"
3092 " declared at %s:%d.\n",
3093 px->id, conf->agent->b.name, conf->agent->id,
3094 conf->agent->conf.file, conf->agent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003095 return 1;
3096 }
3097 if (target->mode != PR_MODE_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003098 ha_alert("Proxy %s : backend '%s' used by SPOE agent '%s' declared"
3099 " at %s:%d does not support HTTP mode.\n",
3100 px->id, target->id, conf->agent->id,
3101 conf->agent->conf.file, conf->agent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003102 return 1;
3103 }
3104
Willy Tarreau2bdcfde2019-02-05 13:37:19 +01003105 if (px->bind_proc & ~target->bind_proc) {
3106 ha_alert("Proxy %s : backend '%s' used by SPOE agent '%s' declared"
3107 " at %s:%d does not cover all of its processes.\n",
3108 px->id, target->id, conf->agent->id,
3109 conf->agent->conf.file, conf->agent->conf.line);
3110 return 1;
3111 }
3112
Christopher Fauletfe261552019-03-18 13:57:42 +01003113 if ((conf->agent->rt = calloc(global.nbthread, sizeof(*conf->agent->rt))) == NULL) {
Willy Tarreaub0769b22019-02-07 13:40:33 +01003114 ha_alert("Proxy %s : out of memory initializing SPOE agent '%s' declared at %s:%d.\n",
3115 px->id, conf->agent->id, conf->agent->conf.file, conf->agent->conf.line);
3116 return 1;
3117 }
3118 for (i = 0; i < global.nbthread; ++i) {
Christopher Faulet46c76822019-09-17 11:55:52 +02003119 conf->agent->rt[i].engine_id = NULL;
Christopher Fauletfe261552019-03-18 13:57:42 +01003120 conf->agent->rt[i].frame_size = conf->agent->max_frame_size;
3121 conf->agent->rt[i].processing = 0;
3122 LIST_INIT(&conf->agent->rt[i].applets);
3123 LIST_INIT(&conf->agent->rt[i].sending_queue);
3124 LIST_INIT(&conf->agent->rt[i].waiting_queue);
3125 HA_SPIN_INIT(&conf->agent->rt[i].lock);
Willy Tarreaub0769b22019-02-07 13:40:33 +01003126 }
3127
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003128 free(conf->agent->b.name);
3129 conf->agent->b.name = NULL;
3130 conf->agent->b.be = target;
3131 return 0;
3132}
3133
Kevin Zhu652c8e22019-09-17 15:05:45 +02003134/* Initializes the SPOE filter for a proxy for a specific thread.
3135 * Returns a negative value if an error occurs. */
3136static int
3137spoe_init_per_thread(struct proxy *p, struct flt_conf *fconf)
3138{
3139 struct spoe_config *conf = fconf->conf;
3140 struct spoe_agent *agent = conf->agent;
3141
Christopher Faulet46c76822019-09-17 11:55:52 +02003142 agent->rt[tid].engine_id = generate_pseudo_uuid();
3143 if (agent->rt[tid].engine_id == NULL)
3144 return -1;
Kevin Zhu652c8e22019-09-17 15:05:45 +02003145 return 0;
3146}
3147
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003148/**************************************************************************
3149 * Hooks attached to a stream
3150 *************************************************************************/
3151/* Called when a filter instance is created and attach to a stream. It creates
3152 * the context that will be used to process this stream. */
3153static int
3154spoe_start(struct stream *s, struct filter *filter)
3155{
Christopher Faulet72bcc472017-01-04 16:39:41 +01003156 struct spoe_config *conf = FLT_CONF(filter);
3157 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003158 struct spoe_context *ctx;
3159
3160 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p\n",
Christopher Faulet72bcc472017-01-04 16:39:41 +01003161 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003162 __FUNCTION__, s);
3163
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01003164 if ((ctx = spoe_create_context(s, filter)) == NULL) {
Christopher Faulet72bcc472017-01-04 16:39:41 +01003165 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
3166 " - failed to create SPOE context\n",
3167 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletccbc3fd2017-09-15 11:51:18 +02003168 __FUNCTION__, s);
Christopher Faulet3b8e3492018-03-26 17:20:58 +02003169 send_log(&conf->agent_fe, LOG_EMERG,
Christopher Faulet72bcc472017-01-04 16:39:41 +01003170 "SPOE: [%s] failed to create SPOE context\n",
3171 agent->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003172 return 0;
3173 }
3174
Christopher Faulet11610f32017-09-21 10:23:10 +02003175 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_REQ_FE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003176 filter->pre_analyzers |= AN_REQ_INSPECT_FE;
3177
Christopher Faulet11610f32017-09-21 10:23:10 +02003178 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_REQ_BE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003179 filter->pre_analyzers |= AN_REQ_INSPECT_BE;
3180
Christopher Faulet11610f32017-09-21 10:23:10 +02003181 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_RSP]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003182 filter->pre_analyzers |= AN_RES_INSPECT;
3183
Christopher Faulet11610f32017-09-21 10:23:10 +02003184 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_REQ_FE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003185 filter->pre_analyzers |= AN_REQ_HTTP_PROCESS_FE;
3186
Christopher Faulet11610f32017-09-21 10:23:10 +02003187 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_REQ_BE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003188 filter->pre_analyzers |= AN_REQ_HTTP_PROCESS_BE;
3189
Christopher Faulet11610f32017-09-21 10:23:10 +02003190 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_RSP]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003191 filter->pre_analyzers |= AN_RES_HTTP_PROCESS_FE;
3192
3193 return 1;
3194}
3195
3196/* Called when a filter instance is detached from a stream. It release the
3197 * attached SPOE context. */
3198static void
3199spoe_stop(struct stream *s, struct filter *filter)
3200{
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003201 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p\n",
3202 (int)now.tv_sec, (int)now.tv_usec,
3203 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3204 __FUNCTION__, s);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01003205 spoe_destroy_context(filter);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003206}
3207
Christopher Fauletf7a30922016-11-10 15:04:51 +01003208
3209/*
3210 * Called when the stream is woken up because of expired timer.
3211 */
3212static void
3213spoe_check_timeouts(struct stream *s, struct filter *filter)
3214{
3215 struct spoe_context *ctx = filter->ctx;
3216
Christopher Fauletac580602018-03-20 16:09:20 +01003217 if (tick_is_expired(ctx->process_exp, now_ms))
Christopher Fauleta73e59b2016-12-09 17:30:18 +01003218 s->pending_events |= TASK_WOKEN_MSG;
Christopher Fauletf7a30922016-11-10 15:04:51 +01003219}
3220
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003221/* Called when we are ready to filter data on a channel */
3222static int
3223spoe_start_analyze(struct stream *s, struct filter *filter, struct channel *chn)
3224{
3225 struct spoe_context *ctx = filter->ctx;
3226 int ret = 1;
3227
3228 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3229 " - ctx-flags=0x%08x\n",
3230 (int)now.tv_sec, (int)now.tv_usec,
3231 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3232 __FUNCTION__, s, spoe_ctx_state_str[ctx->state], ctx->flags);
3233
Christopher Fauletb067b062017-01-04 16:39:11 +01003234 if (ctx->state == SPOE_CTX_ST_NONE)
3235 goto out;
3236
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003237 if (!(chn->flags & CF_ISRESP)) {
3238 if (filter->pre_analyzers & AN_REQ_INSPECT_FE)
3239 chn->analysers |= AN_REQ_INSPECT_FE;
3240 if (filter->pre_analyzers & AN_REQ_INSPECT_BE)
3241 chn->analysers |= AN_REQ_INSPECT_BE;
3242
3243 if (ctx->flags & SPOE_CTX_FL_CLI_CONNECTED)
3244 goto out;
3245
3246 ctx->stream_id = s->uniq_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +01003247 ret = spoe_process_event(s, ctx, SPOE_EV_ON_CLIENT_SESS);
Christopher Fauletb067b062017-01-04 16:39:11 +01003248 if (!ret)
3249 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003250 ctx->flags |= SPOE_CTX_FL_CLI_CONNECTED;
3251 }
3252 else {
Miroslav Zagoracd995d5f2020-06-19 22:17:17 +02003253 if (filter->pre_analyzers & AN_RES_INSPECT)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003254 chn->analysers |= AN_RES_INSPECT;
3255
3256 if (ctx->flags & SPOE_CTX_FL_SRV_CONNECTED)
3257 goto out;
3258
Christopher Faulet8ef75252017-02-20 22:56:03 +01003259 ret = spoe_process_event(s, ctx, SPOE_EV_ON_SERVER_SESS);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003260 if (!ret) {
3261 channel_dont_read(chn);
3262 channel_dont_close(chn);
Christopher Fauletb067b062017-01-04 16:39:11 +01003263 goto out;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003264 }
Christopher Fauletb067b062017-01-04 16:39:11 +01003265 ctx->flags |= SPOE_CTX_FL_SRV_CONNECTED;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003266 }
3267
3268 out:
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003269 return ret;
3270}
3271
3272/* Called before a processing happens on a given channel */
3273static int
3274spoe_chn_pre_analyze(struct stream *s, struct filter *filter,
3275 struct channel *chn, unsigned an_bit)
3276{
3277 struct spoe_context *ctx = filter->ctx;
3278 int ret = 1;
3279
3280 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3281 " - ctx-flags=0x%08x - ana=0x%08x\n",
3282 (int)now.tv_sec, (int)now.tv_usec,
3283 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3284 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
3285 ctx->flags, an_bit);
3286
Christopher Fauletb067b062017-01-04 16:39:11 +01003287 if (ctx->state == SPOE_CTX_ST_NONE)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003288 goto out;
3289
3290 switch (an_bit) {
3291 case AN_REQ_INSPECT_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003292 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_REQ_FE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003293 break;
3294 case AN_REQ_INSPECT_BE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003295 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_REQ_BE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003296 break;
3297 case AN_RES_INSPECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003298 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_RSP);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003299 break;
3300 case AN_REQ_HTTP_PROCESS_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003301 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_REQ_FE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003302 break;
3303 case AN_REQ_HTTP_PROCESS_BE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003304 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_REQ_BE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003305 break;
3306 case AN_RES_HTTP_PROCESS_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003307 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_RSP);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003308 break;
3309 }
3310
3311 out:
Christopher Faulet9cdca972018-02-01 08:45:45 +01003312 if (!ret && (chn->flags & CF_ISRESP)) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003313 channel_dont_read(chn);
3314 channel_dont_close(chn);
3315 }
3316 return ret;
3317}
3318
3319/* Called when the filtering on the channel ends. */
3320static int
3321spoe_end_analyze(struct stream *s, struct filter *filter, struct channel *chn)
3322{
3323 struct spoe_context *ctx = filter->ctx;
3324
3325 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3326 " - ctx-flags=0x%08x\n",
3327 (int)now.tv_sec, (int)now.tv_usec,
3328 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3329 __FUNCTION__, s, spoe_ctx_state_str[ctx->state], ctx->flags);
3330
3331 if (!(ctx->flags & SPOE_CTX_FL_PROCESS)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01003332 spoe_reset_context(ctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003333 }
3334
3335 return 1;
3336}
3337
3338/********************************************************************
3339 * Functions that manage the filter initialization
3340 ********************************************************************/
3341struct flt_ops spoe_ops = {
3342 /* Manage SPOE filter, called for each filter declaration */
3343 .init = spoe_init,
3344 .deinit = spoe_deinit,
3345 .check = spoe_check,
Kevin Zhu652c8e22019-09-17 15:05:45 +02003346 .init_per_thread = spoe_init_per_thread,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003347
3348 /* Handle start/stop of SPOE */
Christopher Fauletf7a30922016-11-10 15:04:51 +01003349 .attach = spoe_start,
3350 .detach = spoe_stop,
3351 .check_timeouts = spoe_check_timeouts,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003352
3353 /* Handle channels activity */
3354 .channel_start_analyze = spoe_start_analyze,
3355 .channel_pre_analyze = spoe_chn_pre_analyze,
3356 .channel_end_analyze = spoe_end_analyze,
3357};
3358
3359
3360static int
3361cfg_parse_spoe_agent(const char *file, int linenum, char **args, int kwm)
3362{
3363 const char *err;
3364 int i, err_code = 0;
3365
3366 if ((cfg_scope == NULL && curengine != NULL) ||
3367 (cfg_scope != NULL && curengine == NULL) ||
Christopher Faulete1405e52017-09-19 10:35:35 +02003368 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope)))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003369 goto out;
3370
3371 if (!strcmp(args[0], "spoe-agent")) { /* new spoe-agent section */
3372 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003373 ha_alert("parsing [%s:%d] : missing name for spoe-agent section.\n",
3374 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003375 err_code |= ERR_ALERT | ERR_ABORT;
3376 goto out;
3377 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003378 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3379 err_code |= ERR_ABORT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003380 goto out;
3381 }
3382
3383 err = invalid_char(args[1]);
3384 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003385 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3386 file, linenum, *err, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003387 err_code |= ERR_ALERT | ERR_ABORT;
3388 goto out;
3389 }
3390
3391 if (curagent != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003392 ha_alert("parsing [%s:%d] : another spoe-agent section previously defined.\n",
3393 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003394 err_code |= ERR_ALERT | ERR_ABORT;
3395 goto out;
3396 }
3397 if ((curagent = calloc(1, sizeof(*curagent))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003398 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003399 err_code |= ERR_ALERT | ERR_ABORT;
3400 goto out;
3401 }
3402
3403 curagent->id = strdup(args[1]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003404
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003405 curagent->conf.file = strdup(file);
3406 curagent->conf.line = linenum;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003407
3408 curagent->timeout.hello = TICK_ETERNITY;
3409 curagent->timeout.idle = TICK_ETERNITY;
Christopher Fauletf7a30922016-11-10 15:04:51 +01003410 curagent->timeout.processing = TICK_ETERNITY;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003411
Christopher Fauleta1cda022016-12-21 08:58:06 +01003412 curagent->var_pfx = NULL;
3413 curagent->var_on_error = NULL;
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003414 curagent->var_t_process = NULL;
3415 curagent->var_t_total = NULL;
Christopher Faulet46c76822019-09-17 11:55:52 +02003416 curagent->flags = (SPOE_FL_ASYNC | SPOE_FL_PIPELINING | SPOE_FL_SND_FRAGMENTATION);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003417 curagent->cps_max = 0;
3418 curagent->eps_max = 0;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01003419 curagent->max_frame_size = MAX_FRAME_SIZE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01003420 curagent->max_fpa = 20;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003421
3422 for (i = 0; i < SPOE_EV_EVENTS; ++i)
Christopher Faulet11610f32017-09-21 10:23:10 +02003423 LIST_INIT(&curagent->events[i]);
3424 LIST_INIT(&curagent->groups);
3425 LIST_INIT(&curagent->messages);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003426 }
3427 else if (!strcmp(args[0], "use-backend")) {
3428 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003429 ha_alert("parsing [%s:%d] : '%s' expects a backend name.\n",
3430 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003431 err_code |= ERR_ALERT | ERR_FATAL;
3432 goto out;
3433 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003434 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003435 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003436 free(curagent->b.name);
3437 curagent->b.name = strdup(args[1]);
3438 }
3439 else if (!strcmp(args[0], "messages")) {
3440 int cur_arg = 1;
3441 while (*args[cur_arg]) {
Christopher Faulet11610f32017-09-21 10:23:10 +02003442 struct spoe_placeholder *ph = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003443
Christopher Faulet11610f32017-09-21 10:23:10 +02003444 list_for_each_entry(ph, &curmphs, list) {
3445 if (!strcmp(ph->id, args[cur_arg])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003446 ha_alert("parsing [%s:%d]: spoe-message '%s' already used.\n",
3447 file, linenum, args[cur_arg]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003448 err_code |= ERR_ALERT | ERR_FATAL;
3449 goto out;
3450 }
3451 }
3452
Christopher Faulet11610f32017-09-21 10:23:10 +02003453 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003454 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003455 err_code |= ERR_ALERT | ERR_ABORT;
3456 goto out;
3457 }
Christopher Faulet11610f32017-09-21 10:23:10 +02003458 ph->id = strdup(args[cur_arg]);
3459 LIST_ADDQ(&curmphs, &ph->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003460 cur_arg++;
3461 }
3462 }
Christopher Faulet11610f32017-09-21 10:23:10 +02003463 else if (!strcmp(args[0], "groups")) {
3464 int cur_arg = 1;
3465 while (*args[cur_arg]) {
3466 struct spoe_placeholder *ph = NULL;
3467
3468 list_for_each_entry(ph, &curgphs, list) {
3469 if (!strcmp(ph->id, args[cur_arg])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003470 ha_alert("parsing [%s:%d]: spoe-group '%s' already used.\n",
3471 file, linenum, args[cur_arg]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003472 err_code |= ERR_ALERT | ERR_FATAL;
3473 goto out;
3474 }
3475 }
3476
3477 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003478 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003479 err_code |= ERR_ALERT | ERR_ABORT;
3480 goto out;
3481 }
3482 ph->id = strdup(args[cur_arg]);
3483 LIST_ADDQ(&curgphs, &ph->list);
3484 cur_arg++;
3485 }
3486 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003487 else if (!strcmp(args[0], "timeout")) {
3488 unsigned int *tv = NULL;
3489 const char *res;
3490 unsigned timeout;
3491
3492 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003493 ha_alert("parsing [%s:%d] : 'timeout' expects 'hello', 'idle' and 'processing'.\n",
3494 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003495 err_code |= ERR_ALERT | ERR_FATAL;
3496 goto out;
3497 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003498 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3499 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003500 if (!strcmp(args[1], "hello"))
3501 tv = &curagent->timeout.hello;
3502 else if (!strcmp(args[1], "idle"))
3503 tv = &curagent->timeout.idle;
Christopher Fauletf7a30922016-11-10 15:04:51 +01003504 else if (!strcmp(args[1], "processing"))
3505 tv = &curagent->timeout.processing;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003506 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003507 ha_alert("parsing [%s:%d] : 'timeout' supports 'hello', 'idle' or 'processing' (got %s).\n",
3508 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003509 err_code |= ERR_ALERT | ERR_FATAL;
3510 goto out;
3511 }
3512 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003513 ha_alert("parsing [%s:%d] : 'timeout %s' expects an integer value (in milliseconds).\n",
3514 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003515 err_code |= ERR_ALERT | ERR_FATAL;
3516 goto out;
3517 }
3518 res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02003519 if (res == PARSE_TIME_OVER) {
3520 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
3521 file, linenum, args[2], args[0], args[1]);
3522 err_code |= ERR_ALERT | ERR_FATAL;
3523 goto out;
3524 }
3525 else if (res == PARSE_TIME_UNDER) {
3526 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
3527 file, linenum, args[2], args[0], args[1]);
3528 err_code |= ERR_ALERT | ERR_FATAL;
3529 goto out;
3530 }
3531 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003532 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'timeout %s'.\n",
3533 file, linenum, *res, args[1]);
Christopher Fauletecc537a2017-02-23 22:52:39 +01003534 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003535 goto out;
3536 }
3537 *tv = MS_TO_TICKS(timeout);
3538 }
3539 else if (!strcmp(args[0], "option")) {
3540 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003541 ha_alert("parsing [%s:%d]: '%s' expects an option name.\n",
3542 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003543 err_code |= ERR_ALERT | ERR_FATAL;
3544 goto out;
3545 }
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003546
Christopher Faulet305c6072017-02-23 16:17:53 +01003547 if (!strcmp(args[1], "pipelining")) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003548 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet305c6072017-02-23 16:17:53 +01003549 goto out;
Christopher Faulet305c6072017-02-23 16:17:53 +01003550 if (kwm == 1)
3551 curagent->flags &= ~SPOE_FL_PIPELINING;
3552 else
3553 curagent->flags |= SPOE_FL_PIPELINING;
3554 goto out;
3555 }
3556 else if (!strcmp(args[1], "async")) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003557 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet305c6072017-02-23 16:17:53 +01003558 goto out;
Christopher Faulet305c6072017-02-23 16:17:53 +01003559 if (kwm == 1)
3560 curagent->flags &= ~SPOE_FL_ASYNC;
Christopher Faulet46c76822019-09-17 11:55:52 +02003561 else
3562 curagent->flags |= SPOE_FL_ASYNC;
Christopher Faulet305c6072017-02-23 16:17:53 +01003563 goto out;
3564 }
Christopher Fauletcecd8522017-02-24 22:11:21 +01003565 else if (!strcmp(args[1], "send-frag-payload")) {
3566 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3567 goto out;
3568 if (kwm == 1)
3569 curagent->flags &= ~SPOE_FL_SND_FRAGMENTATION;
3570 else
3571 curagent->flags |= SPOE_FL_SND_FRAGMENTATION;
3572 goto out;
3573 }
Christopher Faulet0e0f0852018-03-26 17:20:36 +02003574 else if (!strcmp(args[1], "dontlog-normal")) {
3575 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3576 goto out;
3577 if (kwm == 1)
3578 curpxopts2 &= ~PR_O2_NOLOGNORM;
3579 else
3580 curpxopts2 |= PR_O2_NOLOGNORM;
Christopher Faulet799f5182018-04-26 11:36:34 +02003581 goto out;
Christopher Faulet0e0f0852018-03-26 17:20:36 +02003582 }
Christopher Faulet305c6072017-02-23 16:17:53 +01003583
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003584 /* Following options does not support negation */
3585 if (kwm == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003586 ha_alert("parsing [%s:%d]: negation is not supported for option '%s'.\n",
3587 file, linenum, args[1]);
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003588 err_code |= ERR_ALERT | ERR_FATAL;
3589 goto out;
3590 }
3591
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003592 if (!strcmp(args[1], "var-prefix")) {
3593 char *tmp;
3594
3595 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003596 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3597 file, linenum, args[0],
3598 args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003599 err_code |= ERR_ALERT | ERR_FATAL;
3600 goto out;
3601 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003602 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3603 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003604 tmp = args[2];
3605 while (*tmp) {
3606 if (!isalnum(*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003607 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003608 file, linenum, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003609 err_code |= ERR_ALERT | ERR_FATAL;
3610 goto out;
3611 }
3612 tmp++;
3613 }
3614 curagent->var_pfx = strdup(args[2]);
3615 }
Etienne Carriereaec89892017-12-14 09:36:40 +00003616 else if (!strcmp(args[1], "force-set-var")) {
3617 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3618 goto out;
3619 curagent->flags |= SPOE_FL_FORCE_SET_VAR;
3620 }
Christopher Fauletea62c2a2016-11-14 10:54:21 +01003621 else if (!strcmp(args[1], "continue-on-error")) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003622 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Fauletea62c2a2016-11-14 10:54:21 +01003623 goto out;
Christopher Fauletea62c2a2016-11-14 10:54:21 +01003624 curagent->flags |= SPOE_FL_CONT_ON_ERR;
3625 }
Christopher Faulet985532d2016-11-16 15:36:19 +01003626 else if (!strcmp(args[1], "set-on-error")) {
3627 char *tmp;
3628
3629 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003630 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3631 file, linenum, args[0],
3632 args[1]);
Christopher Faulet985532d2016-11-16 15:36:19 +01003633 err_code |= ERR_ALERT | ERR_FATAL;
3634 goto out;
3635 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003636 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3637 goto out;
Christopher Faulet985532d2016-11-16 15:36:19 +01003638 tmp = args[2];
3639 while (*tmp) {
3640 if (!isalnum(*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003641 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003642 file, linenum, args[0], args[1]);
Christopher Faulet985532d2016-11-16 15:36:19 +01003643 err_code |= ERR_ALERT | ERR_FATAL;
3644 goto out;
3645 }
3646 tmp++;
3647 }
3648 curagent->var_on_error = strdup(args[2]);
3649 }
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003650 else if (!strcmp(args[1], "set-process-time")) {
3651 char *tmp;
3652
3653 if (!*args[2]) {
3654 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3655 file, linenum, args[0],
3656 args[1]);
3657 err_code |= ERR_ALERT | ERR_FATAL;
3658 goto out;
3659 }
3660 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3661 goto out;
3662 tmp = args[2];
3663 while (*tmp) {
3664 if (!isalnum(*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003665 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003666 file, linenum, args[0], args[1]);
3667 err_code |= ERR_ALERT | ERR_FATAL;
3668 goto out;
3669 }
3670 tmp++;
3671 }
3672 curagent->var_t_process = strdup(args[2]);
3673 }
3674 else if (!strcmp(args[1], "set-total-time")) {
3675 char *tmp;
3676
3677 if (!*args[2]) {
3678 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3679 file, linenum, args[0],
3680 args[1]);
3681 err_code |= ERR_ALERT | ERR_FATAL;
3682 goto out;
3683 }
3684 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3685 goto out;
3686 tmp = args[2];
3687 while (*tmp) {
3688 if (!isalnum(*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003689 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003690 file, linenum, args[0], args[1]);
3691 err_code |= ERR_ALERT | ERR_FATAL;
3692 goto out;
3693 }
3694 tmp++;
3695 }
3696 curagent->var_t_total = strdup(args[2]);
3697 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003698 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003699 ha_alert("parsing [%s:%d]: option '%s' is not supported.\n",
3700 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003701 err_code |= ERR_ALERT | ERR_FATAL;
3702 goto out;
3703 }
Christopher Faulet48026722016-11-16 15:01:12 +01003704 }
3705 else if (!strcmp(args[0], "maxconnrate")) {
3706 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003707 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3708 file, linenum, args[0]);
Christopher Faulet48026722016-11-16 15:01:12 +01003709 err_code |= ERR_ALERT | ERR_FATAL;
3710 goto out;
3711 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003712 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet48026722016-11-16 15:01:12 +01003713 goto out;
Christopher Faulet48026722016-11-16 15:01:12 +01003714 curagent->cps_max = atol(args[1]);
3715 }
3716 else if (!strcmp(args[0], "maxerrrate")) {
3717 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003718 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3719 file, linenum, args[0]);
Christopher Faulet48026722016-11-16 15:01:12 +01003720 err_code |= ERR_ALERT | ERR_FATAL;
3721 goto out;
3722 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003723 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet48026722016-11-16 15:01:12 +01003724 goto out;
Christopher Faulet48026722016-11-16 15:01:12 +01003725 curagent->eps_max = atol(args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003726 }
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003727 else if (!strcmp(args[0], "max-frame-size")) {
3728 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003729 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3730 file, linenum, args[0]);
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003731 err_code |= ERR_ALERT | ERR_FATAL;
3732 goto out;
3733 }
3734 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3735 goto out;
3736 curagent->max_frame_size = atol(args[1]);
3737 if (curagent->max_frame_size < MIN_FRAME_SIZE ||
3738 curagent->max_frame_size > MAX_FRAME_SIZE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003739 ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument in the range [%d, %d].\n",
3740 file, linenum, args[0], MIN_FRAME_SIZE, MAX_FRAME_SIZE);
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003741 err_code |= ERR_ALERT | ERR_FATAL;
3742 goto out;
3743 }
3744 }
Christopher Faulete8ade382018-01-25 15:32:22 +01003745 else if (!strcmp(args[0], "max-waiting-frames")) {
3746 if (!*args[1]) {
3747 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3748 file, linenum, args[0]);
3749 err_code |= ERR_ALERT | ERR_FATAL;
3750 goto out;
3751 }
3752 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3753 goto out;
3754 curagent->max_fpa = atol(args[1]);
3755 if (curagent->max_fpa < 1) {
3756 ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument.\n",
3757 file, linenum, args[0]);
3758 err_code |= ERR_ALERT | ERR_FATAL;
3759 goto out;
3760 }
3761 }
Christopher Faulet336d3ef2017-12-22 10:00:55 +01003762 else if (!strcmp(args[0], "register-var-names")) {
3763 int cur_arg;
3764
3765 if (!*args[1]) {
3766 ha_alert("parsing [%s:%d] : '%s' expects one or more variable names.\n",
3767 file, linenum, args[0]);
3768 err_code |= ERR_ALERT | ERR_FATAL;
3769 goto out;
3770 }
3771 cur_arg = 1;
3772 while (*args[cur_arg]) {
3773 struct spoe_var_placeholder *vph;
3774
3775 if ((vph = calloc(1, sizeof(*vph))) == NULL) {
3776 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3777 err_code |= ERR_ALERT | ERR_ABORT;
3778 goto out;
3779 }
3780 if ((vph->name = strdup(args[cur_arg])) == NULL) {
Tim Duesterhusf818ea52019-06-23 22:10:13 +02003781 free(vph);
Christopher Faulet336d3ef2017-12-22 10:00:55 +01003782 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3783 err_code |= ERR_ALERT | ERR_ABORT;
3784 goto out;
3785 }
3786 LIST_ADDQ(&curvars, &vph->list);
3787 cur_arg++;
3788 }
3789 }
Christopher Faulet7250b8f2018-03-26 17:19:01 +02003790 else if (!strcmp(args[0], "log")) {
3791 char *errmsg = NULL;
3792
3793 if (!parse_logsrv(args, &curlogsrvs, (kwm == 1), &errmsg)) {
3794 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
3795 err_code |= ERR_ALERT | ERR_FATAL;
3796 goto out;
3797 }
3798 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003799 else if (*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003800 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-agent section.\n",
3801 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003802 err_code |= ERR_ALERT | ERR_FATAL;
3803 goto out;
3804 }
3805 out:
3806 return err_code;
3807}
Christopher Faulet11610f32017-09-21 10:23:10 +02003808static int
3809cfg_parse_spoe_group(const char *file, int linenum, char **args, int kwm)
3810{
3811 struct spoe_group *grp;
3812 const char *err;
3813 int err_code = 0;
3814
3815 if ((cfg_scope == NULL && curengine != NULL) ||
3816 (cfg_scope != NULL && curengine == NULL) ||
3817 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope)))
3818 goto out;
3819
3820 if (!strcmp(args[0], "spoe-group")) { /* new spoe-group section */
3821 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003822 ha_alert("parsing [%s:%d] : missing name for spoe-group section.\n",
3823 file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003824 err_code |= ERR_ALERT | ERR_ABORT;
3825 goto out;
3826 }
3827 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3828 err_code |= ERR_ABORT;
3829 goto out;
3830 }
3831
3832 err = invalid_char(args[1]);
3833 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003834 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3835 file, linenum, *err, args[0], args[1]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003836 err_code |= ERR_ALERT | ERR_ABORT;
3837 goto out;
3838 }
3839
3840 list_for_each_entry(grp, &curgrps, list) {
3841 if (!strcmp(grp->id, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003842 ha_alert("parsing [%s:%d]: spoe-group section '%s' has the same"
3843 " name as another one declared at %s:%d.\n",
3844 file, linenum, args[1], grp->conf.file, grp->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02003845 err_code |= ERR_ALERT | ERR_FATAL;
3846 goto out;
3847 }
3848 }
3849
3850 if ((curgrp = calloc(1, sizeof(*curgrp))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003851 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003852 err_code |= ERR_ALERT | ERR_ABORT;
3853 goto out;
3854 }
3855
3856 curgrp->id = strdup(args[1]);
3857 curgrp->conf.file = strdup(file);
3858 curgrp->conf.line = linenum;
3859 LIST_INIT(&curgrp->phs);
3860 LIST_INIT(&curgrp->messages);
3861 LIST_ADDQ(&curgrps, &curgrp->list);
3862 }
3863 else if (!strcmp(args[0], "messages")) {
3864 int cur_arg = 1;
3865 while (*args[cur_arg]) {
3866 struct spoe_placeholder *ph = NULL;
3867
3868 list_for_each_entry(ph, &curgrp->phs, list) {
3869 if (!strcmp(ph->id, args[cur_arg])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003870 ha_alert("parsing [%s:%d]: spoe-message '%s' already used.\n",
3871 file, linenum, args[cur_arg]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003872 err_code |= ERR_ALERT | ERR_FATAL;
3873 goto out;
3874 }
3875 }
3876
3877 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003878 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003879 err_code |= ERR_ALERT | ERR_ABORT;
3880 goto out;
3881 }
3882 ph->id = strdup(args[cur_arg]);
3883 LIST_ADDQ(&curgrp->phs, &ph->list);
3884 cur_arg++;
3885 }
3886 }
3887 else if (*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003888 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-group section.\n",
3889 file, linenum, args[0]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003890 err_code |= ERR_ALERT | ERR_FATAL;
3891 goto out;
3892 }
3893 out:
3894 return err_code;
3895}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003896
3897static int
3898cfg_parse_spoe_message(const char *file, int linenum, char **args, int kwm)
3899{
3900 struct spoe_message *msg;
3901 struct spoe_arg *arg;
3902 const char *err;
3903 char *errmsg = NULL;
3904 int err_code = 0;
3905
3906 if ((cfg_scope == NULL && curengine != NULL) ||
3907 (cfg_scope != NULL && curengine == NULL) ||
Christopher Faulete1405e52017-09-19 10:35:35 +02003908 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope)))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003909 goto out;
3910
3911 if (!strcmp(args[0], "spoe-message")) { /* new spoe-message section */
3912 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003913 ha_alert("parsing [%s:%d] : missing name for spoe-message section.\n",
3914 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003915 err_code |= ERR_ALERT | ERR_ABORT;
3916 goto out;
3917 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003918 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3919 err_code |= ERR_ABORT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003920 goto out;
3921 }
3922
3923 err = invalid_char(args[1]);
3924 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003925 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3926 file, linenum, *err, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003927 err_code |= ERR_ALERT | ERR_ABORT;
3928 goto out;
3929 }
3930
3931 list_for_each_entry(msg, &curmsgs, list) {
3932 if (!strcmp(msg->id, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003933 ha_alert("parsing [%s:%d]: spoe-message section '%s' has the same"
3934 " name as another one declared at %s:%d.\n",
3935 file, linenum, args[1], msg->conf.file, msg->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003936 err_code |= ERR_ALERT | ERR_FATAL;
3937 goto out;
3938 }
3939 }
3940
3941 if ((curmsg = calloc(1, sizeof(*curmsg))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003942 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003943 err_code |= ERR_ALERT | ERR_ABORT;
3944 goto out;
3945 }
3946
3947 curmsg->id = strdup(args[1]);
3948 curmsg->id_len = strlen(curmsg->id);
3949 curmsg->event = SPOE_EV_NONE;
3950 curmsg->conf.file = strdup(file);
3951 curmsg->conf.line = linenum;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01003952 curmsg->nargs = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003953 LIST_INIT(&curmsg->args);
Christopher Faulet57583e42017-09-04 15:41:09 +02003954 LIST_INIT(&curmsg->acls);
Christopher Faulet11610f32017-09-21 10:23:10 +02003955 LIST_INIT(&curmsg->by_evt);
3956 LIST_INIT(&curmsg->by_grp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003957 LIST_ADDQ(&curmsgs, &curmsg->list);
3958 }
3959 else if (!strcmp(args[0], "args")) {
3960 int cur_arg = 1;
3961
3962 curproxy->conf.args.ctx = ARGC_SPOE;
3963 curproxy->conf.args.file = file;
3964 curproxy->conf.args.line = linenum;
3965 while (*args[cur_arg]) {
3966 char *delim = strchr(args[cur_arg], '=');
3967 int idx = 0;
3968
3969 if ((arg = calloc(1, sizeof(*arg))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003970 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003971 err_code |= ERR_ALERT | ERR_ABORT;
3972 goto out;
3973 }
3974
3975 if (!delim) {
3976 arg->name = NULL;
3977 arg->name_len = 0;
3978 delim = args[cur_arg];
3979 }
3980 else {
3981 arg->name = my_strndup(args[cur_arg], delim - args[cur_arg]);
3982 arg->name_len = delim - args[cur_arg];
3983 delim++;
3984 }
Christopher Fauletb0b42382017-02-23 22:41:09 +01003985 arg->expr = sample_parse_expr((char*[]){delim, NULL},
3986 &idx, file, linenum, &errmsg,
3987 &curproxy->conf.args);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003988 if (arg->expr == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003989 ha_alert("parsing [%s:%d] : '%s': %s.\n", file, linenum, args[0], errmsg);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003990 err_code |= ERR_ALERT | ERR_FATAL;
3991 free(arg->name);
3992 free(arg);
3993 goto out;
3994 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01003995 curmsg->nargs++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003996 LIST_ADDQ(&curmsg->args, &arg->list);
3997 cur_arg++;
3998 }
3999 curproxy->conf.args.file = NULL;
4000 curproxy->conf.args.line = 0;
4001 }
Christopher Faulet57583e42017-09-04 15:41:09 +02004002 else if (!strcmp(args[0], "acl")) {
4003 err = invalid_char(args[1]);
4004 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004005 ha_alert("parsing [%s:%d] : character '%c' is not permitted in acl name '%s'.\n",
4006 file, linenum, *err, args[1]);
Christopher Faulet57583e42017-09-04 15:41:09 +02004007 err_code |= ERR_ALERT | ERR_FATAL;
4008 goto out;
4009 }
Tim Duesterhus6b7ce1e2020-02-05 21:00:50 +01004010 if (strcasecmp(args[1], "or") == 0) {
4011 ha_warning("parsing [%s:%d] : acl name '%s' will never match. 'or' is used to express a "
4012 "logical disjunction within a condition.\n",
4013 file, linenum, args[1]);
4014 err_code |= ERR_WARN;
4015 }
Christopher Faulet57583e42017-09-04 15:41:09 +02004016 if (parse_acl((const char **)args + 1, &curmsg->acls, &errmsg, &curproxy->conf.args, file, linenum) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004017 ha_alert("parsing [%s:%d] : error detected while parsing ACL '%s' : %s.\n",
4018 file, linenum, args[1], errmsg);
Christopher Faulet57583e42017-09-04 15:41:09 +02004019 err_code |= ERR_ALERT | ERR_FATAL;
4020 goto out;
4021 }
4022 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004023 else if (!strcmp(args[0], "event")) {
4024 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004025 ha_alert("parsing [%s:%d] : missing event name.\n", file, linenum);
Christopher Fauletecc537a2017-02-23 22:52:39 +01004026 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004027 goto out;
4028 }
Christopher Faulet57583e42017-09-04 15:41:09 +02004029 /* if (alertif_too_many_args(1, file, linenum, args, &err_code)) */
4030 /* goto out; */
Christopher Fauletecc537a2017-02-23 22:52:39 +01004031
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004032 if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_CLIENT_SESS]))
4033 curmsg->event = SPOE_EV_ON_CLIENT_SESS;
4034 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_SERVER_SESS]))
4035 curmsg->event = SPOE_EV_ON_SERVER_SESS;
4036
4037 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_REQ_FE]))
4038 curmsg->event = SPOE_EV_ON_TCP_REQ_FE;
4039 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_REQ_BE]))
4040 curmsg->event = SPOE_EV_ON_TCP_REQ_BE;
4041 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_RSP]))
4042 curmsg->event = SPOE_EV_ON_TCP_RSP;
4043
4044 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_REQ_FE]))
4045 curmsg->event = SPOE_EV_ON_HTTP_REQ_FE;
4046 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_REQ_BE]))
4047 curmsg->event = SPOE_EV_ON_HTTP_REQ_BE;
4048 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_RSP]))
4049 curmsg->event = SPOE_EV_ON_HTTP_RSP;
4050 else {
Joseph Herlantf1da69d2018-11-15 13:49:02 -08004051 ha_alert("parsing [%s:%d] : unknown event '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004052 file, linenum, args[1]);
Christopher Fauletecc537a2017-02-23 22:52:39 +01004053 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004054 goto out;
4055 }
Christopher Faulet57583e42017-09-04 15:41:09 +02004056
4057 if (strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0) {
4058 struct acl_cond *cond;
4059
4060 cond = build_acl_cond(file, linenum, &curmsg->acls,
4061 curproxy, (const char **)args+2,
4062 &errmsg);
4063 if (cond == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004064 ha_alert("parsing [%s:%d] : error detected while "
4065 "parsing an 'event %s' condition : %s.\n",
4066 file, linenum, args[1], errmsg);
Christopher Faulet57583e42017-09-04 15:41:09 +02004067 err_code |= ERR_ALERT | ERR_FATAL;
4068 goto out;
4069 }
4070 curmsg->cond = cond;
4071 }
4072 else if (*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004073 ha_alert("parsing [%s:%d]: 'event %s' expects either 'if' "
4074 "or 'unless' followed by a condition but found '%s'.\n",
4075 file, linenum, args[1], args[2]);
Christopher Faulet57583e42017-09-04 15:41:09 +02004076 err_code |= ERR_ALERT | ERR_FATAL;
4077 goto out;
4078 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004079 }
4080 else if (!*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004081 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-message section.\n",
4082 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004083 err_code |= ERR_ALERT | ERR_FATAL;
4084 goto out;
4085 }
4086 out:
4087 free(errmsg);
4088 return err_code;
4089}
4090
4091/* Return -1 on error, else 0 */
4092static int
4093parse_spoe_flt(char **args, int *cur_arg, struct proxy *px,
4094 struct flt_conf *fconf, char **err, void *private)
4095{
4096 struct list backup_sections;
4097 struct spoe_config *conf;
4098 struct spoe_message *msg, *msgback;
Christopher Faulet11610f32017-09-21 10:23:10 +02004099 struct spoe_group *grp, *grpback;
4100 struct spoe_placeholder *ph, *phback;
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004101 struct spoe_var_placeholder *vph, *vphback;
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004102 struct logsrv *logsrv, *logsrvback;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004103 char *file = NULL, *engine = NULL;
4104 int ret, pos = *cur_arg + 1;
4105
Christopher Faulet84c844e2018-03-23 14:37:14 +01004106 LIST_INIT(&curmsgs);
4107 LIST_INIT(&curgrps);
4108 LIST_INIT(&curmphs);
4109 LIST_INIT(&curgphs);
4110 LIST_INIT(&curvars);
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004111 LIST_INIT(&curlogsrvs);
Christopher Faulet0e0f0852018-03-26 17:20:36 +02004112 curpxopts = 0;
4113 curpxopts2 = 0;
Christopher Faulet84c844e2018-03-23 14:37:14 +01004114
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004115 conf = calloc(1, sizeof(*conf));
4116 if (conf == NULL) {
4117 memprintf(err, "%s: out of memory", args[*cur_arg]);
4118 goto error;
4119 }
4120 conf->proxy = px;
4121
4122 while (*args[pos]) {
4123 if (!strcmp(args[pos], "config")) {
4124 if (!*args[pos+1]) {
4125 memprintf(err, "'%s' : '%s' option without value",
4126 args[*cur_arg], args[pos]);
4127 goto error;
4128 }
4129 file = args[pos+1];
4130 pos += 2;
4131 }
4132 else if (!strcmp(args[pos], "engine")) {
4133 if (!*args[pos+1]) {
4134 memprintf(err, "'%s' : '%s' option without value",
4135 args[*cur_arg], args[pos]);
4136 goto error;
4137 }
4138 engine = args[pos+1];
4139 pos += 2;
4140 }
4141 else {
4142 memprintf(err, "unknown keyword '%s'", args[pos]);
4143 goto error;
4144 }
4145 }
4146 if (file == NULL) {
4147 memprintf(err, "'%s' : missing config file", args[*cur_arg]);
4148 goto error;
4149 }
4150
4151 /* backup sections and register SPOE sections */
4152 LIST_INIT(&backup_sections);
4153 cfg_backup_sections(&backup_sections);
Christopher Faulet11610f32017-09-21 10:23:10 +02004154 cfg_register_section("spoe-agent", cfg_parse_spoe_agent, NULL);
4155 cfg_register_section("spoe-group", cfg_parse_spoe_group, NULL);
William Lallemandd2ff56d2017-10-16 11:06:50 +02004156 cfg_register_section("spoe-message", cfg_parse_spoe_message, NULL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004157
4158 /* Parse SPOE filter configuration file */
4159 curengine = engine;
4160 curproxy = px;
4161 curagent = NULL;
4162 curmsg = NULL;
4163 ret = readcfgfile(file);
4164 curproxy = NULL;
4165
4166 /* unregister SPOE sections and restore previous sections */
4167 cfg_unregister_sections();
4168 cfg_restore_sections(&backup_sections);
4169
4170 if (ret == -1) {
4171 memprintf(err, "Could not open configuration file %s : %s",
4172 file, strerror(errno));
4173 goto error;
4174 }
4175 if (ret & (ERR_ABORT|ERR_FATAL)) {
4176 memprintf(err, "Error(s) found in configuration file %s", file);
4177 goto error;
4178 }
4179
4180 /* Check SPOE agent */
4181 if (curagent == NULL) {
4182 memprintf(err, "No SPOE agent found in file %s", file);
4183 goto error;
4184 }
4185 if (curagent->b.name == NULL) {
4186 memprintf(err, "No backend declared for SPOE agent '%s' declared at %s:%d",
4187 curagent->id, curagent->conf.file, curagent->conf.line);
4188 goto error;
4189 }
Christopher Fauletf7a30922016-11-10 15:04:51 +01004190 if (curagent->timeout.hello == TICK_ETERNITY ||
4191 curagent->timeout.idle == TICK_ETERNITY ||
Christopher Fauletf7a30922016-11-10 15:04:51 +01004192 curagent->timeout.processing == TICK_ETERNITY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004193 ha_warning("Proxy '%s': missing timeouts for SPOE agent '%s' declare at %s:%d.\n"
4194 " | While not properly invalid, you will certainly encounter various problems\n"
4195 " | with such a configuration. To fix this, please ensure that all following\n"
4196 " | timeouts are set to a non-zero value: 'hello', 'idle', 'processing'.\n",
4197 px->id, curagent->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004198 }
4199 if (curagent->var_pfx == NULL) {
4200 char *tmp = curagent->id;
4201
4202 while (*tmp) {
4203 if (!isalnum(*tmp) && *tmp != '_' && *tmp != '.') {
4204 memprintf(err, "Invalid variable prefix '%s' for SPOE agent '%s' declared at %s:%d. "
4205 "Use 'option var-prefix' to set it. Only [a-zA-Z0-9_.] chars are supported.\n",
4206 curagent->id, curagent->id, curagent->conf.file, curagent->conf.line);
4207 goto error;
4208 }
4209 tmp++;
4210 }
4211 curagent->var_pfx = strdup(curagent->id);
4212 }
4213
Christopher Fauletb7426d12018-03-21 14:12:17 +01004214 if (curagent->var_on_error) {
4215 struct arg arg;
4216
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004217 trash.data = snprintf(trash.area, trash.size, "txn.%s.%s",
Christopher Fauletb7426d12018-03-21 14:12:17 +01004218 curagent->var_pfx, curagent->var_on_error);
4219
4220 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004221 arg.data.str.area = trash.area;
4222 arg.data.str.data = trash.data;
Christopher Fauletbf9bcb02019-05-13 10:39:36 +02004223 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_args() */
Christopher Fauletb7426d12018-03-21 14:12:17 +01004224 if (!vars_check_arg(&arg, err)) {
4225 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4226 curagent->id, curagent->var_pfx, curagent->var_on_error, *err);
4227 goto error;
4228 }
4229 }
4230
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004231 if (curagent->var_t_process) {
4232 struct arg arg;
4233
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004234 trash.data = snprintf(trash.area, trash.size, "txn.%s.%s",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004235 curagent->var_pfx, curagent->var_t_process);
4236
4237 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004238 arg.data.str.area = trash.area;
4239 arg.data.str.data = trash.data;
Christopher Fauletbf9bcb02019-05-13 10:39:36 +02004240 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_args() */
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004241 if (!vars_check_arg(&arg, err)) {
4242 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4243 curagent->id, curagent->var_pfx, curagent->var_t_process, *err);
4244 goto error;
4245 }
4246 }
4247
4248 if (curagent->var_t_total) {
4249 struct arg arg;
4250
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004251 trash.data = snprintf(trash.area, trash.size, "txn.%s.%s",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004252 curagent->var_pfx, curagent->var_t_total);
4253
4254 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004255 arg.data.str.area = trash.area;
4256 arg.data.str.data = trash.data;
Christopher Fauletbf9bcb02019-05-13 10:39:36 +02004257 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_args() */
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004258 if (!vars_check_arg(&arg, err)) {
4259 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4260 curagent->id, curagent->var_pfx, curagent->var_t_process, *err);
4261 goto error;
4262 }
4263 }
4264
Christopher Faulet11610f32017-09-21 10:23:10 +02004265 if (LIST_ISEMPTY(&curmphs) && LIST_ISEMPTY(&curgphs)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004266 ha_warning("Proxy '%s': No message/group used by SPOE agent '%s' declared at %s:%d.\n",
4267 px->id, curagent->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004268 goto finish;
4269 }
4270
Christopher Faulet11610f32017-09-21 10:23:10 +02004271 /* Replace placeholders by the corresponding messages for the SPOE
4272 * agent */
4273 list_for_each_entry(ph, &curmphs, list) {
4274 list_for_each_entry(msg, &curmsgs, list) {
Christopher Fauleta21b0642017-01-09 16:56:23 +01004275 struct spoe_arg *arg;
4276 unsigned int where;
4277
Christopher Faulet11610f32017-09-21 10:23:10 +02004278 if (!strcmp(msg->id, ph->id)) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004279 if ((px->cap & (PR_CAP_FE|PR_CAP_BE)) == (PR_CAP_FE|PR_CAP_BE)) {
4280 if (msg->event == SPOE_EV_ON_TCP_REQ_BE)
4281 msg->event = SPOE_EV_ON_TCP_REQ_FE;
4282 if (msg->event == SPOE_EV_ON_HTTP_REQ_BE)
4283 msg->event = SPOE_EV_ON_HTTP_REQ_FE;
4284 }
4285 if (!(px->cap & PR_CAP_FE) && (msg->event == SPOE_EV_ON_CLIENT_SESS ||
4286 msg->event == SPOE_EV_ON_TCP_REQ_FE ||
4287 msg->event == SPOE_EV_ON_HTTP_REQ_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004288 ha_warning("Proxy '%s': frontend event used on a backend proxy at %s:%d.\n",
4289 px->id, msg->conf.file, msg->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02004290 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004291 }
4292 if (msg->event == SPOE_EV_NONE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004293 ha_warning("Proxy '%s': Ignore SPOE message '%s' without event at %s:%d.\n",
4294 px->id, msg->id, msg->conf.file, msg->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02004295 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004296 }
Christopher Fauleta21b0642017-01-09 16:56:23 +01004297
4298 where = 0;
4299 switch (msg->event) {
4300 case SPOE_EV_ON_CLIENT_SESS:
4301 where |= SMP_VAL_FE_CON_ACC;
4302 break;
4303
4304 case SPOE_EV_ON_TCP_REQ_FE:
4305 where |= SMP_VAL_FE_REQ_CNT;
4306 break;
4307
4308 case SPOE_EV_ON_HTTP_REQ_FE:
4309 where |= SMP_VAL_FE_HRQ_HDR;
4310 break;
4311
4312 case SPOE_EV_ON_TCP_REQ_BE:
4313 if (px->cap & PR_CAP_FE)
4314 where |= SMP_VAL_FE_REQ_CNT;
4315 if (px->cap & PR_CAP_BE)
4316 where |= SMP_VAL_BE_REQ_CNT;
4317 break;
4318
4319 case SPOE_EV_ON_HTTP_REQ_BE:
4320 if (px->cap & PR_CAP_FE)
4321 where |= SMP_VAL_FE_HRQ_HDR;
4322 if (px->cap & PR_CAP_BE)
4323 where |= SMP_VAL_BE_HRQ_HDR;
4324 break;
4325
4326 case SPOE_EV_ON_SERVER_SESS:
4327 where |= SMP_VAL_BE_SRV_CON;
4328 break;
4329
4330 case SPOE_EV_ON_TCP_RSP:
4331 if (px->cap & PR_CAP_FE)
4332 where |= SMP_VAL_FE_RES_CNT;
4333 if (px->cap & PR_CAP_BE)
4334 where |= SMP_VAL_BE_RES_CNT;
4335 break;
4336
4337 case SPOE_EV_ON_HTTP_RSP:
4338 if (px->cap & PR_CAP_FE)
4339 where |= SMP_VAL_FE_HRS_HDR;
4340 if (px->cap & PR_CAP_BE)
4341 where |= SMP_VAL_BE_HRS_HDR;
4342 break;
4343
4344 default:
4345 break;
4346 }
4347
4348 list_for_each_entry(arg, &msg->args, list) {
4349 if (!(arg->expr->fetch->val & where)) {
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004350 memprintf(err, "Ignore SPOE message '%s' at %s:%d: "
Christopher Fauleta21b0642017-01-09 16:56:23 +01004351 "some args extract information from '%s', "
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004352 "none of which is available here ('%s')",
4353 msg->id, msg->conf.file, msg->conf.line,
Christopher Fauleta21b0642017-01-09 16:56:23 +01004354 sample_ckp_names(arg->expr->fetch->use),
4355 sample_ckp_names(where));
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004356 goto error;
Christopher Fauleta21b0642017-01-09 16:56:23 +01004357 }
4358 }
4359
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004360 msg->agent = curagent;
Christopher Faulet11610f32017-09-21 10:23:10 +02004361 LIST_ADDQ(&curagent->events[msg->event], &msg->by_evt);
4362 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004363 }
4364 }
4365 memprintf(err, "SPOE agent '%s' try to use undefined SPOE message '%s' at %s:%d",
Christopher Faulet11610f32017-09-21 10:23:10 +02004366 curagent->id, ph->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004367 goto error;
Christopher Faulet11610f32017-09-21 10:23:10 +02004368 next_mph:
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004369 continue;
4370 }
4371
Christopher Faulet11610f32017-09-21 10:23:10 +02004372 /* Replace placeholders by the corresponding groups for the SPOE
4373 * agent */
4374 list_for_each_entry(ph, &curgphs, list) {
4375 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
4376 if (!strcmp(grp->id, ph->id)) {
4377 grp->agent = curagent;
4378 LIST_DEL(&grp->list);
4379 LIST_ADDQ(&curagent->groups, &grp->list);
4380 goto next_aph;
4381 }
4382 }
4383 memprintf(err, "SPOE agent '%s' try to use undefined SPOE group '%s' at %s:%d",
4384 curagent->id, ph->id, curagent->conf.file, curagent->conf.line);
4385 goto error;
4386 next_aph:
4387 continue;
4388 }
4389
4390 /* Replace placeholders by the corresponding message for each SPOE
4391 * group of the SPOE agent */
4392 list_for_each_entry(grp, &curagent->groups, list) {
4393 list_for_each_entry_safe(ph, phback, &grp->phs, list) {
4394 list_for_each_entry(msg, &curmsgs, list) {
4395 if (!strcmp(msg->id, ph->id)) {
4396 if (msg->group != NULL) {
4397 memprintf(err, "SPOE message '%s' already belongs to "
4398 "the SPOE group '%s' declare at %s:%d",
4399 msg->id, msg->group->id,
4400 msg->group->conf.file,
4401 msg->group->conf.line);
4402 goto error;
4403 }
4404
4405 /* Scope for arguments are not checked for now. We will check
4406 * them only if a rule use the corresponding SPOE group. */
4407 msg->agent = curagent;
4408 msg->group = grp;
4409 LIST_DEL(&ph->list);
4410 LIST_ADDQ(&grp->messages, &msg->by_grp);
4411 goto next_mph_grp;
4412 }
4413 }
4414 memprintf(err, "SPOE group '%s' try to use undefined SPOE message '%s' at %s:%d",
4415 grp->id, ph->id, curagent->conf.file, curagent->conf.line);
4416 goto error;
4417 next_mph_grp:
4418 continue;
4419 }
4420 }
4421
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004422 finish:
Christopher Faulet11610f32017-09-21 10:23:10 +02004423 /* move curmsgs to the agent message list */
4424 curmsgs.n->p = &curagent->messages;
4425 curmsgs.p->n = &curagent->messages;
4426 curagent->messages = curmsgs;
4427 LIST_INIT(&curmsgs);
4428
Christopher Faulet7ee86672017-09-19 11:08:28 +02004429 conf->id = strdup(engine ? engine : curagent->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004430 conf->agent = curagent;
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004431
4432 /* Start agent's proxy initialization here. It will be finished during
4433 * the filter init. */
4434 memset(&conf->agent_fe, 0, sizeof(conf->agent_fe));
4435 init_new_proxy(&conf->agent_fe);
4436 conf->agent_fe.id = conf->agent->id;
4437 conf->agent_fe.parent = conf->agent;
Christopher Faulet0e0f0852018-03-26 17:20:36 +02004438 conf->agent_fe.options |= curpxopts;
4439 conf->agent_fe.options2 |= curpxopts2;
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004440
4441 list_for_each_entry_safe(logsrv, logsrvback, &curlogsrvs, list) {
4442 LIST_DEL(&logsrv->list);
4443 LIST_ADDQ(&conf->agent_fe.logsrvs, &logsrv->list);
4444 }
4445
Christopher Faulet11610f32017-09-21 10:23:10 +02004446 list_for_each_entry_safe(ph, phback, &curmphs, list) {
4447 LIST_DEL(&ph->list);
4448 spoe_release_placeholder(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004449 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004450 list_for_each_entry_safe(ph, phback, &curgphs, list) {
4451 LIST_DEL(&ph->list);
4452 spoe_release_placeholder(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004453 }
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004454 list_for_each_entry_safe(vph, vphback, &curvars, list) {
4455 struct arg arg;
4456
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004457 trash.data = snprintf(trash.area, trash.size, "proc.%s.%s",
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004458 curagent->var_pfx, vph->name);
4459
4460 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004461 arg.data.str.area = trash.area;
4462 arg.data.str.data = trash.data;
Christopher Fauletbf9bcb02019-05-13 10:39:36 +02004463 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_args() */
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004464 if (!vars_check_arg(&arg, err)) {
4465 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4466 curagent->id, curagent->var_pfx, vph->name, *err);
4467 goto error;
4468 }
4469
4470 LIST_DEL(&vph->list);
4471 free(vph->name);
4472 free(vph);
4473 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004474 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
4475 LIST_DEL(&grp->list);
4476 spoe_release_group(grp);
4477 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004478 *cur_arg = pos;
Christopher Faulet3b386a32017-02-23 10:17:15 +01004479 fconf->id = spoe_filter_id;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004480 fconf->ops = &spoe_ops;
4481 fconf->conf = conf;
4482 return 0;
4483
4484 error:
Christopher Faulet8ef75252017-02-20 22:56:03 +01004485 spoe_release_agent(curagent);
Christopher Faulet11610f32017-09-21 10:23:10 +02004486 list_for_each_entry_safe(ph, phback, &curmphs, list) {
4487 LIST_DEL(&ph->list);
4488 spoe_release_placeholder(ph);
4489 }
4490 list_for_each_entry_safe(ph, phback, &curgphs, list) {
4491 LIST_DEL(&ph->list);
4492 spoe_release_placeholder(ph);
4493 }
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004494 list_for_each_entry_safe(vph, vphback, &curvars, list) {
4495 LIST_DEL(&vph->list);
4496 free(vph->name);
4497 free(vph);
4498 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004499 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
4500 LIST_DEL(&grp->list);
4501 spoe_release_group(grp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004502 }
4503 list_for_each_entry_safe(msg, msgback, &curmsgs, list) {
4504 LIST_DEL(&msg->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01004505 spoe_release_message(msg);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004506 }
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004507 list_for_each_entry_safe(logsrv, logsrvback, &curlogsrvs, list) {
4508 LIST_DEL(&logsrv->list);
4509 free(logsrv);
4510 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004511 free(conf);
4512 return -1;
4513}
4514
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004515/* Send message of a SPOE group. This is the action_ptr callback of a rule
4516 * associated to a "send-spoe-group" action.
4517 *
4518 * It returns ACT_RET_CONT is processing is finished without error, it returns
4519 * ACT_RET_YIELD if the action is in progress. Otherwise it returns
4520 * ACT_RET_ERR. */
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004521static enum act_return
4522spoe_send_group(struct act_rule *rule, struct proxy *px,
4523 struct session *sess, struct stream *s, int flags)
4524{
4525 struct filter *filter;
4526 struct spoe_agent *agent = NULL;
4527 struct spoe_group *group = NULL;
4528 struct spoe_context *ctx = NULL;
4529 int ret, dir;
4530
4531 list_for_each_entry(filter, &s->strm_flt.filters, list) {
4532 if (filter->config == rule->arg.act.p[0]) {
4533 agent = rule->arg.act.p[2];
4534 group = rule->arg.act.p[3];
4535 ctx = filter->ctx;
4536 break;
4537 }
4538 }
4539 if (agent == NULL || group == NULL || ctx == NULL)
4540 return ACT_RET_ERR;
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004541 if (ctx->state == SPOE_CTX_ST_NONE)
4542 return ACT_RET_CONT;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004543
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004544 switch (rule->from) {
4545 case ACT_F_TCP_REQ_SES: dir = SMP_OPT_DIR_REQ; break;
4546 case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break;
4547 case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break;
4548 case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break;
4549 case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break;
4550 default:
4551 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
4552 " - internal error while execute spoe-send-group\n",
4553 (int)now.tv_sec, (int)now.tv_usec, agent->id,
4554 __FUNCTION__, s);
4555 send_log(px, LOG_ERR, "SPOE: [%s] internal error while execute spoe-send-group\n",
4556 agent->id);
4557 return ACT_RET_CONT;
4558 }
4559
4560 ret = spoe_process_group(s, ctx, group, dir);
4561 if (ret == 1)
4562 return ACT_RET_CONT;
4563 else if (ret == 0) {
4564 if (flags & ACT_FLAG_FINAL) {
4565 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
4566 " - failed to process group '%s': interrupted by caller\n",
4567 (int)now.tv_sec, (int)now.tv_usec,
4568 agent->id, __FUNCTION__, s, group->id);
4569 ctx->status_code = SPOE_CTX_ERR_INTERRUPT;
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01004570 spoe_stop_processing(agent, ctx);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02004571 spoe_handle_processing_error(s, agent, ctx, dir);
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004572 return ACT_RET_CONT;
4573 }
4574 return ACT_RET_YIELD;
4575 }
4576 else
4577 return ACT_RET_ERR;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004578}
4579
4580/* Check an "send-spoe-group" action. Here, we'll try to find the real SPOE
4581 * group associated to <rule>. The format of an rule using 'send-spoe-group'
4582 * action should be:
4583 *
4584 * (http|tcp)-(request|response) send-spoe-group <engine-id> <group-id>
4585 *
4586 * So, we'll loop on each configured SPOE filter for the proxy <px> to find the
4587 * SPOE engine matching <engine-id>. And then, we'll try to find the good group
4588 * matching <group-id>. Finally, we'll check all messages referenced by the SPOE
4589 * group.
4590 *
4591 * The function returns 1 in success case, otherwise, it returns 0 and err is
4592 * filled.
4593 */
4594static int
4595check_send_spoe_group(struct act_rule *rule, struct proxy *px, char **err)
4596{
4597 struct flt_conf *fconf;
4598 struct spoe_config *conf;
4599 struct spoe_agent *agent = NULL;
4600 struct spoe_group *group;
4601 struct spoe_message *msg;
4602 char *engine_id = rule->arg.act.p[0];
4603 char *group_id = rule->arg.act.p[1];
4604 unsigned int where = 0;
4605
4606 switch (rule->from) {
4607 case ACT_F_TCP_REQ_SES: where = SMP_VAL_FE_SES_ACC; break;
4608 case ACT_F_TCP_REQ_CNT: where = SMP_VAL_FE_REQ_CNT; break;
4609 case ACT_F_TCP_RES_CNT: where = SMP_VAL_BE_RES_CNT; break;
4610 case ACT_F_HTTP_REQ: where = SMP_VAL_FE_HRQ_HDR; break;
4611 case ACT_F_HTTP_RES: where = SMP_VAL_BE_HRS_HDR; break;
4612 default:
4613 memprintf(err,
4614 "internal error, unexpected rule->from=%d, please report this bug!",
4615 rule->from);
4616 goto error;
4617 }
4618
4619 /* Try to find the SPOE engine by checking all SPOE filters for proxy
4620 * <px> */
4621 list_for_each_entry(fconf, &px->filter_configs, list) {
4622 conf = fconf->conf;
4623
4624 /* This is not an SPOE filter */
4625 if (fconf->id != spoe_filter_id)
4626 continue;
4627
4628 /* This is the good engine */
4629 if (!strcmp(conf->id, engine_id)) {
4630 agent = conf->agent;
4631 break;
4632 }
4633 }
4634 if (agent == NULL) {
4635 memprintf(err, "unable to find SPOE engine '%s' used by the send-spoe-group '%s'",
4636 engine_id, group_id);
4637 goto error;
4638 }
4639
4640 /* Try to find the right group */
4641 list_for_each_entry(group, &agent->groups, list) {
4642 /* This is the good group */
4643 if (!strcmp(group->id, group_id))
4644 break;
4645 }
4646 if (&group->list == &agent->groups) {
4647 memprintf(err, "unable to find SPOE group '%s' into SPOE engine '%s' configuration",
4648 group_id, engine_id);
4649 goto error;
4650 }
4651
4652 /* Ok, we found the group, we need to check messages and their
4653 * arguments */
4654 list_for_each_entry(msg, &group->messages, by_grp) {
4655 struct spoe_arg *arg;
4656
4657 list_for_each_entry(arg, &msg->args, list) {
4658 if (!(arg->expr->fetch->val & where)) {
4659 memprintf(err, "Invalid SPOE message '%s' used by SPOE group '%s' at %s:%d: "
4660 "some args extract information from '%s',"
4661 "none of which is available here ('%s')",
4662 msg->id, group->id, msg->conf.file, msg->conf.line,
4663 sample_ckp_names(arg->expr->fetch->use),
4664 sample_ckp_names(where));
4665 goto error;
4666 }
4667 }
4668 }
4669
4670 free(engine_id);
4671 free(group_id);
4672 rule->arg.act.p[0] = fconf; /* Associate filter config with the rule */
4673 rule->arg.act.p[1] = conf; /* Associate SPOE config with the rule */
4674 rule->arg.act.p[2] = agent; /* Associate SPOE agent with the rule */
4675 rule->arg.act.p[3] = group; /* Associate SPOE group with the rule */
4676 return 1;
4677
4678 error:
4679 free(engine_id);
4680 free(group_id);
4681 return 0;
4682}
4683
4684/* Parse 'send-spoe-group' action following the format:
4685 *
4686 * ... send-spoe-group <engine-id> <group-id>
4687 *
4688 * It returns ACT_RET_PRS_ERR if fails and <err> is filled with an error
4689 * message. Otherwise, it returns ACT_RET_PRS_OK and parsing engine and group
4690 * ids are saved and used later, when the rule will be checked.
4691 */
4692static enum act_parse_ret
4693parse_send_spoe_group(const char **args, int *orig_arg, struct proxy *px,
4694 struct act_rule *rule, char **err)
4695{
4696 if (!*args[*orig_arg] || !*args[*orig_arg+1] ||
4697 (*args[*orig_arg+2] && strcmp(args[*orig_arg+2], "if") != 0 && strcmp(args[*orig_arg+2], "unless") != 0)) {
4698 memprintf(err, "expects 2 arguments: <engine-id> <group-id>");
4699 return ACT_RET_PRS_ERR;
4700 }
4701 rule->arg.act.p[0] = strdup(args[*orig_arg]); /* Copy the SPOE engine id */
4702 rule->arg.act.p[1] = strdup(args[*orig_arg+1]); /* Cope the SPOE group id */
4703
4704 (*orig_arg) += 2;
4705
4706 rule->action = ACT_CUSTOM;
4707 rule->action_ptr = spoe_send_group;
4708 rule->check_ptr = check_send_spoe_group;
4709 return ACT_RET_PRS_OK;
4710}
4711
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004712
4713/* Declare the filter parser for "spoe" keyword */
4714static struct flt_kw_list flt_kws = { "SPOE", { }, {
4715 { "spoe", parse_spoe_flt, NULL },
4716 { NULL, NULL, NULL },
4717 }
4718};
4719
Willy Tarreau0108d902018-11-25 19:14:37 +01004720INITCALL1(STG_REGISTER, flt_register_keywords, &flt_kws);
4721
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004722/* Delcate the action parser for "spoe-action" keyword */
4723static struct action_kw_list tcp_req_action_kws = { { }, {
4724 { "send-spoe-group", parse_send_spoe_group },
4725 { /* END */ },
4726 }
4727};
Willy Tarreau0108d902018-11-25 19:14:37 +01004728
4729INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &tcp_req_action_kws);
4730
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004731static struct action_kw_list tcp_res_action_kws = { { }, {
4732 { "send-spoe-group", parse_send_spoe_group },
4733 { /* END */ },
4734 }
4735};
Willy Tarreau0108d902018-11-25 19:14:37 +01004736
4737INITCALL1(STG_REGISTER, tcp_res_cont_keywords_register, &tcp_res_action_kws);
4738
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004739static struct action_kw_list http_req_action_kws = { { }, {
4740 { "send-spoe-group", parse_send_spoe_group },
4741 { /* END */ },
4742 }
4743};
Willy Tarreau0108d902018-11-25 19:14:37 +01004744
4745INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_action_kws);
4746
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004747static struct action_kw_list http_res_action_kws = { { }, {
4748 { "send-spoe-group", parse_send_spoe_group },
4749 { /* END */ },
4750 }
4751};
4752
Willy Tarreau0108d902018-11-25 19:14:37 +01004753INITCALL1(STG_REGISTER, http_res_keywords_register, &http_res_action_kws);