blob: 8694b07a76851280ef0b4f9bb8499aa9e82fd4fd [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>
19#include <common/memory.h>
20#include <common/time.h>
Emeric Bruna1dd2432017-06-21 15:42:52 +020021#include <common/hathreads.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020022
23#include <types/arg.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020024#include <types/global.h>
Christopher Faulet1f40b912017-02-17 09:32:19 +010025#include <types/spoe.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020026
Christopher Faulet57583e42017-09-04 15:41:09 +020027#include <proto/acl.h>
Christopher Faulet76c09ef2017-09-21 11:03:52 +020028#include <proto/action.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020029#include <proto/arg.h>
30#include <proto/backend.h>
31#include <proto/filters.h>
Christopher Faulet48026722016-11-16 15:01:12 +010032#include <proto/freq_ctr.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020033#include <proto/frontend.h>
34#include <proto/log.h>
35#include <proto/proto_http.h>
36#include <proto/proxy.h>
37#include <proto/sample.h>
38#include <proto/session.h>
39#include <proto/signal.h>
Christopher Faulet4ff3e572017-02-24 14:31:11 +010040#include <proto/spoe.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020041#include <proto/stream.h>
42#include <proto/stream_interface.h>
43#include <proto/task.h>
Christopher Faulet76c09ef2017-09-21 11:03:52 +020044#include <proto/tcp_rules.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020045#include <proto/vars.h>
46
47#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
48#define SPOE_PRINTF(x...) fprintf(x)
Christopher Fauletb077cdc2018-01-24 16:37:57 +010049#define SPOE_DEBUG_STMT(statement) statement
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020050#else
51#define SPOE_PRINTF(x...)
Christopher Fauletb077cdc2018-01-24 16:37:57 +010052#define SPOE_DEBUG_STMT(statement)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020053#endif
54
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +010055/* Reserved 4 bytes to the frame size. So a frame and its size can be written
56 * together in a buffer */
57#define MAX_FRAME_SIZE global.tune.bufsize - 4
58
59/* The minimum size for a frame */
60#define MIN_FRAME_SIZE 256
61
Christopher Fauletf51f5fa2017-01-19 10:01:12 +010062/* Reserved for the metadata and the frame type.
63 * So <MAX_FRAME_SIZE> - <FRAME_HDR_SIZE> is the maximum payload size */
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +010064#define FRAME_HDR_SIZE 32
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020065
Christopher Fauletf51f5fa2017-01-19 10:01:12 +010066/* Helper to get SPOE ctx inside an appctx */
Christopher Faulet42bfa462017-01-04 14:14:19 +010067#define SPOE_APPCTX(appctx) ((struct spoe_appctx *)((appctx)->ctx.spoe.ptr))
68
Christopher Faulet3b386a32017-02-23 10:17:15 +010069/* SPOE filter id. Used to identify SPOE filters */
70const char *spoe_filter_id = "SPOE filter";
71
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020072/* Set if the handle on SIGUSR1 is registered */
73static int sighandler_registered = 0;
74
75/* proxy used during the parsing */
76struct proxy *curproxy = NULL;
77
78/* The name of the SPOE engine, used during the parsing */
79char *curengine = NULL;
80
81/* SPOE agent used during the parsing */
Christopher Faulet11610f32017-09-21 10:23:10 +020082/* SPOE agent/group/message used during the parsing */
83struct spoe_agent *curagent = NULL;
84struct spoe_group *curgrp = NULL;
85struct spoe_message *curmsg = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020086
87/* list of SPOE messages and placeholders used during the parsing */
88struct list curmsgs;
Christopher Faulet11610f32017-09-21 10:23:10 +020089struct list curgrps;
90struct list curmphs;
91struct list curgphs;
Christopher Faulet336d3ef2017-12-22 10:00:55 +010092struct list curvars;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020093
Christopher Faulet42bfa462017-01-04 14:14:19 +010094/* Pools used to allocate SPOE structs */
Willy Tarreaubafbe012017-11-24 17:34:44 +010095static struct pool_head *pool_head_spoe_ctx = NULL;
96static struct pool_head *pool_head_spoe_appctx = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020097
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020098struct flt_ops spoe_ops;
99
Christopher Faulet8ef75252017-02-20 22:56:03 +0100100static int spoe_queue_context(struct spoe_context *ctx);
101static int spoe_acquire_buffer(struct buffer **buf, struct buffer_wait *buffer_wait);
102static void spoe_release_buffer(struct buffer **buf, struct buffer_wait *buffer_wait);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200103
104/********************************************************************
105 * helper functions/globals
106 ********************************************************************/
107static void
Christopher Faulet11610f32017-09-21 10:23:10 +0200108spoe_release_placeholder(struct spoe_placeholder *ph)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200109{
Christopher Faulet11610f32017-09-21 10:23:10 +0200110 if (!ph)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200111 return;
Christopher Faulet11610f32017-09-21 10:23:10 +0200112 free(ph->id);
113 free(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200114}
115
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200116static void
Christopher Faulet8ef75252017-02-20 22:56:03 +0100117spoe_release_message(struct spoe_message *msg)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200118{
Christopher Faulet57583e42017-09-04 15:41:09 +0200119 struct spoe_arg *arg, *argback;
120 struct acl *acl, *aclback;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200121
122 if (!msg)
123 return;
124 free(msg->id);
125 free(msg->conf.file);
Christopher Faulet57583e42017-09-04 15:41:09 +0200126 list_for_each_entry_safe(arg, argback, &msg->args, list) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200127 release_sample_expr(arg->expr);
128 free(arg->name);
129 LIST_DEL(&arg->list);
130 free(arg);
131 }
Christopher Faulet57583e42017-09-04 15:41:09 +0200132 list_for_each_entry_safe(acl, aclback, &msg->acls, list) {
133 LIST_DEL(&acl->list);
134 prune_acl(acl);
135 free(acl);
136 }
137 if (msg->cond) {
138 prune_acl_cond(msg->cond);
139 free(msg->cond);
140 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200141 free(msg);
142}
143
144static void
Christopher Faulet11610f32017-09-21 10:23:10 +0200145spoe_release_group(struct spoe_group *grp)
146{
147 if (!grp)
148 return;
149 free(grp->id);
150 free(grp->conf.file);
151 free(grp);
152}
153
154static void
Christopher Faulet8ef75252017-02-20 22:56:03 +0100155spoe_release_agent(struct spoe_agent *agent)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200156{
Christopher Faulet11610f32017-09-21 10:23:10 +0200157 struct spoe_message *msg, *msgback;
158 struct spoe_group *grp, *grpback;
Christopher Faulet24289f22017-09-25 14:48:02 +0200159 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200160
161 if (!agent)
162 return;
163 free(agent->id);
164 free(agent->conf.file);
165 free(agent->var_pfx);
Christopher Fauleta1cda022016-12-21 08:58:06 +0100166 free(agent->engine_id);
Christopher Faulet985532d2016-11-16 15:36:19 +0100167 free(agent->var_on_error);
Christopher Faulet11610f32017-09-21 10:23:10 +0200168 list_for_each_entry_safe(msg, msgback, &agent->messages, list) {
169 LIST_DEL(&msg->list);
170 spoe_release_message(msg);
171 }
172 list_for_each_entry_safe(grp, grpback, &agent->groups, list) {
173 LIST_DEL(&grp->list);
174 spoe_release_group(grp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200175 }
Christopher Faulet24289f22017-09-25 14:48:02 +0200176 for (i = 0; i < global.nbthread; ++i)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100177 HA_SPIN_DESTROY(&agent->rt[i].lock);
Christopher Faulet24289f22017-09-25 14:48:02 +0200178 free(agent->rt);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200179 free(agent);
180}
181
182static const char *spoe_frm_err_reasons[SPOE_FRM_ERRS] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100183 [SPOE_FRM_ERR_NONE] = "normal",
184 [SPOE_FRM_ERR_IO] = "I/O error",
185 [SPOE_FRM_ERR_TOUT] = "a timeout occurred",
186 [SPOE_FRM_ERR_TOO_BIG] = "frame is too big",
187 [SPOE_FRM_ERR_INVALID] = "invalid frame received",
188 [SPOE_FRM_ERR_NO_VSN] = "version value not found",
189 [SPOE_FRM_ERR_NO_FRAME_SIZE] = "max-frame-size value not found",
190 [SPOE_FRM_ERR_NO_CAP] = "capabilities value not found",
191 [SPOE_FRM_ERR_BAD_VSN] = "unsupported version",
192 [SPOE_FRM_ERR_BAD_FRAME_SIZE] = "max-frame-size too big or too small",
193 [SPOE_FRM_ERR_FRAG_NOT_SUPPORTED] = "fragmentation not supported",
194 [SPOE_FRM_ERR_INTERLACED_FRAMES] = "invalid interlaced frames",
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100195 [SPOE_FRM_ERR_FRAMEID_NOTFOUND] = "frame-id not found",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100196 [SPOE_FRM_ERR_RES] = "resource allocation error",
197 [SPOE_FRM_ERR_UNKNOWN] = "an unknown error occurred",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200198};
199
200static const char *spoe_event_str[SPOE_EV_EVENTS] = {
201 [SPOE_EV_ON_CLIENT_SESS] = "on-client-session",
202 [SPOE_EV_ON_TCP_REQ_FE] = "on-frontend-tcp-request",
203 [SPOE_EV_ON_TCP_REQ_BE] = "on-backend-tcp-request",
204 [SPOE_EV_ON_HTTP_REQ_FE] = "on-frontend-http-request",
205 [SPOE_EV_ON_HTTP_REQ_BE] = "on-backend-http-request",
206
207 [SPOE_EV_ON_SERVER_SESS] = "on-server-session",
208 [SPOE_EV_ON_TCP_RSP] = "on-tcp-response",
209 [SPOE_EV_ON_HTTP_RSP] = "on-http-response",
210};
211
212
213#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
214
215static const char *spoe_ctx_state_str[SPOE_CTX_ST_ERROR+1] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100216 [SPOE_CTX_ST_NONE] = "NONE",
217 [SPOE_CTX_ST_READY] = "READY",
218 [SPOE_CTX_ST_ENCODING_MSGS] = "ENCODING_MSGS",
219 [SPOE_CTX_ST_SENDING_MSGS] = "SENDING_MSGS",
220 [SPOE_CTX_ST_WAITING_ACK] = "WAITING_ACK",
221 [SPOE_CTX_ST_DONE] = "DONE",
222 [SPOE_CTX_ST_ERROR] = "ERROR",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200223};
224
225static const char *spoe_appctx_state_str[SPOE_APPCTX_ST_END+1] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100226 [SPOE_APPCTX_ST_CONNECT] = "CONNECT",
227 [SPOE_APPCTX_ST_CONNECTING] = "CONNECTING",
228 [SPOE_APPCTX_ST_IDLE] = "IDLE",
229 [SPOE_APPCTX_ST_PROCESSING] = "PROCESSING",
230 [SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY] = "SENDING_FRAG_NOTIFY",
231 [SPOE_APPCTX_ST_WAITING_SYNC_ACK] = "WAITING_SYNC_ACK",
232 [SPOE_APPCTX_ST_DISCONNECT] = "DISCONNECT",
233 [SPOE_APPCTX_ST_DISCONNECTING] = "DISCONNECTING",
234 [SPOE_APPCTX_ST_EXIT] = "EXIT",
235 [SPOE_APPCTX_ST_END] = "END",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200236};
237
238#endif
Christopher Fauleta1cda022016-12-21 08:58:06 +0100239
Christopher Faulet8ef75252017-02-20 22:56:03 +0100240/* Used to generates a unique id for an engine. On success, it returns a
241 * allocated string. So it is the caller's reponsibility to release it. If the
242 * allocation failed, it returns NULL. */
Christopher Fauleta1cda022016-12-21 08:58:06 +0100243static char *
244generate_pseudo_uuid()
245{
246 static int init = 0;
247
248 const char uuid_fmt[] = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx";
249 const char uuid_chr[] = "0123456789ABCDEF-";
250 char *uuid;
251 int i;
252
253 if ((uuid = calloc(1, sizeof(uuid_fmt))) == NULL)
254 return NULL;
255
256 if (!init) {
257 srand(now_ms);
258 init = 1;
259 }
260
261 for (i = 0; i < sizeof(uuid_fmt)-1; i++) {
262 int r = rand () % 16;
263
264 switch (uuid_fmt[i]) {
265 case 'x' : uuid[i] = uuid_chr[r]; break;
266 case 'y' : uuid[i] = uuid_chr[(r & 0x03) | 0x08]; break;
267 default : uuid[i] = uuid_fmt[i]; break;
268 }
269 }
270 return uuid;
271}
272
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200273/********************************************************************
274 * Functions that encode/decode SPOE frames
275 ********************************************************************/
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200276/* Helper to get static string length, excluding the terminating null byte */
277#define SLEN(str) (sizeof(str)-1)
278
279/* Predefined key used in HELLO/DISCONNECT frames */
280#define SUPPORTED_VERSIONS_KEY "supported-versions"
281#define VERSION_KEY "version"
282#define MAX_FRAME_SIZE_KEY "max-frame-size"
283#define CAPABILITIES_KEY "capabilities"
Christopher Fauleta1cda022016-12-21 08:58:06 +0100284#define ENGINE_ID_KEY "engine-id"
Christopher Fauletba7bc162016-11-07 21:07:38 +0100285#define HEALTHCHECK_KEY "healthcheck"
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200286#define STATUS_CODE_KEY "status-code"
287#define MSG_KEY "message"
288
289struct spoe_version {
290 char *str;
291 int min;
292 int max;
293};
294
295/* All supported versions */
296static struct spoe_version supported_versions[] = {
297 {"1.0", 1000, 1000},
298 {NULL, 0, 0}
299};
300
301/* Comma-separated list of supported versions */
302#define SUPPORTED_VERSIONS_VAL "1.0"
303
Christopher Faulet8ef75252017-02-20 22:56:03 +0100304/* Convert a string to a SPOE version value. The string must follow the format
305 * "MAJOR.MINOR". It will be concerted into the integer (1000 * MAJOR + MINOR).
306 * If an error occurred, -1 is returned. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200307static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100308spoe_str_to_vsn(const char *str, size_t len)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200309{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100310 const char *p, *end;
311 int maj, min, vsn;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200312
Christopher Faulet8ef75252017-02-20 22:56:03 +0100313 p = str;
314 end = str+len;
315 maj = min = 0;
316 vsn = -1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200317
Christopher Faulet8ef75252017-02-20 22:56:03 +0100318 /* skip leading spaces */
319 while (p < end && isspace(*p))
320 p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200321
Christopher Faulet8ef75252017-02-20 22:56:03 +0100322 /* parse Major number, until the '.' */
323 while (*p != '.') {
324 if (p >= end || *p < '0' || *p > '9')
325 goto out;
326 maj *= 10;
327 maj += (*p - '0');
328 p++;
329 }
330
331 /* check Major version */
332 if (!maj)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200333 goto out;
334
Christopher Faulet8ef75252017-02-20 22:56:03 +0100335 p++; /* skip the '.' */
336 if (p >= end || *p < '0' || *p > '9') /* Minor number is missing */
337 goto out;
338
339 /* Parse Minor number */
340 while (p < end) {
341 if (*p < '0' || *p > '9')
342 break;
343 min *= 10;
344 min += (*p - '0');
345 p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200346 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100347
348 /* check Minor number */
349 if (min > 999)
350 goto out;
351
352 /* skip trailing spaces */
353 while (p < end && isspace(*p))
354 p++;
355 if (p != end)
356 goto out;
357
358 vsn = maj * 1000 + min;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200359 out:
360 return vsn;
361}
362
Christopher Faulet8ef75252017-02-20 22:56:03 +0100363/* Encode the HELLO frame sent by HAProxy to an agent. It returns the number of
364 * encoded bytes in the frame on success, 0 if an encoding error occured and -1
365 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200366static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100367spoe_prepare_hahello_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200368{
Christopher Faulet305c6072017-02-23 16:17:53 +0100369 struct chunk *chk;
Christopher Faulet42bfa462017-01-04 14:14:19 +0100370 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100371 char *p, *end;
372 unsigned int flags = SPOE_FRM_FL_FIN;
373 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200374
Christopher Faulet8ef75252017-02-20 22:56:03 +0100375 p = frame;
376 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200377
Christopher Faulet8ef75252017-02-20 22:56:03 +0100378 /* Set Frame type */
379 *p++ = SPOE_FRM_T_HAPROXY_HELLO;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200380
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100381 /* Set flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100382 memcpy(p, (char *)&flags, 4);
383 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200384
385 /* No stream-id and frame-id for HELLO frames */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100386 *p++ = 0; *p++ = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200387
388 /* There are 3 mandatory items: "supported-versions", "max-frame-size"
389 * and "capabilities" */
390
391 /* "supported-versions" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100392 sz = SLEN(SUPPORTED_VERSIONS_KEY);
393 if (spoe_encode_buffer(SUPPORTED_VERSIONS_KEY, sz, &p, end) == -1)
394 goto too_big;
395
396 *p++ = SPOE_DATA_T_STR;
397 sz = SLEN(SUPPORTED_VERSIONS_VAL);
398 if (spoe_encode_buffer(SUPPORTED_VERSIONS_VAL, sz, &p, end) == -1)
399 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200400
401 /* "max-fram-size" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100402 sz = SLEN(MAX_FRAME_SIZE_KEY);
403 if (spoe_encode_buffer(MAX_FRAME_SIZE_KEY, sz, &p, end) == -1)
404 goto too_big;
405
406 *p++ = SPOE_DATA_T_UINT32;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200407 if (encode_varint(SPOE_APPCTX(appctx)->max_frame_size, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100408 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200409
410 /* "capabilities" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100411 sz = SLEN(CAPABILITIES_KEY);
412 if (spoe_encode_buffer(CAPABILITIES_KEY, sz, &p, end) == -1)
413 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200414
Christopher Faulet8ef75252017-02-20 22:56:03 +0100415 *p++ = SPOE_DATA_T_STR;
Christopher Faulet305c6072017-02-23 16:17:53 +0100416 chk = get_trash_chunk();
417 if (agent != NULL && (agent->flags & SPOE_FL_PIPELINING)) {
418 memcpy(chk->str, "pipelining", 10);
419 chk->len += 10;
420 }
421 if (agent != NULL && (agent->flags & SPOE_FL_ASYNC)) {
422 if (chk->len) chk->str[chk->len++] = ',';
423 memcpy(chk->str+chk->len, "async", 5);
424 chk->len += 5;
425 }
Christopher Fauletcecd8522017-02-24 22:11:21 +0100426 if (agent != NULL && (agent->flags & SPOE_FL_RCV_FRAGMENTATION)) {
427 if (chk->len) chk->str[chk->len++] = ',';
428 memcpy(chk->str+chk->len, "fragmentation", 13);
429 chk->len += 5;
430 }
Christopher Faulet305c6072017-02-23 16:17:53 +0100431 if (spoe_encode_buffer(chk->str, chk->len, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100432 goto too_big;
433
434 /* (optionnal) "engine-id" K/V item, if present */
Christopher Fauleta1cda022016-12-21 08:58:06 +0100435 if (agent != NULL && agent->engine_id != NULL) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100436 sz = SLEN(ENGINE_ID_KEY);
437 if (spoe_encode_buffer(ENGINE_ID_KEY, sz, &p, end) == -1)
438 goto too_big;
439
440 *p++ = SPOE_DATA_T_STR;
441 sz = strlen(agent->engine_id);
442 if (spoe_encode_buffer(agent->engine_id, sz, &p, end) == -1)
443 goto too_big;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100444 }
445
Christopher Faulet8ef75252017-02-20 22:56:03 +0100446 return (p - frame);
447
448 too_big:
449 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
450 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200451}
452
Christopher Faulet8ef75252017-02-20 22:56:03 +0100453/* Encode DISCONNECT frame sent by HAProxy to an agent. It returns the number of
454 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
455 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200456static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100457spoe_prepare_hadiscon_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200458{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100459 const char *reason;
460 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100461 unsigned int flags = SPOE_FRM_FL_FIN;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100462 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200463
Christopher Faulet8ef75252017-02-20 22:56:03 +0100464 p = frame;
465 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200466
Christopher Faulet8ef75252017-02-20 22:56:03 +0100467 /* Set Frame type */
468 *p++ = SPOE_FRM_T_HAPROXY_DISCON;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200469
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100470 /* Set flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100471 memcpy(p, (char *)&flags, 4);
472 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200473
474 /* No stream-id and frame-id for DISCONNECT frames */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100475 *p++ = 0; *p++ = 0;
476
477 if (SPOE_APPCTX(appctx)->status_code >= SPOE_FRM_ERRS)
478 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_UNKNOWN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200479
480 /* There are 2 mandatory items: "status-code" and "message" */
481
482 /* "status-code" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100483 sz = SLEN(STATUS_CODE_KEY);
484 if (spoe_encode_buffer(STATUS_CODE_KEY, sz, &p, end) == -1)
485 goto too_big;
486
487 *p++ = SPOE_DATA_T_UINT32;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200488 if (encode_varint(SPOE_APPCTX(appctx)->status_code, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100489 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200490
491 /* "message" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100492 sz = SLEN(MSG_KEY);
493 if (spoe_encode_buffer(MSG_KEY, sz, &p, end) == -1)
494 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200495
Christopher Faulet8ef75252017-02-20 22:56:03 +0100496 /*Get the message corresponding to the status code */
497 reason = spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code];
498
499 *p++ = SPOE_DATA_T_STR;
500 sz = strlen(reason);
501 if (spoe_encode_buffer(reason, sz, &p, end) == -1)
502 goto too_big;
503
504 return (p - frame);
505
506 too_big:
507 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
508 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200509}
510
Christopher Faulet8ef75252017-02-20 22:56:03 +0100511/* Encode the NOTIFY frame sent by HAProxy to an agent. It returns the number of
512 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
513 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200514static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100515spoe_prepare_hanotify_frame(struct appctx *appctx, struct spoe_context *ctx,
Christopher Fauleta1cda022016-12-21 08:58:06 +0100516 char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200517{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100518 char *p, *end;
519 unsigned int stream_id, frame_id;
520 unsigned int flags = SPOE_FRM_FL_FIN;
521 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200522
Christopher Faulet8ef75252017-02-20 22:56:03 +0100523 p = frame;
524 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200525
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100526 stream_id = ctx->stream_id;
527 frame_id = ctx->frame_id;
528
529 if (ctx->flags & SPOE_CTX_FL_FRAGMENTED) {
530 /* The fragmentation is not supported by the applet */
531 if (!(SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_FRAGMENTATION)) {
532 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
533 return -1;
534 }
535 flags = ctx->frag_ctx.flags;
536 }
537
538 /* Set Frame type */
539 *p++ = SPOE_FRM_T_HAPROXY_NOTIFY;
540
541 /* Set flags */
542 memcpy(p, (char *)&flags, 4);
543 p += 4;
544
545 /* Set stream-id and frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200546 if (encode_varint(stream_id, &p, end) == -1)
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100547 goto too_big;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200548 if (encode_varint(frame_id, &p, end) == -1)
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100549 goto too_big;
550
551 /* Copy encoded messages, if possible */
552 sz = ctx->buffer->i;
553 if (p + sz >= end)
554 goto too_big;
555 memcpy(p, ctx->buffer->p, sz);
556 p += sz;
557
558 return (p - frame);
559
560 too_big:
561 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
562 return 0;
563}
564
565/* Encode next part of a fragmented frame sent by HAProxy to an agent. It
566 * returns the number of encoded bytes in the frame on success, 0 if an encoding
567 * error occurred and -1 if a fatal error occurred. */
568static int
569spoe_prepare_hafrag_frame(struct appctx *appctx, struct spoe_context *ctx,
570 char *frame, size_t size)
571{
572 char *p, *end;
573 unsigned int stream_id, frame_id;
574 unsigned int flags;
575 size_t sz;
576
577 p = frame;
578 end = frame+size;
579
Christopher Faulet8ef75252017-02-20 22:56:03 +0100580 /* <ctx> is null when the stream has aborted the processing of a
581 * fragmented frame. In this case, we must notify the corresponding
582 * agent using ids stored in <frag_ctx>. */
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100583 if (ctx == NULL) {
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100584 flags = (SPOE_FRM_FL_FIN|SPOE_FRM_FL_ABRT);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100585 stream_id = SPOE_APPCTX(appctx)->frag_ctx.cursid;
586 frame_id = SPOE_APPCTX(appctx)->frag_ctx.curfid;
587 }
588 else {
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100589 flags = ctx->frag_ctx.flags;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100590 stream_id = ctx->stream_id;
591 frame_id = ctx->frame_id;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100592 }
593
Christopher Faulet8ef75252017-02-20 22:56:03 +0100594 /* Set Frame type */
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100595 *p++ = SPOE_FRM_T_UNSET;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100596
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100597 /* Set flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100598 memcpy(p, (char *)&flags, 4);
599 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200600
601 /* Set stream-id and frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200602 if (encode_varint(stream_id, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100603 goto too_big;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200604 if (encode_varint(frame_id, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100605 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200606
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100607 if (ctx == NULL)
608 goto end;
609
Christopher Faulet8ef75252017-02-20 22:56:03 +0100610 /* Copy encoded messages, if possible */
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100611 sz = ctx->buffer->i;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100612 if (p + sz >= end)
613 goto too_big;
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100614 memcpy(p, ctx->buffer->p, sz);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100615 p += sz;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100616
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100617 end:
Christopher Faulet8ef75252017-02-20 22:56:03 +0100618 return (p - frame);
619
620 too_big:
621 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
622 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200623}
624
Christopher Faulet8ef75252017-02-20 22:56:03 +0100625/* Decode and process the HELLO frame sent by an agent. It returns the number of
626 * read bytes on success, 0 if a decoding error occurred, and -1 if a fatal
627 * error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200628static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100629spoe_handle_agenthello_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200630{
Christopher Faulet305c6072017-02-23 16:17:53 +0100631 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
632 char *p, *end;
633 int vsn, max_frame_size;
634 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100635
636 p = frame;
637 end = frame + size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200638
639 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100640 if (*p++ != SPOE_FRM_T_AGENT_HELLO) {
641 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200642 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100643 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200644
Christopher Faulet8ef75252017-02-20 22:56:03 +0100645 if (size < 7 /* TYPE + METADATA */) {
646 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
647 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200648 }
649
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100650 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100651 memcpy((char *)&flags, p, 4);
652 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200653
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100654 /* Fragmentation is not supported for HELLO frame */
655 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100656 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100657 return -1;
658 }
659
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200660 /* stream-id and frame-id must be cleared */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100661 if (*p != 0 || *(p+1) != 0) {
662 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
663 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200664 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100665 p += 2;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200666
667 /* There are 3 mandatory items: "version", "max-frame-size" and
668 * "capabilities" */
669
670 /* Loop on K/V items */
Christopher Fauleta1cda022016-12-21 08:58:06 +0100671 vsn = max_frame_size = flags = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100672 while (p < end) {
673 char *str;
Frédéric Lécaille6ca71a92017-08-22 10:33:14 +0200674 uint64_t sz;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100675 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200676
677 /* Decode the item key */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100678 ret = spoe_decode_buffer(&p, end, &str, &sz);
679 if (ret == -1 || !sz) {
680 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
681 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200682 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100683
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200684 /* Check "version" K/V item */
685 if (!memcmp(str, VERSION_KEY, sz)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100686 int i, type = *p++;
687
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200688 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100689 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
690 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
691 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200692 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100693 if (spoe_decode_buffer(&p, end, &str, &sz) == -1) {
694 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
695 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200696 }
697
Christopher Faulet8ef75252017-02-20 22:56:03 +0100698 vsn = spoe_str_to_vsn(str, sz);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200699 if (vsn == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100700 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200701 return -1;
702 }
703 for (i = 0; supported_versions[i].str != NULL; ++i) {
704 if (vsn >= supported_versions[i].min &&
705 vsn <= supported_versions[i].max)
706 break;
707 }
708 if (supported_versions[i].str == NULL) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100709 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200710 return -1;
711 }
712 }
713 /* Check "max-frame-size" K/V item */
714 else if (!memcmp(str, MAX_FRAME_SIZE_KEY, sz)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100715 int type = *p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200716
717 /* The value must be integer */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200718 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT32 &&
719 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT64 &&
720 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT32 &&
721 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT64) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100722 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
723 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200724 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200725 if (decode_varint(&p, end, &sz) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100726 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
727 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200728 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100729 if (sz < MIN_FRAME_SIZE ||
730 sz > SPOE_APPCTX(appctx)->max_frame_size) {
731 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_FRAME_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200732 return -1;
733 }
734 max_frame_size = sz;
735 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100736 /* Check "capabilities" K/V item */
737 else if (!memcmp(str, CAPABILITIES_KEY, sz)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100738 int type = *p++;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100739
740 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100741 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
742 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
743 return 0;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100744 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100745 if (spoe_decode_buffer(&p, end, &str, &sz) == -1) {
746 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
747 return 0;
748 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100749
Christopher Faulet8ef75252017-02-20 22:56:03 +0100750 while (sz) {
Christopher Fauleta1cda022016-12-21 08:58:06 +0100751 char *delim;
752
753 /* Skip leading spaces */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100754 for (; isspace(*str) && sz; str++, sz--);
Christopher Fauleta1cda022016-12-21 08:58:06 +0100755
Christopher Faulet8ef75252017-02-20 22:56:03 +0100756 if (sz >= 10 && !strncmp(str, "pipelining", 10)) {
757 str += 10; sz -= 10;
758 if (!sz || isspace(*str) || *str == ',')
Christopher Fauleta1cda022016-12-21 08:58:06 +0100759 flags |= SPOE_APPCTX_FL_PIPELINING;
760 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100761 else if (sz >= 5 && !strncmp(str, "async", 5)) {
762 str += 5; sz -= 5;
763 if (!sz || isspace(*str) || *str == ',')
Christopher Fauleta1cda022016-12-21 08:58:06 +0100764 flags |= SPOE_APPCTX_FL_ASYNC;
765 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100766 else if (sz >= 13 && !strncmp(str, "fragmentation", 13)) {
767 str += 13; sz -= 13;
768 if (!sz || isspace(*str) || *str == ',')
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100769 flags |= SPOE_APPCTX_FL_FRAGMENTATION;
770 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100771
Christopher Faulet8ef75252017-02-20 22:56:03 +0100772 /* Get the next comma or break */
773 if (!sz || (delim = memchr(str, ',', sz)) == NULL)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100774 break;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100775 delim++;
776 sz -= (delim - str);
777 str = delim;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100778 }
779 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200780 else {
781 /* Silently ignore unknown item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100782 if (spoe_skip_data(&p, end) == -1) {
783 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
784 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200785 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200786 }
787 }
788
789 /* Final checks */
790 if (!vsn) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100791 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NO_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200792 return -1;
793 }
794 if (!max_frame_size) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100795 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NO_FRAME_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200796 return -1;
797 }
Christopher Faulet305c6072017-02-23 16:17:53 +0100798 if ((flags & SPOE_APPCTX_FL_PIPELINING) && !(agent->flags & SPOE_FL_PIPELINING))
799 flags &= ~SPOE_APPCTX_FL_PIPELINING;
800 if ((flags & SPOE_APPCTX_FL_ASYNC) && !(agent->flags & SPOE_FL_ASYNC))
801 flags &= ~SPOE_APPCTX_FL_ASYNC;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200802
Christopher Faulet42bfa462017-01-04 14:14:19 +0100803 SPOE_APPCTX(appctx)->version = (unsigned int)vsn;
804 SPOE_APPCTX(appctx)->max_frame_size = (unsigned int)max_frame_size;
805 SPOE_APPCTX(appctx)->flags |= flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100806
807 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200808}
809
810/* Decode DISCONNECT frame sent by an agent. It returns the number of by read
811 * bytes on success, 0 if the frame can be ignored and -1 if an error
812 * occurred. */
813static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100814spoe_handle_agentdiscon_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200815{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100816 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100817 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100818
819 p = frame;
820 end = frame + size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200821
822 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100823 if (*p++ != SPOE_FRM_T_AGENT_DISCON) {
824 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200825 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100826 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200827
Christopher Faulet8ef75252017-02-20 22:56:03 +0100828 if (size < 7 /* TYPE + METADATA */) {
829 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
830 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200831 }
832
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100833 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100834 memcpy((char *)&flags, p, 4);
835 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200836
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100837 /* Fragmentation is not supported for DISCONNECT frame */
838 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100839 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100840 return -1;
841 }
842
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200843 /* stream-id and frame-id must be cleared */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100844 if (*p != 0 || *(p+1) != 0) {
845 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
846 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200847 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100848 p += 2;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200849
850 /* There are 2 mandatory items: "status-code" and "message" */
851
852 /* Loop on K/V items */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100853 while (p < end) {
854 char *str;
Frédéric Lécaille6ca71a92017-08-22 10:33:14 +0200855 uint64_t sz;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100856 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200857
858 /* Decode the item key */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100859 ret = spoe_decode_buffer(&p, end, &str, &sz);
860 if (ret == -1 || !sz) {
861 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
862 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200863 }
864
865 /* Check "status-code" K/V item */
866 if (!memcmp(str, STATUS_CODE_KEY, sz)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100867 int type = *p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200868
869 /* The value must be an integer */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200870 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT32 &&
871 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT64 &&
872 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT32 &&
873 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT64) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100874 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
875 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200876 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200877 if (decode_varint(&p, end, &sz) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100878 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
879 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200880 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100881 SPOE_APPCTX(appctx)->status_code = sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200882 }
883
884 /* Check "message" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100885 else if (!memcmp(str, MSG_KEY, sz)) {
886 int type = *p++;
887
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200888 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100889 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
890 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
891 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200892 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100893 ret = spoe_decode_buffer(&p, end, &str, &sz);
894 if (ret == -1 || sz > 255) {
895 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
896 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200897 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100898#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
899 SPOE_APPCTX(appctx)->reason = str;
900 SPOE_APPCTX(appctx)->rlen = sz;
901#endif
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200902 }
903 else {
904 /* Silently ignore unknown item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100905 if (spoe_skip_data(&p, end) == -1) {
906 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
907 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200908 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200909 }
910 }
911
Christopher Faulet8ef75252017-02-20 22:56:03 +0100912 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200913}
914
915
Christopher Fauleta1cda022016-12-21 08:58:06 +0100916/* Decode ACK frame sent by an agent. It returns the number of read bytes on
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200917 * success, 0 if the frame can be ignored and -1 if an error occurred. */
918static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100919spoe_handle_agentack_frame(struct appctx *appctx, struct spoe_context **ctx,
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100920 char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200921{
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100922 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100923 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100924 uint64_t stream_id, frame_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100925 int len;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100926 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100927
928 p = frame;
929 end = frame + size;
930 *ctx = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200931
932 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100933 if (*p++ != SPOE_FRM_T_AGENT_ACK) {
934 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200935 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100936 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200937
Christopher Faulet8ef75252017-02-20 22:56:03 +0100938 if (size < 7 /* TYPE + METADATA */) {
939 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
940 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200941 }
942
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100943 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100944 memcpy((char *)&flags, p, 4);
945 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200946
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100947 /* Fragmentation is not supported for now */
948 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100949 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100950 return -1;
951 }
952
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200953 /* Get the stream-id and the frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200954 if (decode_varint(&p, end, &stream_id) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100955 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100956 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100957 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200958 if (decode_varint(&p, end, &frame_id) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100959 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200960 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100961 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100962
Christopher Faulet8ef75252017-02-20 22:56:03 +0100963 /* Try to find the corresponding SPOE context */
Christopher Faulet42bfa462017-01-04 14:14:19 +0100964 if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_ASYNC) {
Christopher Faulet24289f22017-09-25 14:48:02 +0200965 list_for_each_entry((*ctx), &agent->rt[tid].waiting_queue, list) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100966 if ((*ctx)->stream_id == (unsigned int)stream_id &&
967 (*ctx)->frame_id == (unsigned int)frame_id)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100968 goto found;
969 }
970 }
971 else {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100972 list_for_each_entry((*ctx), &SPOE_APPCTX(appctx)->waiting_queue, list) {
973 if ((*ctx)->stream_id == (unsigned int)stream_id &&
Christopher Faulet8ef75252017-02-20 22:56:03 +0100974 (*ctx)->frame_id == (unsigned int)frame_id)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100975 goto found;
976 }
977 }
978
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100979 if (SPOE_APPCTX(appctx)->frag_ctx.ctx &&
980 SPOE_APPCTX(appctx)->frag_ctx.cursid == (unsigned int)stream_id &&
981 SPOE_APPCTX(appctx)->frag_ctx.curfid == (unsigned int)frame_id) {
982
983 /* ABRT bit is set for an unfinished fragmented frame */
984 if (flags & SPOE_FRM_FL_ABRT) {
985 *ctx = SPOE_APPCTX(appctx)->frag_ctx.ctx;
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100986 (*ctx)->state = SPOE_CTX_ST_ERROR;
987 (*ctx)->status_code = SPOE_CTX_ERR_FRAG_FRAME_ABRT;
988 /* Ignore the payload */
989 goto end;
990 }
991 /* TODO: Handle more flags for fragmented frames: RESUME, FINISH... */
992 /* For now, we ignore the ack */
993 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
994 return 0;
995 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100996
Christopher Fauleta1cda022016-12-21 08:58:06 +0100997 /* No Stream found, ignore the frame */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100998 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
999 " - Ignore ACK frame"
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001000 " - stream-id=%u - frame-id=%u\n",
1001 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1002 __FUNCTION__, appctx,
1003 (unsigned int)stream_id, (unsigned int)frame_id);
1004
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001005 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAMEID_NOTFOUND;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001006 return 0;
1007
1008 found:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001009 if (!spoe_acquire_buffer(&SPOE_APPCTX(appctx)->buffer,
1010 &SPOE_APPCTX(appctx)->buffer_wait)) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001011 *ctx = NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001012 return 1; /* Retry later */
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001013 }
Christopher Faulet4596fb72017-01-11 14:05:19 +01001014
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001015 /* Copy encoded actions */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001016 len = (end - p);
1017 memcpy(SPOE_APPCTX(appctx)->buffer->p, p, len);
1018 SPOE_APPCTX(appctx)->buffer->i = len;
1019 p += len;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001020
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001021 /* Transfer the buffer ownership to the SPOE context */
1022 (*ctx)->buffer = SPOE_APPCTX(appctx)->buffer;
1023 SPOE_APPCTX(appctx)->buffer = &buf_empty;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001024
Christopher Faulet8ef75252017-02-20 22:56:03 +01001025 (*ctx)->state = SPOE_CTX_ST_DONE;
1026
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001027 end:
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001028 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01001029 " - ACK frame received"
1030 " - ctx=%p - stream-id=%u - frame-id=%u - flags=0x%08x\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001031 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001032 __FUNCTION__, appctx, *ctx, (*ctx)->stream_id,
1033 (*ctx)->frame_id, flags);
1034 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001035}
1036
Christopher Fauletba7bc162016-11-07 21:07:38 +01001037/* This function is used in cfgparse.c and declared in proto/checks.h. It
1038 * prepare the request to send to agents during a healthcheck. It returns 0 on
1039 * success and -1 if an error occurred. */
1040int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001041spoe_prepare_healthcheck_request(char **req, int *len)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001042{
Christopher Faulet8ef75252017-02-20 22:56:03 +01001043 struct appctx appctx;
1044 struct spoe_appctx spoe_appctx;
1045 char *frame, *end, buf[MAX_FRAME_SIZE+4];
1046 size_t sz;
1047 int ret;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001048
Christopher Faulet42bfa462017-01-04 14:14:19 +01001049 memset(&appctx, 0, sizeof(appctx));
1050 memset(&spoe_appctx, 0, sizeof(spoe_appctx));
Christopher Fauletba7bc162016-11-07 21:07:38 +01001051 memset(buf, 0, sizeof(buf));
Christopher Faulet42bfa462017-01-04 14:14:19 +01001052
1053 appctx.ctx.spoe.ptr = &spoe_appctx;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001054 SPOE_APPCTX(&appctx)->max_frame_size = MAX_FRAME_SIZE;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001055
Christopher Faulet8ef75252017-02-20 22:56:03 +01001056 frame = buf+4; /* Reserved the 4 first bytes for the frame size */
1057 end = frame + MAX_FRAME_SIZE;
1058
1059 ret = spoe_prepare_hahello_frame(&appctx, frame, MAX_FRAME_SIZE);
1060 if (ret <= 0)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001061 return -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001062 frame += ret;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001063
Christopher Faulet8ef75252017-02-20 22:56:03 +01001064 /* Add "healthcheck" K/V item */
1065 sz = SLEN(HEALTHCHECK_KEY);
1066 if (spoe_encode_buffer(HEALTHCHECK_KEY, sz, &frame, end) == -1)
1067 return -1;
1068 *frame++ = (SPOE_DATA_T_BOOL | SPOE_DATA_FL_TRUE);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001069
Christopher Faulet8ef75252017-02-20 22:56:03 +01001070 *len = frame - buf;
1071 sz = htonl(*len - 4);
1072 memcpy(buf, (char *)&sz, 4);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001073
Christopher Faulet8ef75252017-02-20 22:56:03 +01001074 if ((*req = malloc(*len)) == NULL)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001075 return -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001076 memcpy(*req, buf, *len);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001077 return 0;
1078}
1079
1080/* This function is used in checks.c and declared in proto/checks.h. It decode
1081 * the response received from an agent during a healthcheck. It returns 0 on
1082 * success and -1 if an error occurred. */
1083int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001084spoe_handle_healthcheck_response(char *frame, size_t size, char *err, int errlen)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001085{
Christopher Faulet42bfa462017-01-04 14:14:19 +01001086 struct appctx appctx;
1087 struct spoe_appctx spoe_appctx;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001088
Christopher Faulet42bfa462017-01-04 14:14:19 +01001089 memset(&appctx, 0, sizeof(appctx));
1090 memset(&spoe_appctx, 0, sizeof(spoe_appctx));
Christopher Fauletba7bc162016-11-07 21:07:38 +01001091
Christopher Faulet42bfa462017-01-04 14:14:19 +01001092 appctx.ctx.spoe.ptr = &spoe_appctx;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001093 SPOE_APPCTX(&appctx)->max_frame_size = MAX_FRAME_SIZE;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001094
Christopher Faulet8ef75252017-02-20 22:56:03 +01001095 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1096 spoe_handle_agentdiscon_frame(&appctx, frame, size);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001097 goto error;
1098 }
Christopher Faulet8ef75252017-02-20 22:56:03 +01001099 if (spoe_handle_agenthello_frame(&appctx, frame, size) <= 0)
1100 goto error;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001101
1102 return 0;
1103
1104 error:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001105 if (SPOE_APPCTX(&appctx)->status_code >= SPOE_FRM_ERRS)
1106 SPOE_APPCTX(&appctx)->status_code = SPOE_FRM_ERR_UNKNOWN;
1107 strncpy(err, spoe_frm_err_reasons[SPOE_APPCTX(&appctx)->status_code], errlen);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001108 return -1;
1109}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001110
Christopher Fauleta1cda022016-12-21 08:58:06 +01001111/* Send a SPOE frame to an agent. It returns -1 when an error occurred, 0 when
1112 * the frame can be ignored, 1 to retry later, and the frame legnth on
1113 * success. */
1114static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001115spoe_send_frame(struct appctx *appctx, char *buf, size_t framesz)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001116{
1117 struct stream_interface *si = appctx->owner;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001118 int ret;
1119 uint32_t netint;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001120
Christopher Faulet8ef75252017-02-20 22:56:03 +01001121 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1122 * length. */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001123 netint = htonl(framesz);
1124 memcpy(buf, (char *)&netint, 4);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001125 ret = ci_putblk(si_ic(si), buf, framesz+4);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001126 if (ret <= 0) {
Christopher Fauletd5216d42018-02-01 08:45:22 +01001127 if ((ret == -3 && si_ic(si)->buf == &buf_empty) || ret == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001128 retry:
1129 si_applet_cant_put(si);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001130 return 1; /* retry */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001131 }
1132 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001133 return -1; /* error */
1134 }
1135 return framesz;
1136}
1137
1138/* Receive a SPOE frame from an agent. It return -1 when an error occurred, 0
1139 * when the frame can be ignored, 1 to retry later and the frame length on
1140 * success. */
1141static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001142spoe_recv_frame(struct appctx *appctx, char *buf, size_t framesz)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001143{
1144 struct stream_interface *si = appctx->owner;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001145 int ret;
1146 uint32_t netint;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001147
Willy Tarreau06d80a92017-10-19 14:32:15 +02001148 ret = co_getblk(si_oc(si), (char *)&netint, 4, 0);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001149 if (ret > 0) {
1150 framesz = ntohl(netint);
Christopher Faulet42bfa462017-01-04 14:14:19 +01001151 if (framesz > SPOE_APPCTX(appctx)->max_frame_size) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001152 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001153 return -1;
1154 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02001155 ret = co_getblk(si_oc(si), buf, framesz, 4);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001156 }
1157 if (ret <= 0) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001158 if (ret == 0) {
1159 retry:
Christopher Fauleta1cda022016-12-21 08:58:06 +01001160 return 1; /* retry */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001161 }
1162 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001163 return -1; /* error */
1164 }
1165 return framesz;
1166}
1167
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001168/********************************************************************
1169 * Functions that manage the SPOE applet
1170 ********************************************************************/
Christopher Faulet4596fb72017-01-11 14:05:19 +01001171static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001172spoe_wakeup_appctx(struct appctx *appctx)
Christopher Faulet4596fb72017-01-11 14:05:19 +01001173{
1174 si_applet_want_get(appctx->owner);
1175 si_applet_want_put(appctx->owner);
1176 appctx_wakeup(appctx);
1177 return 1;
1178}
1179
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001180/* Callback function that catches applet timeouts. If a timeout occurred, we set
1181 * <appctx->st1> flag and the SPOE applet is woken up. */
1182static struct task *
Christopher Faulet8ef75252017-02-20 22:56:03 +01001183spoe_process_appctx(struct task * task)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001184{
1185 struct appctx *appctx = task->context;
1186
1187 appctx->st1 = SPOE_APPCTX_ERR_NONE;
1188 if (tick_is_expired(task->expire, now_ms)) {
1189 task->expire = TICK_ETERNITY;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001190 appctx->st1 = SPOE_APPCTX_ERR_TOUT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001191 }
Christopher Faulet8ef75252017-02-20 22:56:03 +01001192 spoe_wakeup_appctx(appctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001193 return task;
1194}
1195
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001196/* Callback function that releases a SPOE applet. This happens when the
1197 * connection with the agent is closed. */
1198static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01001199spoe_release_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001200{
Christopher Faulet8ef75252017-02-20 22:56:03 +01001201 struct stream_interface *si = appctx->owner;
1202 struct spoe_appctx *spoe_appctx = SPOE_APPCTX(appctx);
1203 struct spoe_agent *agent;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001204 struct spoe_context *ctx, *back;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001205
1206 if (spoe_appctx == NULL)
1207 return;
1208
1209 appctx->ctx.spoe.ptr = NULL;
1210 agent = spoe_appctx->agent;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001211
1212 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p\n",
1213 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1214 __FUNCTION__, appctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001215
Christopher Faulet8ef75252017-02-20 22:56:03 +01001216 /* Remove applet from the list of running applets */
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001217 SPOE_DEBUG_STMT(agent->rt[tid].applets_act--);
1218 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001219 if (!LIST_ISEMPTY(&spoe_appctx->list)) {
1220 LIST_DEL(&spoe_appctx->list);
1221 LIST_INIT(&spoe_appctx->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001222 }
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001223 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001224
Christopher Faulet8ef75252017-02-20 22:56:03 +01001225 /* Shutdown the server connection, if needed */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001226 if (appctx->st0 != SPOE_APPCTX_ST_END) {
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001227 if (appctx->st0 == SPOE_APPCTX_ST_IDLE) {
1228 eb32_delete(&spoe_appctx->node);
1229 SPOE_DEBUG_STMT(agent->rt[tid].applets_idle--);
1230 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001231
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001232 appctx->st0 = SPOE_APPCTX_ST_END;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001233 if (spoe_appctx->status_code == SPOE_FRM_ERR_NONE)
1234 spoe_appctx->status_code = SPOE_FRM_ERR_IO;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001235
1236 si_shutw(si);
1237 si_shutr(si);
1238 si_ic(si)->flags |= CF_READ_NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001239 }
1240
Christopher Faulet8ef75252017-02-20 22:56:03 +01001241 /* Destroy the task attached to this applet */
1242 if (spoe_appctx->task) {
1243 task_delete(spoe_appctx->task);
1244 task_free(spoe_appctx->task);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001245 }
1246
Christopher Faulet8ef75252017-02-20 22:56:03 +01001247 /* Notify all waiting streams */
1248 list_for_each_entry_safe(ctx, back, &spoe_appctx->waiting_queue, list) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01001249 LIST_DEL(&ctx->list);
1250 LIST_INIT(&ctx->list);
1251 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001252 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001253 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001254 }
1255
Christopher Faulet8ef75252017-02-20 22:56:03 +01001256 /* If the applet was processing a fragmented frame, notify the
1257 * corresponding stream. */
1258 if (spoe_appctx->frag_ctx.ctx) {
1259 ctx = spoe_appctx->frag_ctx.ctx;
Christopher Fauletfce747b2018-01-24 15:59:32 +01001260 ctx->spoe_appctx = NULL;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001261 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001262 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001263 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1264 }
1265
Christopher Faulet8ef75252017-02-20 22:56:03 +01001266 /* Release allocated memory */
1267 spoe_release_buffer(&spoe_appctx->buffer,
1268 &spoe_appctx->buffer_wait);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001269 pool_free(pool_head_spoe_appctx, spoe_appctx);
Christopher Faulet42bfa462017-01-04 14:14:19 +01001270
Christopher Faulet24289f22017-09-25 14:48:02 +02001271 if (!LIST_ISEMPTY(&agent->rt[tid].applets))
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001272 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001273
Christopher Faulet8ef75252017-02-20 22:56:03 +01001274 /* If this was the last running applet, notify all waiting streams */
Christopher Faulet24289f22017-09-25 14:48:02 +02001275 list_for_each_entry_safe(ctx, back, &agent->rt[tid].sending_queue, list) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01001276 LIST_DEL(&ctx->list);
1277 LIST_INIT(&ctx->list);
1278 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001279 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001280 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001281 }
Christopher Faulet24289f22017-09-25 14:48:02 +02001282 list_for_each_entry_safe(ctx, back, &agent->rt[tid].waiting_queue, list) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01001283 LIST_DEL(&ctx->list);
1284 LIST_INIT(&ctx->list);
1285 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001286 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001287 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1288 }
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001289
1290 end:
1291 /* Update runtinme agent info */
Christopher Faulet24289f22017-09-25 14:48:02 +02001292 agent->rt[tid].frame_size = agent->max_frame_size;
1293 list_for_each_entry(spoe_appctx, &agent->rt[tid].applets, list)
1294 HA_ATOMIC_UPDATE_MIN(&agent->rt[tid].frame_size, spoe_appctx->max_frame_size);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001295}
1296
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001297static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001298spoe_handle_connect_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001299{
Christopher Fauleta1cda022016-12-21 08:58:06 +01001300 struct stream_interface *si = appctx->owner;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001301 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001302 char *frame, *buf;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001303 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001304
Christopher Fauleta1cda022016-12-21 08:58:06 +01001305 if (si->state <= SI_ST_CON) {
1306 si_applet_want_put(si);
1307 task_wakeup(si_strm(si)->task, TASK_WOKEN_MSG);
1308 goto stop;
1309 }
Christopher Fauletb067b062017-01-04 16:39:11 +01001310 if (si->state != SI_ST_EST) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001311 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001312 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001313 }
Christopher Fauleta73e59b2016-12-09 17:30:18 +01001314
Christopher Fauleta1cda022016-12-21 08:58:06 +01001315 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001316 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1317 " - Connection timed out\n",
1318 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1319 __FUNCTION__, appctx);
1320 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001321 goto exit;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001322 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001323
Christopher Faulet42bfa462017-01-04 14:14:19 +01001324 if (SPOE_APPCTX(appctx)->task->expire == TICK_ETERNITY)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001325 SPOE_APPCTX(appctx)->task->expire =
1326 tick_add_ifset(now_ms, agent->timeout.hello);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001327
Christopher Faulet8ef75252017-02-20 22:56:03 +01001328 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1329 * length. */
1330 buf = trash.str; frame = buf+4;
1331 ret = spoe_prepare_hahello_frame(appctx, frame,
1332 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001333 if (ret > 1)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001334 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001335
1336 switch (ret) {
1337 case -1: /* error */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001338 case 0: /* ignore => an error, cannot be ignored */
1339 goto exit;
1340
1341 case 1: /* retry later */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001342 goto stop;
1343
Christopher Faulet8ef75252017-02-20 22:56:03 +01001344 default:
1345 /* HELLO frame successfully sent, now wait for the
1346 * reply. */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001347 appctx->st0 = SPOE_APPCTX_ST_CONNECTING;
1348 goto next;
1349 }
1350
1351 next:
1352 return 0;
1353 stop:
1354 return 1;
1355 exit:
1356 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1357 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001358}
1359
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001360static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001361spoe_handle_connecting_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001362{
Christopher Fauleta1cda022016-12-21 08:58:06 +01001363 struct stream_interface *si = appctx->owner;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001364 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001365 char *frame;
1366 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001367
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001368
Christopher Fauletb067b062017-01-04 16:39:11 +01001369 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001370 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001371 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001372 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001373
Christopher Fauleta1cda022016-12-21 08:58:06 +01001374 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001375 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1376 " - Connection timed out\n",
1377 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1378 __FUNCTION__, appctx);
1379 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001380 goto exit;
1381 }
1382
Christopher Faulet8ef75252017-02-20 22:56:03 +01001383 frame = trash.str; trash.len = 0;
1384 ret = spoe_recv_frame(appctx, frame,
1385 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001386 if (ret > 1) {
1387 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1388 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
1389 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001390 }
Christopher Faulet8ef75252017-02-20 22:56:03 +01001391 trash.len = ret + 4;
1392 ret = spoe_handle_agenthello_frame(appctx, frame, ret);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001393 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001394
Christopher Fauleta1cda022016-12-21 08:58:06 +01001395 switch (ret) {
1396 case -1: /* error */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001397 case 0: /* ignore => an error, cannot be ignored */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001398 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1399 goto next;
1400
1401 case 1: /* retry later */
1402 goto stop;
1403
1404 default:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001405 /* HELLO handshake is finished, set the idle timeout and
1406 * add the applet in the list of running applets. */
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001407 SPOE_DEBUG_STMT(agent->rt[tid].applets_idle++);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001408 appctx->st0 = SPOE_APPCTX_ST_IDLE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001409 SPOE_APPCTX(appctx)->node.key = 0;
1410 eb32_insert(&agent->rt[tid].idle_applets, &SPOE_APPCTX(appctx)->node);
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001411
1412 /* Update runtinme agent info */
Christopher Faulet24289f22017-09-25 14:48:02 +02001413 HA_ATOMIC_UPDATE_MIN(&agent->rt[tid].frame_size, SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001414 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001415 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001416
Christopher Fauleta1cda022016-12-21 08:58:06 +01001417 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001418 /* Do not forget to remove processed frame from the output buffer */
1419 if (trash.len)
Willy Tarreau06d80a92017-10-19 14:32:15 +02001420 co_skip(si_oc(si), trash.len);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001421
1422 SPOE_APPCTX(appctx)->task->expire =
1423 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001424 return 0;
1425 stop:
1426 return 1;
1427 exit:
1428 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1429 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001430}
1431
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001432
Christopher Fauleta1cda022016-12-21 08:58:06 +01001433static int
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001434spoe_handle_sending_frame_appctx(struct appctx *appctx, int *skip)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001435{
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001436 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
1437 struct spoe_context *ctx = NULL;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001438 char *frame, *buf;
1439 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001440
Christopher Faulet8ef75252017-02-20 22:56:03 +01001441 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1442 * length. */
1443 buf = trash.str; frame = buf+4;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001444
1445 if (appctx->st0 == SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY) {
1446 ctx = SPOE_APPCTX(appctx)->frag_ctx.ctx;
1447 ret = spoe_prepare_hafrag_frame(appctx, ctx, frame,
1448 SPOE_APPCTX(appctx)->max_frame_size);
1449 }
Christopher Faulet24289f22017-09-25 14:48:02 +02001450 else if (LIST_ISEMPTY(&agent->rt[tid].sending_queue)) {
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001451 *skip = 1;
1452 ret = 1;
1453 goto end;
1454 }
1455 else {
Christopher Faulet24289f22017-09-25 14:48:02 +02001456 ctx = LIST_NEXT(&agent->rt[tid].sending_queue, typeof(ctx), list);
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001457 ret = spoe_prepare_hanotify_frame(appctx, ctx, frame,
1458 SPOE_APPCTX(appctx)->max_frame_size);
1459
1460 }
1461
Christopher Faulet8ef75252017-02-20 22:56:03 +01001462 if (ret > 1)
1463 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001464
Christopher Faulet8ef75252017-02-20 22:56:03 +01001465 switch (ret) {
1466 case -1: /* error */
1467 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1468 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001469
Christopher Faulet8ef75252017-02-20 22:56:03 +01001470 case 0: /* ignore */
1471 if (ctx == NULL)
1472 goto abort_frag_frame;
1473
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001474 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001475 LIST_DEL(&ctx->list);
1476 LIST_INIT(&ctx->list);
Christopher Fauletfce747b2018-01-24 15:59:32 +01001477 ctx->spoe_appctx = NULL;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001478 ctx->state = SPOE_CTX_ST_ERROR;
1479 ctx->status_code = (SPOE_APPCTX(appctx)->status_code + 0x100);
1480 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001481 *skip = 1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001482 break;
1483
1484 case 1: /* retry */
1485 *skip = 1;
1486 break;
1487
1488 default:
1489 if (ctx == NULL)
1490 goto abort_frag_frame;
1491
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001492 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001493 LIST_DEL(&ctx->list);
1494 LIST_INIT(&ctx->list);
Christopher Fauletfce747b2018-01-24 15:59:32 +01001495 ctx->spoe_appctx = SPOE_APPCTX(appctx);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001496 if (!(ctx->flags & SPOE_CTX_FL_FRAGMENTED) ||
1497 (ctx->frag_ctx.flags & SPOE_FRM_FL_FIN))
1498 goto no_frag_frame_sent;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001499 else
Christopher Faulet8ef75252017-02-20 22:56:03 +01001500 goto frag_frame_sent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001501 }
1502 goto end;
1503
1504 frag_frame_sent:
1505 appctx->st0 = SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001506 *skip = 1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001507 SPOE_APPCTX(appctx)->frag_ctx.ctx = ctx;
1508 SPOE_APPCTX(appctx)->frag_ctx.cursid = ctx->stream_id;
1509 SPOE_APPCTX(appctx)->frag_ctx.curfid = ctx->frame_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001510 ctx->state = SPOE_CTX_ST_ENCODING_MSGS;
1511 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1512 goto end;
1513
1514 no_frag_frame_sent:
1515 if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_ASYNC) {
1516 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
Christopher Faulet24289f22017-09-25 14:48:02 +02001517 LIST_ADDQ(&agent->rt[tid].waiting_queue, &ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001518 }
1519 else if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_PIPELINING) {
1520 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1521 LIST_ADDQ(&SPOE_APPCTX(appctx)->waiting_queue, &ctx->list);
1522 }
1523 else {
1524 appctx->st0 = SPOE_APPCTX_ST_WAITING_SYNC_ACK;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001525 *skip = 1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001526 LIST_ADDQ(&SPOE_APPCTX(appctx)->waiting_queue, &ctx->list);
1527 }
1528 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1529 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1530 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001531 SPOE_APPCTX(appctx)->cur_fpa++;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001532
Christopher Faulet8ef75252017-02-20 22:56:03 +01001533 ctx->state = SPOE_CTX_ST_WAITING_ACK;
1534 goto end;
1535
1536 abort_frag_frame:
1537 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1538 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1539 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1540 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
1541 goto end;
1542
1543 end:
1544 return ret;
1545}
1546
1547static int
1548spoe_handle_receiving_frame_appctx(struct appctx *appctx, int *skip)
1549{
1550 struct spoe_context *ctx = NULL;
1551 char *frame;
1552 int ret;
1553
1554 frame = trash.str; trash.len = 0;
1555 ret = spoe_recv_frame(appctx, frame,
1556 SPOE_APPCTX(appctx)->max_frame_size);
1557 if (ret > 1) {
1558 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1559 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001560 ret = -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001561 goto end;
1562 }
1563 trash.len = ret + 4;
1564 ret = spoe_handle_agentack_frame(appctx, &ctx, frame, ret);
1565 }
1566 switch (ret) {
1567 case -1: /* error */
1568 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1569 break;
1570
1571 case 0: /* ignore */
1572 break;
1573
1574 case 1: /* retry */
1575 *skip = 1;
1576 break;
1577
1578 default:
1579 LIST_DEL(&ctx->list);
1580 LIST_INIT(&ctx->list);
Christopher Faulet8f82b202018-01-24 16:23:03 +01001581 if (ctx->spoe_appctx) {
1582 ctx->spoe_appctx->cur_fpa--;
Christopher Fauletfce747b2018-01-24 15:59:32 +01001583 ctx->spoe_appctx = NULL;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001584 }
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001585 if (appctx->st0 == SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY &&
1586 ctx == SPOE_APPCTX(appctx)->frag_ctx.ctx) {
1587 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1588 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1589 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1590 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
1591 }
1592 else if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK)
1593 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1594
Christopher Faulet8ef75252017-02-20 22:56:03 +01001595 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1596 break;
1597 }
1598
1599 /* Do not forget to remove processed frame from the output buffer */
1600 if (trash.len)
Willy Tarreau06d80a92017-10-19 14:32:15 +02001601 co_skip(si_oc(appctx->owner), trash.len);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001602 end:
1603 return ret;
1604}
1605
1606static int
1607spoe_handle_processing_appctx(struct appctx *appctx)
1608{
1609 struct stream_interface *si = appctx->owner;
1610 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001611 int ret, skip_sending = 0, skip_receiving = 0, active_s = 0, active_r = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001612
1613 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) {
1614 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
1615 goto exit;
1616 }
1617
1618 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
1619 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
1620 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1621 appctx->st1 = SPOE_APPCTX_ERR_NONE;
1622 goto next;
1623 }
1624
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001625 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001626 " - process: fpa=%u/%u - appctx-state=%s - weight=%u - flags=0x%08x\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001627 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8f82b202018-01-24 16:23:03 +01001628 __FUNCTION__, appctx, SPOE_APPCTX(appctx)->cur_fpa,
1629 agent->max_fpa, spoe_appctx_state_str[appctx->st0],
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001630 SPOE_APPCTX(appctx)->node.key, SPOE_APPCTX(appctx)->flags);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001631
Christopher Faulet8f82b202018-01-24 16:23:03 +01001632 if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK)
1633 skip_sending = 1;
Christopher Faulet4596fb72017-01-11 14:05:19 +01001634
Christopher Faulet8f82b202018-01-24 16:23:03 +01001635 /* receiving_frame loop */
1636 while (!skip_receiving) {
1637 ret = spoe_handle_receiving_frame_appctx(appctx, &skip_receiving);
1638 switch (ret) {
1639 case -1: /* error */
1640 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001641
Christopher Faulet8f82b202018-01-24 16:23:03 +01001642 case 0: /* ignore */
1643 active_r = 1;
1644 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001645
Christopher Faulet8f82b202018-01-24 16:23:03 +01001646 case 1: /* retry */
1647 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001648
Christopher Faulet8f82b202018-01-24 16:23:03 +01001649 default:
1650 active_r = 1;
1651 break;
1652 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001653 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001654
Christopher Faulet8f82b202018-01-24 16:23:03 +01001655 /* send_frame loop */
1656 while (!skip_sending && SPOE_APPCTX(appctx)->cur_fpa < agent->max_fpa) {
1657 ret = spoe_handle_sending_frame_appctx(appctx, &skip_sending);
1658 switch (ret) {
1659 case -1: /* error */
1660 goto next;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001661
Christopher Faulet8f82b202018-01-24 16:23:03 +01001662 case 0: /* ignore */
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001663 if (SPOE_APPCTX(appctx)->node.key)
1664 SPOE_APPCTX(appctx)->node.key--;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001665 active_s++;
1666 break;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001667
Christopher Faulet8f82b202018-01-24 16:23:03 +01001668 case 1: /* retry */
1669 break;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001670
Christopher Faulet8f82b202018-01-24 16:23:03 +01001671 default:
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001672 if (SPOE_APPCTX(appctx)->node.key)
1673 SPOE_APPCTX(appctx)->node.key--;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001674 active_s++;
1675 break;
1676 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001677 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001678
Christopher Faulet8f82b202018-01-24 16:23:03 +01001679 if (active_s || active_r) {
Christopher Faulet8f82b202018-01-24 16:23:03 +01001680 update_freq_ctr(&agent->rt[tid].processing_per_sec, active_s);
1681 SPOE_APPCTX(appctx)->task->expire = tick_add_ifset(now_ms, agent->timeout.idle);
1682 }
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001683
Christopher Faulet8f82b202018-01-24 16:23:03 +01001684 if (appctx->st0 == SPOE_APPCTX_ST_PROCESSING && SPOE_APPCTX(appctx)->cur_fpa < agent->max_fpa) {
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001685 SPOE_DEBUG_STMT(agent->rt[tid].applets_idle++);
Christopher Faulet8f82b202018-01-24 16:23:03 +01001686 appctx->st0 = SPOE_APPCTX_ST_IDLE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001687 eb32_insert(&agent->rt[tid].idle_applets, &SPOE_APPCTX(appctx)->node);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001688 }
1689 return 1;
1690
Christopher Faulet8f82b202018-01-24 16:23:03 +01001691 next:
1692 SPOE_APPCTX(appctx)->task->expire = tick_add_ifset(now_ms, agent->timeout.idle);
1693 return 0;
1694
Christopher Fauleta1cda022016-12-21 08:58:06 +01001695 exit:
1696 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1697 return 0;
1698}
1699
1700static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001701spoe_handle_disconnect_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001702{
1703 struct stream_interface *si = appctx->owner;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001704 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001705 char *frame, *buf;
1706 int ret;
Christopher Fauletb067b062017-01-04 16:39:11 +01001707
Christopher Fauleta1cda022016-12-21 08:58:06 +01001708 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO)
1709 goto exit;
1710
1711 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT)
1712 goto exit;
1713
Christopher Faulet8ef75252017-02-20 22:56:03 +01001714 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1715 * length. */
1716 buf = trash.str; frame = buf+4;
1717 ret = spoe_prepare_hadiscon_frame(appctx, frame,
1718 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001719 if (ret > 1)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001720 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001721
1722 switch (ret) {
1723 case -1: /* error */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001724 case 0: /* ignore => an error, cannot be ignored */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001725 goto exit;
1726
1727 case 1: /* retry */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001728 goto stop;
1729
1730 default:
1731 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1732 " - disconnected by HAProxy (%d): %s\n",
1733 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001734 __FUNCTION__, appctx,
1735 SPOE_APPCTX(appctx)->status_code,
1736 spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001737
1738 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
1739 goto next;
1740 }
1741
1742 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001743 SPOE_APPCTX(appctx)->task->expire =
1744 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001745 return 0;
1746 stop:
1747 return 1;
1748 exit:
1749 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1750 return 0;
1751}
1752
1753static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001754spoe_handle_disconnecting_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001755{
1756 struct stream_interface *si = appctx->owner;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001757 char *frame;
1758 int ret;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001759
Christopher Fauletb067b062017-01-04 16:39:11 +01001760 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001761 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001762 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001763 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001764
Christopher Fauletb067b062017-01-04 16:39:11 +01001765 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001766 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001767 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001768 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001769
Christopher Faulet8ef75252017-02-20 22:56:03 +01001770 frame = trash.str; trash.len = 0;
1771 ret = spoe_recv_frame(appctx, frame,
1772 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001773 if (ret > 1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001774 trash.len = ret + 4;
1775 ret = spoe_handle_agentdiscon_frame(appctx, frame, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001776 }
1777
1778 switch (ret) {
1779 case -1: /* error */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001780 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1781 " - error on frame (%s)\n",
1782 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet42bfa462017-01-04 14:14:19 +01001783 ((struct spoe_agent *)SPOE_APPCTX(appctx)->agent)->id,
Christopher Fauleta1cda022016-12-21 08:58:06 +01001784 __FUNCTION__, appctx,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001785 spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001786 goto exit;
1787
1788 case 0: /* ignore */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001789 goto next;
1790
1791 case 1: /* retry */
1792 goto stop;
1793
1794 default:
Christopher Fauleta1cda022016-12-21 08:58:06 +01001795 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01001796 " - disconnected by peer (%d): %.*s\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01001797 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet42bfa462017-01-04 14:14:19 +01001798 ((struct spoe_agent *)SPOE_APPCTX(appctx)->agent)->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001799 __FUNCTION__, appctx, SPOE_APPCTX(appctx)->status_code,
1800 SPOE_APPCTX(appctx)->rlen, SPOE_APPCTX(appctx)->reason);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001801 goto exit;
1802 }
1803
1804 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001805 /* Do not forget to remove processed frame from the output buffer */
1806 if (trash.len)
Willy Tarreau06d80a92017-10-19 14:32:15 +02001807 co_skip(si_oc(appctx->owner), trash.len);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001808
Christopher Fauleta1cda022016-12-21 08:58:06 +01001809 return 0;
1810 stop:
1811 return 1;
1812 exit:
1813 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1814 return 0;
1815}
1816
1817/* I/O Handler processing messages exchanged with the agent */
1818static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01001819spoe_handle_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001820{
Christopher Faulet8ef75252017-02-20 22:56:03 +01001821 struct stream_interface *si = appctx->owner;
1822 struct spoe_agent *agent;
1823
1824 if (SPOE_APPCTX(appctx) == NULL)
1825 return;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001826
Christopher Faulet8ef75252017-02-20 22:56:03 +01001827 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE;
1828 agent = SPOE_APPCTX(appctx)->agent;
Christopher Fauletb067b062017-01-04 16:39:11 +01001829
Christopher Fauleta1cda022016-12-21 08:58:06 +01001830 switchstate:
1831 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1832 " - appctx-state=%s\n",
1833 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1834 __FUNCTION__, appctx, spoe_appctx_state_str[appctx->st0]);
1835
1836 switch (appctx->st0) {
1837 case SPOE_APPCTX_ST_CONNECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001838 if (spoe_handle_connect_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001839 goto out;
1840 goto switchstate;
1841
1842 case SPOE_APPCTX_ST_CONNECTING:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001843 if (spoe_handle_connecting_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001844 goto out;
1845 goto switchstate;
1846
1847 case SPOE_APPCTX_ST_IDLE:
1848 if (stopping &&
Christopher Faulet24289f22017-09-25 14:48:02 +02001849 LIST_ISEMPTY(&agent->rt[tid].sending_queue) &&
Christopher Faulet42bfa462017-01-04 14:14:19 +01001850 LIST_ISEMPTY(&SPOE_APPCTX(appctx)->waiting_queue)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001851 SPOE_APPCTX(appctx)->task->expire =
1852 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001853 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001854 goto switchstate;
1855 }
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001856 SPOE_DEBUG_STMT(agent->rt[tid].applets_idle--);
1857 eb32_delete(&SPOE_APPCTX(appctx)->node);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001858 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1859 /* fall through */
1860
1861 case SPOE_APPCTX_ST_PROCESSING:
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001862 case SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY:
1863 case SPOE_APPCTX_ST_WAITING_SYNC_ACK:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001864 if (spoe_handle_processing_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001865 goto out;
1866 goto switchstate;
1867
1868 case SPOE_APPCTX_ST_DISCONNECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001869 if (spoe_handle_disconnect_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001870 goto out;
1871 goto switchstate;
1872
1873 case SPOE_APPCTX_ST_DISCONNECTING:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001874 if (spoe_handle_disconnecting_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001875 goto out;
1876 goto switchstate;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001877
1878 case SPOE_APPCTX_ST_EXIT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001879 appctx->st0 = SPOE_APPCTX_ST_END;
1880 SPOE_APPCTX(appctx)->task->expire = TICK_ETERNITY;
1881
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001882 si_shutw(si);
1883 si_shutr(si);
1884 si_ic(si)->flags |= CF_READ_NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001885 /* fall through */
1886
1887 case SPOE_APPCTX_ST_END:
Christopher Fauleta73e59b2016-12-09 17:30:18 +01001888 return;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001889 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001890 out:
Christopher Faulet24289f22017-09-25 14:48:02 +02001891 if (stopping)
1892 spoe_wakeup_appctx(appctx);
1893
Christopher Faulet42bfa462017-01-04 14:14:19 +01001894 if (SPOE_APPCTX(appctx)->task->expire != TICK_ETERNITY)
1895 task_queue(SPOE_APPCTX(appctx)->task);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001896 si_oc(si)->flags |= CF_READ_DONTWAIT;
1897 task_wakeup(si_strm(si)->task, TASK_WOKEN_IO);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001898}
1899
1900struct applet spoe_applet = {
1901 .obj_type = OBJ_TYPE_APPLET,
1902 .name = "<SPOE>", /* used for logging */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001903 .fct = spoe_handle_appctx,
1904 .release = spoe_release_appctx,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001905};
1906
1907/* Create a SPOE applet. On success, the created applet is returned, else
1908 * NULL. */
1909static struct appctx *
Christopher Faulet8ef75252017-02-20 22:56:03 +01001910spoe_create_appctx(struct spoe_config *conf)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001911{
1912 struct appctx *appctx;
1913 struct session *sess;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001914 struct stream *strm;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001915
Emeric Brun1138fd02017-06-19 12:38:55 +02001916 if ((appctx = appctx_new(&spoe_applet, tid_bit)) == NULL)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001917 goto out_error;
1918
Willy Tarreaubafbe012017-11-24 17:34:44 +01001919 appctx->ctx.spoe.ptr = pool_alloc_dirty(pool_head_spoe_appctx);
Christopher Faulet42bfa462017-01-04 14:14:19 +01001920 if (SPOE_APPCTX(appctx) == NULL)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001921 goto out_free_appctx;
Willy Tarreaubafbe012017-11-24 17:34:44 +01001922 memset(appctx->ctx.spoe.ptr, 0, pool_head_spoe_appctx->size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001923
Christopher Faulet42bfa462017-01-04 14:14:19 +01001924 appctx->st0 = SPOE_APPCTX_ST_CONNECT;
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01001925 if ((SPOE_APPCTX(appctx)->task = task_new(tid_bit)) == NULL)
Christopher Faulet42bfa462017-01-04 14:14:19 +01001926 goto out_free_spoe_appctx;
1927
1928 SPOE_APPCTX(appctx)->owner = appctx;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001929 SPOE_APPCTX(appctx)->task->process = spoe_process_appctx;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001930 SPOE_APPCTX(appctx)->task->context = appctx;
1931 SPOE_APPCTX(appctx)->agent = conf->agent;
1932 SPOE_APPCTX(appctx)->version = 0;
1933 SPOE_APPCTX(appctx)->max_frame_size = conf->agent->max_frame_size;
1934 SPOE_APPCTX(appctx)->flags = 0;
Christopher Fauletb067b062017-01-04 16:39:11 +01001935 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE;
Christopher Faulet4596fb72017-01-11 14:05:19 +01001936 SPOE_APPCTX(appctx)->buffer = &buf_empty;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001937 SPOE_APPCTX(appctx)->cur_fpa = 0;
Christopher Faulet4596fb72017-01-11 14:05:19 +01001938
1939 LIST_INIT(&SPOE_APPCTX(appctx)->buffer_wait.list);
1940 SPOE_APPCTX(appctx)->buffer_wait.target = appctx;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001941 SPOE_APPCTX(appctx)->buffer_wait.wakeup_cb = (int (*)(void *))spoe_wakeup_appctx;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001942
1943 LIST_INIT(&SPOE_APPCTX(appctx)->list);
1944 LIST_INIT(&SPOE_APPCTX(appctx)->waiting_queue);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001945
Willy Tarreau5820a362016-12-22 15:59:02 +01001946 sess = session_new(&conf->agent_fe, NULL, &appctx->obj_type);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001947 if (!sess)
1948 goto out_free_spoe;
1949
Willy Tarreau87787ac2017-08-28 16:22:54 +02001950 if ((strm = stream_new(sess, &appctx->obj_type)) == NULL)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001951 goto out_free_sess;
1952
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001953 stream_set_backend(strm, conf->agent->b.be);
1954
1955 /* applet is waiting for data */
1956 si_applet_cant_get(&strm->si[0]);
1957 appctx_wakeup(appctx);
1958
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001959 strm->do_log = NULL;
1960 strm->res.flags |= CF_READ_DONTWAIT;
1961
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001962 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &conf->agent->rt[tid].lock);
Christopher Faulet24289f22017-09-25 14:48:02 +02001963 LIST_ADDQ(&conf->agent->rt[tid].applets, &SPOE_APPCTX(appctx)->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001964 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &conf->agent->rt[tid].lock);
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001965 SPOE_DEBUG_STMT(conf->agent->rt[tid].applets_act++);
Emeric Brun5f77fef2017-05-29 15:26:51 +02001966
Emeric Brunc60def82017-09-27 14:59:38 +02001967 task_wakeup(SPOE_APPCTX(appctx)->task, TASK_WOKEN_INIT);
Willy Tarreau87787ac2017-08-28 16:22:54 +02001968 task_wakeup(strm->task, TASK_WOKEN_INIT);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001969 return appctx;
1970
1971 /* Error unrolling */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001972 out_free_sess:
1973 session_free(sess);
1974 out_free_spoe:
Christopher Faulet42bfa462017-01-04 14:14:19 +01001975 task_free(SPOE_APPCTX(appctx)->task);
1976 out_free_spoe_appctx:
Willy Tarreaubafbe012017-11-24 17:34:44 +01001977 pool_free(pool_head_spoe_appctx, SPOE_APPCTX(appctx));
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001978 out_free_appctx:
1979 appctx_free(appctx);
1980 out_error:
1981 return NULL;
1982}
1983
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001984static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001985spoe_queue_context(struct spoe_context *ctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001986{
1987 struct spoe_config *conf = FLT_CONF(ctx->filter);
1988 struct spoe_agent *agent = conf->agent;
1989 struct appctx *appctx;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001990 struct spoe_appctx *spoe_appctx;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001991
Christopher Fauleta1cda022016-12-21 08:58:06 +01001992 /* Check if we need to create a new SPOE applet or not. */
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001993 if (!eb_is_empty(&agent->rt[tid].idle_applets) &&
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01001994 agent->rt[tid].processing < read_freq_ctr(&agent->rt[tid].processing_per_sec))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001995 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001996
1997 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Fauleta1cda022016-12-21 08:58:06 +01001998 " - try to create new SPOE appctx\n",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001999 (int)now.tv_sec, (int)now.tv_usec, agent->id, __FUNCTION__,
2000 ctx->strm);
2001
Christopher Fauleta1cda022016-12-21 08:58:06 +01002002 /* Do not try to create a new applet if there is no server up for the
2003 * agent's backend. */
2004 if (!agent->b.be->srv_act && !agent->b.be->srv_bck) {
2005 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2006 " - cannot create SPOE appctx: no server up\n",
2007 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2008 __FUNCTION__, ctx->strm);
2009 goto end;
2010 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002011
Christopher Fauleta1cda022016-12-21 08:58:06 +01002012 /* Do not try to create a new applet if we have reached the maximum of
2013 * connection per seconds */
Christopher Faulet48026722016-11-16 15:01:12 +01002014 if (agent->cps_max > 0) {
Christopher Faulet24289f22017-09-25 14:48:02 +02002015 if (!freq_ctr_remain(&agent->rt[tid].conn_per_sec, agent->cps_max, 0)) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002016 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2017 " - cannot create SPOE appctx: max CPS reached\n",
2018 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2019 __FUNCTION__, ctx->strm);
2020 goto end;
2021 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002022 }
2023
Christopher Faulet8ef75252017-02-20 22:56:03 +01002024 appctx = spoe_create_appctx(conf);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002025 if (appctx == NULL) {
2026 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2027 " - failed to create SPOE appctx\n",
2028 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2029 __FUNCTION__, ctx->strm);
Christopher Faulet72bcc472017-01-04 16:39:41 +01002030 send_log(ctx->strm->be, LOG_EMERG,
2031 "SPOE: [%s] failed to create SPOE applet\n",
2032 agent->id);
2033
Christopher Fauleta1cda022016-12-21 08:58:06 +01002034 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002035 }
2036
Christopher Fauleta1cda022016-12-21 08:58:06 +01002037 /* Increase the per-process number of cumulated connections */
2038 if (agent->cps_max > 0)
Christopher Faulet24289f22017-09-25 14:48:02 +02002039 update_freq_ctr(&agent->rt[tid].conn_per_sec, 1);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002040
Christopher Fauleta1cda022016-12-21 08:58:06 +01002041 end:
2042 /* The only reason to return an error is when there is no applet */
Christopher Faulet24289f22017-09-25 14:48:02 +02002043 if (LIST_ISEMPTY(&agent->rt[tid].applets)) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002044 ctx->status_code = SPOE_CTX_ERR_RES;
2045 return -1;
2046 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002047
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002048 /* Add the SPOE context in the sending queue */
Christopher Faulet24289f22017-09-25 14:48:02 +02002049 LIST_ADDQ(&agent->rt[tid].sending_queue, &ctx->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002050
2051 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002052 " - Add stream in sending queue"
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002053 " - applets_act=%u - applets_idle=%u - processing=%u\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01002054 (int)now.tv_sec, (int)now.tv_usec, agent->id, __FUNCTION__,
Christopher Faulet24289f22017-09-25 14:48:02 +02002055 ctx->strm, agent->rt[tid].applets_act, agent->rt[tid].applets_idle,
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002056 agent->rt[tid].processing);
Christopher Fauletf7a30922016-11-10 15:04:51 +01002057
Christopher Fauletb077cdc2018-01-24 16:37:57 +01002058 /* Finally try to wakeup an IDLE applet. */
2059 if (!eb_is_empty(&agent->rt[tid].idle_applets)) {
2060 struct eb32_node *node;
2061
2062 node = eb32_first(&agent->rt[tid].idle_applets);
2063 spoe_appctx = eb32_entry(node, struct spoe_appctx, node);
2064 if (node && spoe_appctx) {
2065 eb32_delete(&spoe_appctx->node);
2066 spoe_appctx->node.key++;
2067 eb32_insert(&agent->rt[tid].idle_applets, &spoe_appctx->node);
2068 spoe_wakeup_appctx(spoe_appctx->owner);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002069 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002070 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01002071 return 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002072}
2073
2074/***************************************************************************
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002075 * Functions that encode SPOE messages
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002076 **************************************************************************/
Christopher Faulet10e37672017-09-21 16:38:22 +02002077/* Encode a SPOE message. Info in <ctx->frag_ctx>, if any, are used to handle
2078 * fragmented_content. If the next message can be processed, it returns 0. If
2079 * the message is too big, it returns -1.*/
2080static int
2081spoe_encode_message(struct stream *s, struct spoe_context *ctx,
2082 struct spoe_message *msg, int dir,
2083 char **buf, char *end)
2084{
2085 struct sample *smp;
2086 struct spoe_arg *arg;
2087 int ret;
2088
2089 if (msg->cond) {
2090 ret = acl_exec_cond(msg->cond, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2091 ret = acl_pass(ret);
2092 if (msg->cond->pol == ACL_COND_UNLESS)
2093 ret = !ret;
2094
2095 /* the rule does not match */
2096 if (!ret)
2097 goto next;
2098 }
2099
2100 /* Resume encoding of a SPOE argument */
2101 if (ctx->frag_ctx.curarg != NULL) {
2102 arg = ctx->frag_ctx.curarg;
2103 goto encode_argument;
2104 }
2105
2106 if (ctx->frag_ctx.curoff != UINT_MAX)
2107 goto encode_msg_payload;
2108
2109 /* Check if there is enough space for the message name and the
2110 * number of arguments. It implies <msg->id_len> is encoded on 2
2111 * bytes, at most (< 2288). */
2112 if (*buf + 2 + msg->id_len + 1 > end)
2113 goto too_big;
2114
2115 /* Encode the message name */
2116 if (spoe_encode_buffer(msg->id, msg->id_len, buf, end) == -1)
2117 goto too_big;
2118
2119 /* Set the number of arguments for this message */
2120 **buf = msg->nargs;
2121 (*buf)++;
2122
2123 ctx->frag_ctx.curoff = 0;
2124 encode_msg_payload:
2125
2126 /* Loop on arguments */
2127 list_for_each_entry(arg, &msg->args, list) {
2128 ctx->frag_ctx.curarg = arg;
2129 ctx->frag_ctx.curoff = UINT_MAX;
2130
2131 encode_argument:
2132 if (ctx->frag_ctx.curoff != UINT_MAX)
2133 goto encode_arg_value;
2134
2135 /* Encode the arguement name as a string. It can by NULL */
2136 if (spoe_encode_buffer(arg->name, arg->name_len, buf, end) == -1)
2137 goto too_big;
2138
2139 ctx->frag_ctx.curoff = 0;
2140 encode_arg_value:
2141
2142 /* Fetch the arguement value */
2143 smp = sample_process(s->be, s->sess, s, dir|SMP_OPT_FINAL, arg->expr, NULL);
2144 ret = spoe_encode_data(smp, &ctx->frag_ctx.curoff, buf, end);
2145 if (ret == -1 || ctx->frag_ctx.curoff)
2146 goto too_big;
2147 }
2148
2149 next:
2150 return 0;
2151
2152 too_big:
2153 return -1;
2154}
2155
Christopher Fauletc718b822017-09-21 16:50:56 +02002156/* Encode list of SPOE messages. Info in <ctx->frag_ctx>, if any, are used to
2157 * handle fragmented content. On success it returns 1. If an error occurred, -1
2158 * is returned. If nothing has been encoded, it returns 0 (this is only possible
2159 * for unfragmented payload). */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002160static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002161spoe_encode_messages(struct stream *s, struct spoe_context *ctx,
Christopher Fauletc718b822017-09-21 16:50:56 +02002162 struct list *messages, int dir, int type)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002163{
Christopher Fauleta1cda022016-12-21 08:58:06 +01002164 struct spoe_config *conf = FLT_CONF(ctx->filter);
2165 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002166 struct spoe_message *msg;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002167 char *p, *end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002168
Christopher Faulet8ef75252017-02-20 22:56:03 +01002169 p = ctx->buffer->p;
Christopher Faulet24289f22017-09-25 14:48:02 +02002170 end = p + agent->rt[tid].frame_size - FRAME_HDR_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002171
Christopher Fauletc718b822017-09-21 16:50:56 +02002172 if (type == SPOE_MSGS_BY_EVENT) { /* Loop on messages by event */
2173 /* Resume encoding of a SPOE message */
2174 if (ctx->frag_ctx.curmsg != NULL) {
2175 msg = ctx->frag_ctx.curmsg;
2176 goto encode_evt_message;
2177 }
2178
2179 list_for_each_entry(msg, messages, by_evt) {
2180 ctx->frag_ctx.curmsg = msg;
2181 ctx->frag_ctx.curarg = NULL;
2182 ctx->frag_ctx.curoff = UINT_MAX;
2183
2184 encode_evt_message:
2185 if (spoe_encode_message(s, ctx, msg, dir, &p, end) == -1)
2186 goto too_big;
2187 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002188 }
Christopher Fauletc718b822017-09-21 16:50:56 +02002189 else if (type == SPOE_MSGS_BY_GROUP) { /* Loop on messages by group */
2190 /* Resume encoding of a SPOE message */
2191 if (ctx->frag_ctx.curmsg != NULL) {
2192 msg = ctx->frag_ctx.curmsg;
2193 goto encode_grp_message;
2194 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002195
Christopher Fauletc718b822017-09-21 16:50:56 +02002196 list_for_each_entry(msg, messages, by_grp) {
2197 ctx->frag_ctx.curmsg = msg;
2198 ctx->frag_ctx.curarg = NULL;
2199 ctx->frag_ctx.curoff = UINT_MAX;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002200
Christopher Fauletc718b822017-09-21 16:50:56 +02002201 encode_grp_message:
2202 if (spoe_encode_message(s, ctx, msg, dir, &p, end) == -1)
2203 goto too_big;
2204 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002205 }
Christopher Fauletc718b822017-09-21 16:50:56 +02002206 else
2207 goto skip;
2208
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002209
Christopher Faulet57583e42017-09-04 15:41:09 +02002210 /* nothing has been encoded for an unfragmented payload */
2211 if (!(ctx->flags & SPOE_CTX_FL_FRAGMENTED) && p == ctx->buffer->p)
2212 goto skip;
2213
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002214 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002215 " - encode %s messages - spoe_appctx=%p"
2216 "- max_size=%u - encoded=%ld\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002217 (int)now.tv_sec, (int)now.tv_usec,
2218 agent->id, __FUNCTION__, s,
2219 ((ctx->flags & SPOE_CTX_FL_FRAGMENTED) ? "last fragment of" : "unfragmented"),
Christopher Fauletfce747b2018-01-24 15:59:32 +01002220 ctx->spoe_appctx, (agent->rt[tid].frame_size - FRAME_HDR_SIZE),
Christopher Faulet8ef75252017-02-20 22:56:03 +01002221 p - ctx->buffer->p);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002222
Christopher Faulet8ef75252017-02-20 22:56:03 +01002223 ctx->buffer->i = p - ctx->buffer->p;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002224 ctx->frag_ctx.curmsg = NULL;
2225 ctx->frag_ctx.curarg = NULL;
2226 ctx->frag_ctx.curoff = 0;
2227 ctx->frag_ctx.flags = SPOE_FRM_FL_FIN;
Christopher Faulet57583e42017-09-04 15:41:09 +02002228
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002229 return 1;
2230
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002231 too_big:
Christopher Fauletcecd8522017-02-24 22:11:21 +01002232 if (!(agent->flags & SPOE_FL_SND_FRAGMENTATION)) {
2233 ctx->status_code = SPOE_CTX_ERR_TOO_BIG;
2234 return -1;
2235 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002236
2237 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002238 " - encode fragmented messages - spoe_appctx=%p"
2239 " - curmsg=%p - curarg=%p - curoff=%u"
2240 " - max_size=%u - encoded=%ld\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002241 (int)now.tv_sec, (int)now.tv_usec,
Christopher Fauletfce747b2018-01-24 15:59:32 +01002242 agent->id, __FUNCTION__, s, ctx->spoe_appctx,
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002243 ctx->frag_ctx.curmsg, ctx->frag_ctx.curarg, ctx->frag_ctx.curoff,
Christopher Faulet24289f22017-09-25 14:48:02 +02002244 (agent->rt[tid].frame_size - FRAME_HDR_SIZE), p - ctx->buffer->p);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002245
Christopher Faulet8ef75252017-02-20 22:56:03 +01002246 ctx->buffer->i = p - ctx->buffer->p;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002247 ctx->flags |= SPOE_CTX_FL_FRAGMENTED;
2248 ctx->frag_ctx.flags &= ~SPOE_FRM_FL_FIN;
2249 return 1;
Christopher Faulet57583e42017-09-04 15:41:09 +02002250
2251 skip:
2252 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2253 " - skip the frame because nothing has been encoded\n",
2254 (int)now.tv_sec, (int)now.tv_usec,
2255 agent->id, __FUNCTION__, s);
2256 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002257}
2258
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002259
2260/***************************************************************************
2261 * Functions that handle SPOE actions
2262 **************************************************************************/
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002263/* Helper function to set a variable */
2264static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002265spoe_set_var(struct spoe_context *ctx, char *scope, char *name, int len,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002266 struct sample *smp)
2267{
2268 struct spoe_config *conf = FLT_CONF(ctx->filter);
2269 struct spoe_agent *agent = conf->agent;
2270 char varname[64];
2271
2272 memset(varname, 0, sizeof(varname));
2273 len = snprintf(varname, sizeof(varname), "%s.%s.%.*s",
2274 scope, agent->var_pfx, len, name);
Etienne Carriereaec89892017-12-14 09:36:40 +00002275 if (agent->flags & SPOE_FL_FORCE_SET_VAR)
2276 vars_set_by_name(varname, len, smp);
2277 else
2278 vars_set_by_name_ifexist(varname, len, smp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002279}
2280
2281/* Helper function to unset a variable */
2282static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002283spoe_unset_var(struct spoe_context *ctx, char *scope, char *name, int len,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002284 struct sample *smp)
2285{
2286 struct spoe_config *conf = FLT_CONF(ctx->filter);
2287 struct spoe_agent *agent = conf->agent;
2288 char varname[64];
2289
2290 memset(varname, 0, sizeof(varname));
2291 len = snprintf(varname, sizeof(varname), "%s.%s.%.*s",
2292 scope, agent->var_pfx, len, name);
2293 vars_unset_by_name_ifexist(varname, len, smp);
2294}
2295
2296
Christopher Faulet8ef75252017-02-20 22:56:03 +01002297static inline int
2298spoe_decode_action_set_var(struct stream *s, struct spoe_context *ctx,
2299 char **buf, char *end, int dir)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002300{
Christopher Faulet8ef75252017-02-20 22:56:03 +01002301 char *str, *scope, *p = *buf;
2302 struct sample smp;
2303 uint64_t sz;
2304 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002305
Christopher Faulet8ef75252017-02-20 22:56:03 +01002306 if (p + 2 >= end)
2307 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002308
Christopher Faulet8ef75252017-02-20 22:56:03 +01002309 /* SET-VAR requires 3 arguments */
2310 if (*p++ != 3)
2311 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002312
Christopher Faulet8ef75252017-02-20 22:56:03 +01002313 switch (*p++) {
2314 case SPOE_SCOPE_PROC: scope = "proc"; break;
2315 case SPOE_SCOPE_SESS: scope = "sess"; break;
2316 case SPOE_SCOPE_TXN : scope = "txn"; break;
2317 case SPOE_SCOPE_REQ : scope = "req"; break;
2318 case SPOE_SCOPE_RES : scope = "res"; break;
2319 default: goto skip;
2320 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002321
Christopher Faulet8ef75252017-02-20 22:56:03 +01002322 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
2323 goto skip;
2324 memset(&smp, 0, sizeof(smp));
2325 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002326
Christopher Faulet8ef75252017-02-20 22:56:03 +01002327 if (spoe_decode_data(&p, end, &smp) == -1)
2328 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002329
Christopher Faulet8ef75252017-02-20 22:56:03 +01002330 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2331 " - set-var '%s.%s.%.*s'\n",
2332 (int)now.tv_sec, (int)now.tv_usec,
2333 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id,
2334 __FUNCTION__, s, scope,
2335 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->var_pfx,
2336 (int)sz, str);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002337
Christopher Faulet8ef75252017-02-20 22:56:03 +01002338 spoe_set_var(ctx, scope, str, sz, &smp);
Christopher Fauletb5cff602016-11-24 14:53:22 +01002339
Christopher Faulet8ef75252017-02-20 22:56:03 +01002340 ret = (p - *buf);
2341 *buf = p;
2342 return ret;
2343 skip:
2344 return 0;
2345}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002346
Christopher Faulet8ef75252017-02-20 22:56:03 +01002347static inline int
2348spoe_decode_action_unset_var(struct stream *s, struct spoe_context *ctx,
2349 char **buf, char *end, int dir)
2350{
2351 char *str, *scope, *p = *buf;
2352 struct sample smp;
2353 uint64_t sz;
2354 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002355
Christopher Faulet8ef75252017-02-20 22:56:03 +01002356 if (p + 2 >= end)
2357 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002358
Christopher Faulet8ef75252017-02-20 22:56:03 +01002359 /* UNSET-VAR requires 2 arguments */
2360 if (*p++ != 2)
2361 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002362
Christopher Faulet8ef75252017-02-20 22:56:03 +01002363 switch (*p++) {
2364 case SPOE_SCOPE_PROC: scope = "proc"; break;
2365 case SPOE_SCOPE_SESS: scope = "sess"; break;
2366 case SPOE_SCOPE_TXN : scope = "txn"; break;
2367 case SPOE_SCOPE_REQ : scope = "req"; break;
2368 case SPOE_SCOPE_RES : scope = "res"; break;
2369 default: goto skip;
2370 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002371
Christopher Faulet8ef75252017-02-20 22:56:03 +01002372 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
2373 goto skip;
2374 memset(&smp, 0, sizeof(smp));
2375 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002376
Christopher Faulet8ef75252017-02-20 22:56:03 +01002377 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2378 " - unset-var '%s.%s.%.*s'\n",
2379 (int)now.tv_sec, (int)now.tv_usec,
2380 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id,
2381 __FUNCTION__, s, scope,
2382 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->var_pfx,
2383 (int)sz, str);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002384
Christopher Faulet8ef75252017-02-20 22:56:03 +01002385 spoe_unset_var(ctx, scope, str, sz, &smp);
2386
2387 ret = (p - *buf);
2388 *buf = p;
2389 return ret;
2390 skip:
2391 return 0;
2392}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002393
Christopher Faulet8ef75252017-02-20 22:56:03 +01002394/* Process SPOE actions for a specific event. It returns 1 on success. If an
2395 * error occurred, 0 is returned. */
2396static int
Christopher Faulet58d03682017-09-21 16:57:24 +02002397spoe_process_actions(struct stream *s, struct spoe_context *ctx, int dir)
Christopher Faulet8ef75252017-02-20 22:56:03 +01002398{
2399 char *p, *end;
2400 int ret;
2401
2402 p = ctx->buffer->p;
2403 end = p + ctx->buffer->i;
2404
2405 while (p < end) {
2406 enum spoe_action_type type;
2407
2408 type = *p++;
2409 switch (type) {
2410 case SPOE_ACT_T_SET_VAR:
2411 ret = spoe_decode_action_set_var(s, ctx, &p, end, dir);
2412 if (!ret)
2413 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002414 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002415
Christopher Faulet8ef75252017-02-20 22:56:03 +01002416 case SPOE_ACT_T_UNSET_VAR:
2417 ret = spoe_decode_action_unset_var(s, ctx, &p, end, dir);
2418 if (!ret)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002419 goto skip;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002420 break;
2421
2422 default:
2423 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002424 }
2425 }
2426
2427 return 1;
2428 skip:
2429 return 0;
2430}
2431
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002432/***************************************************************************
2433 * Functions that process SPOE events
2434 **************************************************************************/
2435static inline int
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002436spoe_start_processing(struct spoe_agent *agent, struct spoe_context *ctx, int dir)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002437{
Christopher Fauleta1cda022016-12-21 08:58:06 +01002438 /* If a process is already started for this SPOE context, retry
2439 * later. */
2440 if (ctx->flags & SPOE_CTX_FL_PROCESS)
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002441 return 0;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002442
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002443 agent->rt[tid].processing++;
2444
Christopher Fauleta1cda022016-12-21 08:58:06 +01002445 /* Set the right flag to prevent request and response processing
2446 * in same time. */
2447 ctx->flags |= ((dir == SMP_OPT_DIR_REQ)
2448 ? SPOE_CTX_FL_REQ_PROCESS
2449 : SPOE_CTX_FL_RSP_PROCESS);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002450 return 1;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002451}
2452
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002453static inline void
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002454spoe_stop_processing(struct spoe_agent *agent, struct spoe_context *ctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002455{
Christopher Fauletfce747b2018-01-24 15:59:32 +01002456 struct spoe_appctx *sa = ctx->spoe_appctx;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002457
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002458 if (!(ctx->flags & SPOE_CTX_FL_PROCESS))
2459 return;
2460
Christopher Fauletfce747b2018-01-24 15:59:32 +01002461 if (sa && sa->frag_ctx.ctx == ctx) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002462 sa->frag_ctx.ctx = NULL;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002463 spoe_wakeup_appctx(sa->owner);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002464 }
2465
Christopher Fauleta1cda022016-12-21 08:58:06 +01002466 /* Reset the flag to allow next processing */
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002467 agent->rt[tid].processing--;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002468 ctx->flags &= ~(SPOE_CTX_FL_PROCESS|SPOE_CTX_FL_FRAGMENTED);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002469
Christopher Fauletb067b062017-01-04 16:39:11 +01002470 ctx->status_code = 0;
2471
Christopher Fauleta1cda022016-12-21 08:58:06 +01002472 /* Reset processing timer */
2473 ctx->process_exp = TICK_ETERNITY;
2474
Christopher Faulet8ef75252017-02-20 22:56:03 +01002475 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002476
Christopher Fauletfce747b2018-01-24 15:59:32 +01002477 ctx->spoe_appctx = NULL;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002478 ctx->frag_ctx.curmsg = NULL;
2479 ctx->frag_ctx.curarg = NULL;
2480 ctx->frag_ctx.curoff = 0;
2481 ctx->frag_ctx.flags = 0;
2482
Christopher Fauleta1cda022016-12-21 08:58:06 +01002483 if (!LIST_ISEMPTY(&ctx->list)) {
2484 LIST_DEL(&ctx->list);
2485 LIST_INIT(&ctx->list);
2486 }
2487}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002488
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002489static void
2490spoe_handle_processing_error(struct stream *s, struct spoe_agent *agent,
2491 struct spoe_context *ctx, int dir)
2492{
2493 if (agent->eps_max > 0)
Christopher Faulet24289f22017-09-25 14:48:02 +02002494 update_freq_ctr(&agent->rt[tid].err_per_sec, 1);
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002495
2496 if (agent->var_on_error) {
2497 struct sample smp;
2498
2499 memset(&smp, 0, sizeof(smp));
2500 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2501 smp.data.u.sint = ctx->status_code;
2502 smp.data.type = SMP_T_BOOL;
2503
2504 spoe_set_var(ctx, "txn", agent->var_on_error,
2505 strlen(agent->var_on_error), &smp);
2506 }
2507 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2508 " - failed to process messages: code=%u\n",
2509 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2510 __FUNCTION__, s, ctx->status_code);
2511 send_log(ctx->strm->be, LOG_WARNING,
2512 "SPOE: [%s] failed to process messages: code=%u\n",
2513 agent->id, ctx->status_code);
2514
2515 ctx->state = ((agent->flags & SPOE_FL_CONT_ON_ERR)
2516 ? SPOE_CTX_ST_READY
2517 : SPOE_CTX_ST_NONE);
2518}
2519
Christopher Faulet58d03682017-09-21 16:57:24 +02002520/* Process a list of SPOE messages. First, this functions will process messages
2521 * and send them to an agent in a NOTIFY frame. Then, it will wait a ACK frame
2522 * to process corresponding actions. During all the processing, it returns 0
2523 * and it returns 1 when the processing is finished. If an error occurred, -1
2524 * is returned. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002525static int
Christopher Faulet58d03682017-09-21 16:57:24 +02002526spoe_process_messages(struct stream *s, struct spoe_context *ctx,
2527 struct list *messages, int dir, int type)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002528{
Christopher Fauletf7a30922016-11-10 15:04:51 +01002529 struct spoe_config *conf = FLT_CONF(ctx->filter);
2530 struct spoe_agent *agent = conf->agent;
Christopher Faulet58d03682017-09-21 16:57:24 +02002531 int ret = 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002532
2533 if (ctx->state == SPOE_CTX_ST_ERROR)
2534 goto error;
Christopher Fauletf7a30922016-11-10 15:04:51 +01002535
2536 if (tick_is_expired(ctx->process_exp, now_ms) && ctx->state != SPOE_CTX_ST_DONE) {
2537 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet58d03682017-09-21 16:57:24 +02002538 " - failed to process messages: timeout\n",
Christopher Fauletf7a30922016-11-10 15:04:51 +01002539 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet58d03682017-09-21 16:57:24 +02002540 agent->id, __FUNCTION__, s);
Christopher Fauletb067b062017-01-04 16:39:11 +01002541 ctx->status_code = SPOE_CTX_ERR_TOUT;
Christopher Fauletf7a30922016-11-10 15:04:51 +01002542 goto error;
2543 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002544
2545 if (ctx->state == SPOE_CTX_ST_READY) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002546 if (agent->eps_max > 0) {
Christopher Faulet24289f22017-09-25 14:48:02 +02002547 if (!freq_ctr_remain(&agent->rt[tid].err_per_sec, agent->eps_max, 0)) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002548 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet58d03682017-09-21 16:57:24 +02002549 " - skip processing of messages: max EPS reached\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01002550 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet58d03682017-09-21 16:57:24 +02002551 agent->id, __FUNCTION__, s);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002552 goto skip;
2553 }
2554 }
2555
Christopher Fauletf7a30922016-11-10 15:04:51 +01002556 if (!tick_isset(ctx->process_exp)) {
2557 ctx->process_exp = tick_add_ifset(now_ms, agent->timeout.processing);
2558 s->task->expire = tick_first((tick_is_expired(s->task->expire, now_ms) ? 0 : s->task->expire),
2559 ctx->process_exp);
2560 }
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002561 ret = spoe_start_processing(agent, ctx, dir);
Christopher Fauletb067b062017-01-04 16:39:11 +01002562 if (!ret)
2563 goto out;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002564
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002565 ctx->state = SPOE_CTX_ST_ENCODING_MSGS;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002566 /* fall through */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002567 }
2568
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002569 if (ctx->state == SPOE_CTX_ST_ENCODING_MSGS) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01002570 if (!spoe_acquire_buffer(&ctx->buffer, &ctx->buffer_wait))
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002571 goto out;
Christopher Faulet58d03682017-09-21 16:57:24 +02002572 ret = spoe_encode_messages(s, ctx, messages, dir, type);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002573 if (ret < 0)
2574 goto error;
Christopher Faulet57583e42017-09-04 15:41:09 +02002575 if (!ret)
2576 goto skip;
Christopher Faulet333694d2018-01-12 10:45:47 +01002577 if (spoe_queue_context(ctx) < 0)
2578 goto error;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002579 ctx->state = SPOE_CTX_ST_SENDING_MSGS;
2580 }
2581
2582 if (ctx->state == SPOE_CTX_ST_SENDING_MSGS) {
Christopher Fauletfce747b2018-01-24 15:59:32 +01002583 if (ctx->spoe_appctx)
2584 spoe_wakeup_appctx(ctx->spoe_appctx->owner);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002585 ret = 0;
2586 goto out;
2587 }
2588
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002589 if (ctx->state == SPOE_CTX_ST_WAITING_ACK) {
2590 ret = 0;
2591 goto out;
2592 }
2593
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002594 if (ctx->state == SPOE_CTX_ST_DONE) {
Christopher Faulet58d03682017-09-21 16:57:24 +02002595 spoe_process_actions(s, ctx, dir);
Christopher Faulet8ef75252017-02-20 22:56:03 +01002596 ret = 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002597 ctx->frame_id++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002598 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002599 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002600 }
2601
2602 out:
2603 return ret;
2604
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002605 error:
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002606 spoe_handle_processing_error(s, agent, ctx, dir);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002607 ret = 1;
2608 goto end;
2609
2610 skip:
2611 ctx->state = SPOE_CTX_ST_READY;
2612 ret = 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002613
Christopher Fauleta1cda022016-12-21 08:58:06 +01002614 end:
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002615 spoe_stop_processing(agent, ctx);
Christopher Faulet58d03682017-09-21 16:57:24 +02002616 return ret;
2617}
2618
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002619/* Process a SPOE group, ie the list of messages attached to the group <grp>.
2620 * See spoe_process_message for details. */
2621static int
2622spoe_process_group(struct stream *s, struct spoe_context *ctx,
2623 struct spoe_group *group, int dir)
2624{
2625 int ret;
2626
2627 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2628 " - ctx-state=%s - Process messages for group=%s\n",
2629 (int)now.tv_sec, (int)now.tv_usec,
2630 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id,
2631 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
2632 group->id);
2633
2634 if (LIST_ISEMPTY(&group->messages))
2635 return 1;
2636
2637 ret = spoe_process_messages(s, ctx, &group->messages, dir, SPOE_MSGS_BY_GROUP);
2638 return ret;
2639}
2640
Christopher Faulet58d03682017-09-21 16:57:24 +02002641/* Process a SPOE event, ie the list of messages attached to the event <ev>.
2642 * See spoe_process_message for details. */
2643static int
2644spoe_process_event(struct stream *s, struct spoe_context *ctx,
2645 enum spoe_event ev)
2646{
2647 int dir, ret;
2648
2649 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002650 " - ctx-state=%s - Process messages for event=%s\n",
Christopher Faulet58d03682017-09-21 16:57:24 +02002651 (int)now.tv_sec, (int)now.tv_usec,
2652 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id,
2653 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
2654 spoe_event_str[ev]);
2655
2656 dir = ((ev < SPOE_EV_ON_SERVER_SESS) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES);
2657
2658 if (LIST_ISEMPTY(&(ctx->events[ev])))
2659 return 1;
2660
2661 ret = spoe_process_messages(s, ctx, &(ctx->events[ev]), dir, SPOE_MSGS_BY_EVENT);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002662 return ret;
2663}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002664
2665/***************************************************************************
2666 * Functions that create/destroy SPOE contexts
2667 **************************************************************************/
Christopher Fauleta1cda022016-12-21 08:58:06 +01002668static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002669spoe_acquire_buffer(struct buffer **buf, struct buffer_wait *buffer_wait)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002670{
Christopher Faulet600d37e2017-11-10 11:54:58 +01002671 if ((*buf)->size)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002672 return 1;
2673
Christopher Faulet4596fb72017-01-11 14:05:19 +01002674 if (!LIST_ISEMPTY(&buffer_wait->list)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002675 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Faulet4596fb72017-01-11 14:05:19 +01002676 LIST_DEL(&buffer_wait->list);
2677 LIST_INIT(&buffer_wait->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002678 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002679 }
2680
Christopher Faulet4596fb72017-01-11 14:05:19 +01002681 if (b_alloc_margin(buf, global.tune.reserved_bufs))
Christopher Fauleta1cda022016-12-21 08:58:06 +01002682 return 1;
2683
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002684 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Faulet4596fb72017-01-11 14:05:19 +01002685 LIST_ADDQ(&buffer_wq, &buffer_wait->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002686 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002687 return 0;
2688}
2689
2690static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002691spoe_release_buffer(struct buffer **buf, struct buffer_wait *buffer_wait)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002692{
Christopher Faulet4596fb72017-01-11 14:05:19 +01002693 if (!LIST_ISEMPTY(&buffer_wait->list)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002694 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Faulet4596fb72017-01-11 14:05:19 +01002695 LIST_DEL(&buffer_wait->list);
2696 LIST_INIT(&buffer_wait->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002697 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002698 }
2699
2700 /* Release the buffer if needed */
Christopher Faulet600d37e2017-11-10 11:54:58 +01002701 if ((*buf)->size) {
Christopher Faulet4596fb72017-01-11 14:05:19 +01002702 b_free(buf);
2703 offer_buffers(buffer_wait->target,
2704 tasks_run_queue + applets_active_queue);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002705 }
2706}
2707
Christopher Faulet4596fb72017-01-11 14:05:19 +01002708static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002709spoe_wakeup_context(struct spoe_context *ctx)
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002710{
2711 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
2712 return 1;
2713}
2714
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002715static struct spoe_context *
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002716spoe_create_context(struct stream *s, struct filter *filter)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002717{
2718 struct spoe_config *conf = FLT_CONF(filter);
2719 struct spoe_context *ctx;
2720
Willy Tarreaubafbe012017-11-24 17:34:44 +01002721 ctx = pool_alloc_dirty(pool_head_spoe_ctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002722 if (ctx == NULL) {
2723 return NULL;
2724 }
2725 memset(ctx, 0, sizeof(*ctx));
Christopher Fauletb067b062017-01-04 16:39:11 +01002726 ctx->filter = filter;
2727 ctx->state = SPOE_CTX_ST_NONE;
2728 ctx->status_code = SPOE_CTX_ERR_NONE;
2729 ctx->flags = 0;
Christopher Faulet11610f32017-09-21 10:23:10 +02002730 ctx->events = conf->agent->events;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02002731 ctx->groups = &conf->agent->groups;
Christopher Fauletb067b062017-01-04 16:39:11 +01002732 ctx->buffer = &buf_empty;
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002733 LIST_INIT(&ctx->buffer_wait.list);
2734 ctx->buffer_wait.target = ctx;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002735 ctx->buffer_wait.wakeup_cb = (int (*)(void *))spoe_wakeup_context;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002736 LIST_INIT(&ctx->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002737
Christopher Fauletf7a30922016-11-10 15:04:51 +01002738 ctx->stream_id = 0;
2739 ctx->frame_id = 1;
2740 ctx->process_exp = TICK_ETERNITY;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002741
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002742 ctx->strm = s;
2743 ctx->state = SPOE_CTX_ST_READY;
2744 filter->ctx = ctx;
2745
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002746 return ctx;
2747}
2748
2749static void
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002750spoe_destroy_context(struct filter *filter)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002751{
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002752 struct spoe_config *conf = FLT_CONF(filter);
2753 struct spoe_context *ctx = filter->ctx;
2754
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002755 if (!ctx)
2756 return;
2757
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002758 spoe_stop_processing(conf->agent, ctx);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002759 pool_free(pool_head_spoe_ctx, ctx);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002760 filter->ctx = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002761}
2762
2763static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002764spoe_reset_context(struct spoe_context *ctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002765{
2766 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01002767 ctx->flags &= ~(SPOE_CTX_FL_PROCESS|SPOE_CTX_FL_FRAGMENTED);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002768}
2769
2770
2771/***************************************************************************
2772 * Hooks that manage the filter lifecycle (init/check/deinit)
2773 **************************************************************************/
2774/* Signal handler: Do a soft stop, wakeup SPOE applet */
2775static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002776spoe_sig_stop(struct sig_handler *sh)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002777{
2778 struct proxy *p;
2779
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002780 p = proxies_list;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002781 while (p) {
2782 struct flt_conf *fconf;
2783
2784 list_for_each_entry(fconf, &p->filter_configs, list) {
Christopher Faulet3b386a32017-02-23 10:17:15 +01002785 struct spoe_config *conf;
2786 struct spoe_agent *agent;
Christopher Faulet42bfa462017-01-04 14:14:19 +01002787 struct spoe_appctx *spoe_appctx;
Christopher Faulet24289f22017-09-25 14:48:02 +02002788 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002789
Christopher Faulet3b386a32017-02-23 10:17:15 +01002790 if (fconf->id != spoe_filter_id)
2791 continue;
2792
2793 conf = fconf->conf;
2794 agent = conf->agent;
2795
Christopher Faulet24289f22017-09-25 14:48:02 +02002796 for (i = 0; i < global.nbthread; ++i) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002797 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &agent->rt[i].lock);
Christopher Faulet24289f22017-09-25 14:48:02 +02002798 list_for_each_entry(spoe_appctx, &agent->rt[i].applets, list)
2799 spoe_wakeup_appctx(spoe_appctx->owner);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002800 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &agent->rt[i].lock);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002801 }
2802 }
2803 p = p->next;
2804 }
2805}
2806
2807
2808/* Initialize the SPOE filter. Returns -1 on error, else 0. */
2809static int
2810spoe_init(struct proxy *px, struct flt_conf *fconf)
2811{
2812 struct spoe_config *conf = fconf->conf;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002813
2814 memset(&conf->agent_fe, 0, sizeof(conf->agent_fe));
2815 init_new_proxy(&conf->agent_fe);
2816 conf->agent_fe.parent = conf->agent;
2817 conf->agent_fe.last_change = now.tv_sec;
2818 conf->agent_fe.id = conf->agent->id;
2819 conf->agent_fe.cap = PR_CAP_FE;
2820 conf->agent_fe.mode = PR_MODE_TCP;
2821 conf->agent_fe.maxconn = 0;
2822 conf->agent_fe.options2 |= PR_O2_INDEPSTR;
2823 conf->agent_fe.conn_retries = CONN_RETRIES;
2824 conf->agent_fe.accept = frontend_accept;
2825 conf->agent_fe.srv = NULL;
2826 conf->agent_fe.timeout.client = TICK_ETERNITY;
2827 conf->agent_fe.default_target = &spoe_applet.obj_type;
2828 conf->agent_fe.fe_req_ana = AN_REQ_SWITCHING_RULES;
2829
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002830 if (!sighandler_registered) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01002831 signal_register_fct(0, spoe_sig_stop, 0);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002832 sighandler_registered = 1;
2833 }
2834
2835 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002836}
2837
2838/* Free ressources allocated by the SPOE filter. */
2839static void
2840spoe_deinit(struct proxy *px, struct flt_conf *fconf)
2841{
2842 struct spoe_config *conf = fconf->conf;
2843
2844 if (conf) {
2845 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002846
Christopher Faulet8ef75252017-02-20 22:56:03 +01002847 spoe_release_agent(agent);
Christopher Faulet7ee86672017-09-19 11:08:28 +02002848 free(conf->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002849 free(conf);
2850 }
2851 fconf->conf = NULL;
2852}
2853
2854/* Check configuration of a SPOE filter for a specified proxy.
2855 * Return 1 on error, else 0. */
2856static int
2857spoe_check(struct proxy *px, struct flt_conf *fconf)
2858{
Christopher Faulet7ee86672017-09-19 11:08:28 +02002859 struct flt_conf *f;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002860 struct spoe_config *conf = fconf->conf;
2861 struct proxy *target;
2862
Christopher Faulet7ee86672017-09-19 11:08:28 +02002863 /* Check all SPOE filters for proxy <px> to be sure all SPOE agent names
2864 * are uniq */
2865 list_for_each_entry(f, &px->filter_configs, list) {
2866 struct spoe_config *c = f->conf;
2867
2868 /* This is not an SPOE filter */
2869 if (f->id != spoe_filter_id)
2870 continue;
2871 /* This is the current SPOE filter */
2872 if (f == fconf)
2873 continue;
2874
2875 /* Check engine Id. It should be uniq */
2876 if (!strcmp(conf->id, c->id)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002877 ha_alert("Proxy %s : duplicated name for SPOE engine '%s'.\n",
2878 px->id, conf->id);
Christopher Faulet7ee86672017-09-19 11:08:28 +02002879 return 1;
2880 }
2881 }
2882
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002883 target = proxy_be_by_name(conf->agent->b.name);
2884 if (target == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002885 ha_alert("Proxy %s : unknown backend '%s' used by SPOE agent '%s'"
2886 " declared at %s:%d.\n",
2887 px->id, conf->agent->b.name, conf->agent->id,
2888 conf->agent->conf.file, conf->agent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002889 return 1;
2890 }
2891 if (target->mode != PR_MODE_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002892 ha_alert("Proxy %s : backend '%s' used by SPOE agent '%s' declared"
2893 " at %s:%d does not support HTTP mode.\n",
2894 px->id, target->id, conf->agent->id,
2895 conf->agent->conf.file, conf->agent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002896 return 1;
2897 }
2898
2899 free(conf->agent->b.name);
2900 conf->agent->b.name = NULL;
2901 conf->agent->b.be = target;
2902 return 0;
2903}
2904
2905/**************************************************************************
2906 * Hooks attached to a stream
2907 *************************************************************************/
2908/* Called when a filter instance is created and attach to a stream. It creates
2909 * the context that will be used to process this stream. */
2910static int
2911spoe_start(struct stream *s, struct filter *filter)
2912{
Christopher Faulet72bcc472017-01-04 16:39:41 +01002913 struct spoe_config *conf = FLT_CONF(filter);
2914 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002915 struct spoe_context *ctx;
2916
2917 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p\n",
Christopher Faulet72bcc472017-01-04 16:39:41 +01002918 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002919 __FUNCTION__, s);
2920
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002921 if ((ctx = spoe_create_context(s, filter)) == NULL) {
Christopher Faulet72bcc472017-01-04 16:39:41 +01002922 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2923 " - failed to create SPOE context\n",
2924 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletccbc3fd2017-09-15 11:51:18 +02002925 __FUNCTION__, s);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002926 send_log(s->be, LOG_EMERG,
Christopher Faulet72bcc472017-01-04 16:39:41 +01002927 "SPOE: [%s] failed to create SPOE context\n",
2928 agent->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002929 return 0;
2930 }
2931
Christopher Faulet11610f32017-09-21 10:23:10 +02002932 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_REQ_FE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002933 filter->pre_analyzers |= AN_REQ_INSPECT_FE;
2934
Christopher Faulet11610f32017-09-21 10:23:10 +02002935 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_REQ_BE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002936 filter->pre_analyzers |= AN_REQ_INSPECT_BE;
2937
Christopher Faulet11610f32017-09-21 10:23:10 +02002938 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_RSP]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002939 filter->pre_analyzers |= AN_RES_INSPECT;
2940
Christopher Faulet11610f32017-09-21 10:23:10 +02002941 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_REQ_FE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002942 filter->pre_analyzers |= AN_REQ_HTTP_PROCESS_FE;
2943
Christopher Faulet11610f32017-09-21 10:23:10 +02002944 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_REQ_BE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002945 filter->pre_analyzers |= AN_REQ_HTTP_PROCESS_BE;
2946
Christopher Faulet11610f32017-09-21 10:23:10 +02002947 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_RSP]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002948 filter->pre_analyzers |= AN_RES_HTTP_PROCESS_FE;
2949
2950 return 1;
2951}
2952
2953/* Called when a filter instance is detached from a stream. It release the
2954 * attached SPOE context. */
2955static void
2956spoe_stop(struct stream *s, struct filter *filter)
2957{
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002958 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p\n",
2959 (int)now.tv_sec, (int)now.tv_usec,
2960 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
2961 __FUNCTION__, s);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002962 spoe_destroy_context(filter);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002963}
2964
Christopher Fauletf7a30922016-11-10 15:04:51 +01002965
2966/*
2967 * Called when the stream is woken up because of expired timer.
2968 */
2969static void
2970spoe_check_timeouts(struct stream *s, struct filter *filter)
2971{
2972 struct spoe_context *ctx = filter->ctx;
2973
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002974 if (tick_is_expired(ctx->process_exp, now_ms)) {
2975 s->pending_events |= TASK_WOKEN_MSG;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002976 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002977 }
Christopher Fauletf7a30922016-11-10 15:04:51 +01002978}
2979
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002980/* Called when we are ready to filter data on a channel */
2981static int
2982spoe_start_analyze(struct stream *s, struct filter *filter, struct channel *chn)
2983{
2984 struct spoe_context *ctx = filter->ctx;
2985 int ret = 1;
2986
2987 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
2988 " - ctx-flags=0x%08x\n",
2989 (int)now.tv_sec, (int)now.tv_usec,
2990 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
2991 __FUNCTION__, s, spoe_ctx_state_str[ctx->state], ctx->flags);
2992
Christopher Fauletb067b062017-01-04 16:39:11 +01002993 if (ctx->state == SPOE_CTX_ST_NONE)
2994 goto out;
2995
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002996 if (!(chn->flags & CF_ISRESP)) {
2997 if (filter->pre_analyzers & AN_REQ_INSPECT_FE)
2998 chn->analysers |= AN_REQ_INSPECT_FE;
2999 if (filter->pre_analyzers & AN_REQ_INSPECT_BE)
3000 chn->analysers |= AN_REQ_INSPECT_BE;
3001
3002 if (ctx->flags & SPOE_CTX_FL_CLI_CONNECTED)
3003 goto out;
3004
3005 ctx->stream_id = s->uniq_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +01003006 ret = spoe_process_event(s, ctx, SPOE_EV_ON_CLIENT_SESS);
Christopher Fauletb067b062017-01-04 16:39:11 +01003007 if (!ret)
3008 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003009 ctx->flags |= SPOE_CTX_FL_CLI_CONNECTED;
3010 }
3011 else {
3012 if (filter->pre_analyzers & SPOE_EV_ON_TCP_RSP)
3013 chn->analysers |= AN_RES_INSPECT;
3014
3015 if (ctx->flags & SPOE_CTX_FL_SRV_CONNECTED)
3016 goto out;
3017
Christopher Faulet8ef75252017-02-20 22:56:03 +01003018 ret = spoe_process_event(s, ctx, SPOE_EV_ON_SERVER_SESS);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003019 if (!ret) {
3020 channel_dont_read(chn);
3021 channel_dont_close(chn);
Christopher Fauletb067b062017-01-04 16:39:11 +01003022 goto out;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003023 }
Christopher Fauletb067b062017-01-04 16:39:11 +01003024 ctx->flags |= SPOE_CTX_FL_SRV_CONNECTED;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003025 }
3026
3027 out:
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003028 return ret;
3029}
3030
3031/* Called before a processing happens on a given channel */
3032static int
3033spoe_chn_pre_analyze(struct stream *s, struct filter *filter,
3034 struct channel *chn, unsigned an_bit)
3035{
3036 struct spoe_context *ctx = filter->ctx;
3037 int ret = 1;
3038
3039 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3040 " - ctx-flags=0x%08x - ana=0x%08x\n",
3041 (int)now.tv_sec, (int)now.tv_usec,
3042 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3043 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
3044 ctx->flags, an_bit);
3045
Christopher Fauletb067b062017-01-04 16:39:11 +01003046 if (ctx->state == SPOE_CTX_ST_NONE)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003047 goto out;
3048
3049 switch (an_bit) {
3050 case AN_REQ_INSPECT_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003051 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_REQ_FE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003052 break;
3053 case AN_REQ_INSPECT_BE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003054 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_REQ_BE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003055 break;
3056 case AN_RES_INSPECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003057 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_RSP);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003058 break;
3059 case AN_REQ_HTTP_PROCESS_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003060 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_REQ_FE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003061 break;
3062 case AN_REQ_HTTP_PROCESS_BE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003063 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_REQ_BE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003064 break;
3065 case AN_RES_HTTP_PROCESS_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003066 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_RSP);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003067 break;
3068 }
3069
3070 out:
Christopher Faulet9cdca972018-02-01 08:45:45 +01003071 if (!ret && (chn->flags & CF_ISRESP)) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003072 channel_dont_read(chn);
3073 channel_dont_close(chn);
3074 }
3075 return ret;
3076}
3077
3078/* Called when the filtering on the channel ends. */
3079static int
3080spoe_end_analyze(struct stream *s, struct filter *filter, struct channel *chn)
3081{
3082 struct spoe_context *ctx = filter->ctx;
3083
3084 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3085 " - ctx-flags=0x%08x\n",
3086 (int)now.tv_sec, (int)now.tv_usec,
3087 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3088 __FUNCTION__, s, spoe_ctx_state_str[ctx->state], ctx->flags);
3089
3090 if (!(ctx->flags & SPOE_CTX_FL_PROCESS)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01003091 spoe_reset_context(ctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003092 }
3093
3094 return 1;
3095}
3096
3097/********************************************************************
3098 * Functions that manage the filter initialization
3099 ********************************************************************/
3100struct flt_ops spoe_ops = {
3101 /* Manage SPOE filter, called for each filter declaration */
3102 .init = spoe_init,
3103 .deinit = spoe_deinit,
3104 .check = spoe_check,
3105
3106 /* Handle start/stop of SPOE */
Christopher Fauletf7a30922016-11-10 15:04:51 +01003107 .attach = spoe_start,
3108 .detach = spoe_stop,
3109 .check_timeouts = spoe_check_timeouts,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003110
3111 /* Handle channels activity */
3112 .channel_start_analyze = spoe_start_analyze,
3113 .channel_pre_analyze = spoe_chn_pre_analyze,
3114 .channel_end_analyze = spoe_end_analyze,
3115};
3116
3117
3118static int
3119cfg_parse_spoe_agent(const char *file, int linenum, char **args, int kwm)
3120{
3121 const char *err;
3122 int i, err_code = 0;
3123
3124 if ((cfg_scope == NULL && curengine != NULL) ||
3125 (cfg_scope != NULL && curengine == NULL) ||
Christopher Faulete1405e52017-09-19 10:35:35 +02003126 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope)))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003127 goto out;
3128
3129 if (!strcmp(args[0], "spoe-agent")) { /* new spoe-agent section */
3130 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003131 ha_alert("parsing [%s:%d] : missing name for spoe-agent section.\n",
3132 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003133 err_code |= ERR_ALERT | ERR_ABORT;
3134 goto out;
3135 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003136 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3137 err_code |= ERR_ABORT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003138 goto out;
3139 }
3140
3141 err = invalid_char(args[1]);
3142 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003143 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3144 file, linenum, *err, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003145 err_code |= ERR_ALERT | ERR_ABORT;
3146 goto out;
3147 }
3148
3149 if (curagent != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003150 ha_alert("parsing [%s:%d] : another spoe-agent section previously defined.\n",
3151 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003152 err_code |= ERR_ALERT | ERR_ABORT;
3153 goto out;
3154 }
3155 if ((curagent = calloc(1, sizeof(*curagent))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003156 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003157 err_code |= ERR_ALERT | ERR_ABORT;
3158 goto out;
3159 }
3160
3161 curagent->id = strdup(args[1]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003162
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003163 curagent->conf.file = strdup(file);
3164 curagent->conf.line = linenum;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003165
3166 curagent->timeout.hello = TICK_ETERNITY;
3167 curagent->timeout.idle = TICK_ETERNITY;
Christopher Fauletf7a30922016-11-10 15:04:51 +01003168 curagent->timeout.processing = TICK_ETERNITY;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003169
3170 curagent->engine_id = NULL;
3171 curagent->var_pfx = NULL;
3172 curagent->var_on_error = NULL;
Christopher Faulet24289f22017-09-25 14:48:02 +02003173 curagent->flags = (SPOE_FL_PIPELINING | SPOE_FL_SND_FRAGMENTATION);
3174 if (global.nbthread == 1)
3175 curagent->flags |= SPOE_FL_ASYNC;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003176 curagent->cps_max = 0;
3177 curagent->eps_max = 0;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01003178 curagent->max_frame_size = MAX_FRAME_SIZE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01003179 curagent->max_fpa = 20;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003180
3181 for (i = 0; i < SPOE_EV_EVENTS; ++i)
Christopher Faulet11610f32017-09-21 10:23:10 +02003182 LIST_INIT(&curagent->events[i]);
3183 LIST_INIT(&curagent->groups);
3184 LIST_INIT(&curagent->messages);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003185
Christopher Faulet24289f22017-09-25 14:48:02 +02003186 if ((curagent->rt = calloc(global.nbthread, sizeof(*curagent->rt))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003187 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet24289f22017-09-25 14:48:02 +02003188 err_code |= ERR_ALERT | ERR_ABORT;
3189 goto out;
3190 }
3191 for (i = 0; i < global.nbthread; ++i) {
3192 curagent->rt[i].frame_size = curagent->max_frame_size;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01003193 SPOE_DEBUG_STMT(curagent->rt[i].applets_act = 0);
3194 SPOE_DEBUG_STMT(curagent->rt[i].applets_idle = 0);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01003195 curagent->rt[i].processing = 0;
Christopher Faulet24289f22017-09-25 14:48:02 +02003196 LIST_INIT(&curagent->rt[i].applets);
3197 LIST_INIT(&curagent->rt[i].sending_queue);
3198 LIST_INIT(&curagent->rt[i].waiting_queue);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003199 HA_SPIN_INIT(&curagent->rt[i].lock);
Christopher Faulet24289f22017-09-25 14:48:02 +02003200 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003201 }
3202 else if (!strcmp(args[0], "use-backend")) {
3203 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003204 ha_alert("parsing [%s:%d] : '%s' expects a backend name.\n",
3205 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003206 err_code |= ERR_ALERT | ERR_FATAL;
3207 goto out;
3208 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003209 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003210 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003211 free(curagent->b.name);
3212 curagent->b.name = strdup(args[1]);
3213 }
3214 else if (!strcmp(args[0], "messages")) {
3215 int cur_arg = 1;
3216 while (*args[cur_arg]) {
Christopher Faulet11610f32017-09-21 10:23:10 +02003217 struct spoe_placeholder *ph = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003218
Christopher Faulet11610f32017-09-21 10:23:10 +02003219 list_for_each_entry(ph, &curmphs, list) {
3220 if (!strcmp(ph->id, args[cur_arg])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003221 ha_alert("parsing [%s:%d]: spoe-message '%s' already used.\n",
3222 file, linenum, args[cur_arg]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003223 err_code |= ERR_ALERT | ERR_FATAL;
3224 goto out;
3225 }
3226 }
3227
Christopher Faulet11610f32017-09-21 10:23:10 +02003228 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003229 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003230 err_code |= ERR_ALERT | ERR_ABORT;
3231 goto out;
3232 }
Christopher Faulet11610f32017-09-21 10:23:10 +02003233 ph->id = strdup(args[cur_arg]);
3234 LIST_ADDQ(&curmphs, &ph->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003235 cur_arg++;
3236 }
3237 }
Christopher Faulet11610f32017-09-21 10:23:10 +02003238 else if (!strcmp(args[0], "groups")) {
3239 int cur_arg = 1;
3240 while (*args[cur_arg]) {
3241 struct spoe_placeholder *ph = NULL;
3242
3243 list_for_each_entry(ph, &curgphs, list) {
3244 if (!strcmp(ph->id, args[cur_arg])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003245 ha_alert("parsing [%s:%d]: spoe-group '%s' already used.\n",
3246 file, linenum, args[cur_arg]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003247 err_code |= ERR_ALERT | ERR_FATAL;
3248 goto out;
3249 }
3250 }
3251
3252 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003253 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003254 err_code |= ERR_ALERT | ERR_ABORT;
3255 goto out;
3256 }
3257 ph->id = strdup(args[cur_arg]);
3258 LIST_ADDQ(&curgphs, &ph->list);
3259 cur_arg++;
3260 }
3261 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003262 else if (!strcmp(args[0], "timeout")) {
3263 unsigned int *tv = NULL;
3264 const char *res;
3265 unsigned timeout;
3266
3267 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003268 ha_alert("parsing [%s:%d] : 'timeout' expects 'hello', 'idle' and 'processing'.\n",
3269 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003270 err_code |= ERR_ALERT | ERR_FATAL;
3271 goto out;
3272 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003273 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3274 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003275 if (!strcmp(args[1], "hello"))
3276 tv = &curagent->timeout.hello;
3277 else if (!strcmp(args[1], "idle"))
3278 tv = &curagent->timeout.idle;
Christopher Fauletf7a30922016-11-10 15:04:51 +01003279 else if (!strcmp(args[1], "processing"))
3280 tv = &curagent->timeout.processing;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003281 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003282 ha_alert("parsing [%s:%d] : 'timeout' supports 'hello', 'idle' or 'processing' (got %s).\n",
3283 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003284 err_code |= ERR_ALERT | ERR_FATAL;
3285 goto out;
3286 }
3287 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003288 ha_alert("parsing [%s:%d] : 'timeout %s' expects an integer value (in milliseconds).\n",
3289 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003290 err_code |= ERR_ALERT | ERR_FATAL;
3291 goto out;
3292 }
3293 res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
3294 if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003295 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'timeout %s'.\n",
3296 file, linenum, *res, args[1]);
Christopher Fauletecc537a2017-02-23 22:52:39 +01003297 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003298 goto out;
3299 }
3300 *tv = MS_TO_TICKS(timeout);
3301 }
3302 else if (!strcmp(args[0], "option")) {
3303 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003304 ha_alert("parsing [%s:%d]: '%s' expects an option name.\n",
3305 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003306 err_code |= ERR_ALERT | ERR_FATAL;
3307 goto out;
3308 }
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003309
Christopher Faulet305c6072017-02-23 16:17:53 +01003310 if (!strcmp(args[1], "pipelining")) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003311 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet305c6072017-02-23 16:17:53 +01003312 goto out;
Christopher Faulet305c6072017-02-23 16:17:53 +01003313 if (kwm == 1)
3314 curagent->flags &= ~SPOE_FL_PIPELINING;
3315 else
3316 curagent->flags |= SPOE_FL_PIPELINING;
3317 goto out;
3318 }
3319 else if (!strcmp(args[1], "async")) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003320 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet305c6072017-02-23 16:17:53 +01003321 goto out;
Christopher Faulet305c6072017-02-23 16:17:53 +01003322 if (kwm == 1)
3323 curagent->flags &= ~SPOE_FL_ASYNC;
Christopher Faulet24289f22017-09-25 14:48:02 +02003324 else {
3325 if (global.nbthread == 1)
3326 curagent->flags |= SPOE_FL_ASYNC;
3327 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003328 ha_warning("parsing [%s:%d] Async option is not supported with threads.\n",
3329 file, linenum);
Christopher Faulet24289f22017-09-25 14:48:02 +02003330 err_code |= ERR_WARN;
3331 }
3332 }
Christopher Faulet305c6072017-02-23 16:17:53 +01003333 goto out;
3334 }
Christopher Fauletcecd8522017-02-24 22:11:21 +01003335 else if (!strcmp(args[1], "send-frag-payload")) {
3336 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3337 goto out;
3338 if (kwm == 1)
3339 curagent->flags &= ~SPOE_FL_SND_FRAGMENTATION;
3340 else
3341 curagent->flags |= SPOE_FL_SND_FRAGMENTATION;
3342 goto out;
3343 }
Christopher Faulet305c6072017-02-23 16:17:53 +01003344
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003345 /* Following options does not support negation */
3346 if (kwm == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003347 ha_alert("parsing [%s:%d]: negation is not supported for option '%s'.\n",
3348 file, linenum, args[1]);
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003349 err_code |= ERR_ALERT | ERR_FATAL;
3350 goto out;
3351 }
3352
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003353 if (!strcmp(args[1], "var-prefix")) {
3354 char *tmp;
3355
3356 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003357 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3358 file, linenum, args[0],
3359 args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003360 err_code |= ERR_ALERT | ERR_FATAL;
3361 goto out;
3362 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003363 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3364 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003365 tmp = args[2];
3366 while (*tmp) {
3367 if (!isalnum(*tmp) && *tmp != '_' && *tmp != '.') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003368 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z_-.] chars.\n",
3369 file, linenum, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003370 err_code |= ERR_ALERT | ERR_FATAL;
3371 goto out;
3372 }
3373 tmp++;
3374 }
3375 curagent->var_pfx = strdup(args[2]);
3376 }
Etienne Carriereaec89892017-12-14 09:36:40 +00003377 else if (!strcmp(args[1], "force-set-var")) {
3378 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3379 goto out;
3380 curagent->flags |= SPOE_FL_FORCE_SET_VAR;
3381 }
Christopher Fauletea62c2a2016-11-14 10:54:21 +01003382 else if (!strcmp(args[1], "continue-on-error")) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003383 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Fauletea62c2a2016-11-14 10:54:21 +01003384 goto out;
Christopher Fauletea62c2a2016-11-14 10:54:21 +01003385 curagent->flags |= SPOE_FL_CONT_ON_ERR;
3386 }
Christopher Faulet985532d2016-11-16 15:36:19 +01003387 else if (!strcmp(args[1], "set-on-error")) {
3388 char *tmp;
3389
3390 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003391 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3392 file, linenum, args[0],
3393 args[1]);
Christopher Faulet985532d2016-11-16 15:36:19 +01003394 err_code |= ERR_ALERT | ERR_FATAL;
3395 goto out;
3396 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003397 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3398 goto out;
Christopher Faulet985532d2016-11-16 15:36:19 +01003399 tmp = args[2];
3400 while (*tmp) {
3401 if (!isalnum(*tmp) && *tmp != '_' && *tmp != '.') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003402 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z_-.] chars.\n",
3403 file, linenum, args[0], args[1]);
Christopher Faulet985532d2016-11-16 15:36:19 +01003404 err_code |= ERR_ALERT | ERR_FATAL;
3405 goto out;
3406 }
3407 tmp++;
3408 }
3409 curagent->var_on_error = strdup(args[2]);
3410 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003411 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003412 ha_alert("parsing [%s:%d]: option '%s' is not supported.\n",
3413 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003414 err_code |= ERR_ALERT | ERR_FATAL;
3415 goto out;
3416 }
Christopher Faulet48026722016-11-16 15:01:12 +01003417 }
3418 else if (!strcmp(args[0], "maxconnrate")) {
3419 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003420 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3421 file, linenum, args[0]);
Christopher Faulet48026722016-11-16 15:01:12 +01003422 err_code |= ERR_ALERT | ERR_FATAL;
3423 goto out;
3424 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003425 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet48026722016-11-16 15:01:12 +01003426 goto out;
Christopher Faulet48026722016-11-16 15:01:12 +01003427 curagent->cps_max = atol(args[1]);
3428 }
3429 else if (!strcmp(args[0], "maxerrrate")) {
3430 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003431 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3432 file, linenum, args[0]);
Christopher Faulet48026722016-11-16 15:01:12 +01003433 err_code |= ERR_ALERT | ERR_FATAL;
3434 goto out;
3435 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003436 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet48026722016-11-16 15:01:12 +01003437 goto out;
Christopher Faulet48026722016-11-16 15:01:12 +01003438 curagent->eps_max = atol(args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003439 }
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003440 else if (!strcmp(args[0], "max-frame-size")) {
3441 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003442 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3443 file, linenum, args[0]);
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003444 err_code |= ERR_ALERT | ERR_FATAL;
3445 goto out;
3446 }
3447 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3448 goto out;
3449 curagent->max_frame_size = atol(args[1]);
3450 if (curagent->max_frame_size < MIN_FRAME_SIZE ||
3451 curagent->max_frame_size > MAX_FRAME_SIZE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003452 ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument in the range [%d, %d].\n",
3453 file, linenum, args[0], MIN_FRAME_SIZE, MAX_FRAME_SIZE);
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003454 err_code |= ERR_ALERT | ERR_FATAL;
3455 goto out;
3456 }
3457 }
Christopher Faulete8ade382018-01-25 15:32:22 +01003458 else if (!strcmp(args[0], "max-waiting-frames")) {
3459 if (!*args[1]) {
3460 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3461 file, linenum, args[0]);
3462 err_code |= ERR_ALERT | ERR_FATAL;
3463 goto out;
3464 }
3465 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3466 goto out;
3467 curagent->max_fpa = atol(args[1]);
3468 if (curagent->max_fpa < 1) {
3469 ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument.\n",
3470 file, linenum, args[0]);
3471 err_code |= ERR_ALERT | ERR_FATAL;
3472 goto out;
3473 }
3474 }
Christopher Faulet336d3ef2017-12-22 10:00:55 +01003475 else if (!strcmp(args[0], "register-var-names")) {
3476 int cur_arg;
3477
3478 if (!*args[1]) {
3479 ha_alert("parsing [%s:%d] : '%s' expects one or more variable names.\n",
3480 file, linenum, args[0]);
3481 err_code |= ERR_ALERT | ERR_FATAL;
3482 goto out;
3483 }
3484 cur_arg = 1;
3485 while (*args[cur_arg]) {
3486 struct spoe_var_placeholder *vph;
3487
3488 if ((vph = calloc(1, sizeof(*vph))) == NULL) {
3489 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3490 err_code |= ERR_ALERT | ERR_ABORT;
3491 goto out;
3492 }
3493 if ((vph->name = strdup(args[cur_arg])) == NULL) {
3494 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3495 err_code |= ERR_ALERT | ERR_ABORT;
3496 goto out;
3497 }
3498 LIST_ADDQ(&curvars, &vph->list);
3499 cur_arg++;
3500 }
3501 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003502 else if (*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003503 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-agent section.\n",
3504 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003505 err_code |= ERR_ALERT | ERR_FATAL;
3506 goto out;
3507 }
3508 out:
3509 return err_code;
3510}
Christopher Faulet11610f32017-09-21 10:23:10 +02003511static int
3512cfg_parse_spoe_group(const char *file, int linenum, char **args, int kwm)
3513{
3514 struct spoe_group *grp;
3515 const char *err;
3516 int err_code = 0;
3517
3518 if ((cfg_scope == NULL && curengine != NULL) ||
3519 (cfg_scope != NULL && curengine == NULL) ||
3520 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope)))
3521 goto out;
3522
3523 if (!strcmp(args[0], "spoe-group")) { /* new spoe-group section */
3524 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003525 ha_alert("parsing [%s:%d] : missing name for spoe-group section.\n",
3526 file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003527 err_code |= ERR_ALERT | ERR_ABORT;
3528 goto out;
3529 }
3530 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3531 err_code |= ERR_ABORT;
3532 goto out;
3533 }
3534
3535 err = invalid_char(args[1]);
3536 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003537 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3538 file, linenum, *err, args[0], args[1]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003539 err_code |= ERR_ALERT | ERR_ABORT;
3540 goto out;
3541 }
3542
3543 list_for_each_entry(grp, &curgrps, list) {
3544 if (!strcmp(grp->id, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003545 ha_alert("parsing [%s:%d]: spoe-group section '%s' has the same"
3546 " name as another one declared at %s:%d.\n",
3547 file, linenum, args[1], grp->conf.file, grp->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02003548 err_code |= ERR_ALERT | ERR_FATAL;
3549 goto out;
3550 }
3551 }
3552
3553 if ((curgrp = calloc(1, sizeof(*curgrp))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003554 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003555 err_code |= ERR_ALERT | ERR_ABORT;
3556 goto out;
3557 }
3558
3559 curgrp->id = strdup(args[1]);
3560 curgrp->conf.file = strdup(file);
3561 curgrp->conf.line = linenum;
3562 LIST_INIT(&curgrp->phs);
3563 LIST_INIT(&curgrp->messages);
3564 LIST_ADDQ(&curgrps, &curgrp->list);
3565 }
3566 else if (!strcmp(args[0], "messages")) {
3567 int cur_arg = 1;
3568 while (*args[cur_arg]) {
3569 struct spoe_placeholder *ph = NULL;
3570
3571 list_for_each_entry(ph, &curgrp->phs, list) {
3572 if (!strcmp(ph->id, args[cur_arg])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003573 ha_alert("parsing [%s:%d]: spoe-message '%s' already used.\n",
3574 file, linenum, args[cur_arg]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003575 err_code |= ERR_ALERT | ERR_FATAL;
3576 goto out;
3577 }
3578 }
3579
3580 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003581 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003582 err_code |= ERR_ALERT | ERR_ABORT;
3583 goto out;
3584 }
3585 ph->id = strdup(args[cur_arg]);
3586 LIST_ADDQ(&curgrp->phs, &ph->list);
3587 cur_arg++;
3588 }
3589 }
3590 else if (*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003591 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-group section.\n",
3592 file, linenum, args[0]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003593 err_code |= ERR_ALERT | ERR_FATAL;
3594 goto out;
3595 }
3596 out:
3597 return err_code;
3598}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003599
3600static int
3601cfg_parse_spoe_message(const char *file, int linenum, char **args, int kwm)
3602{
3603 struct spoe_message *msg;
3604 struct spoe_arg *arg;
3605 const char *err;
3606 char *errmsg = NULL;
3607 int err_code = 0;
3608
3609 if ((cfg_scope == NULL && curengine != NULL) ||
3610 (cfg_scope != NULL && curengine == NULL) ||
Christopher Faulete1405e52017-09-19 10:35:35 +02003611 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope)))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003612 goto out;
3613
3614 if (!strcmp(args[0], "spoe-message")) { /* new spoe-message section */
3615 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003616 ha_alert("parsing [%s:%d] : missing name for spoe-message section.\n",
3617 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003618 err_code |= ERR_ALERT | ERR_ABORT;
3619 goto out;
3620 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003621 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3622 err_code |= ERR_ABORT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003623 goto out;
3624 }
3625
3626 err = invalid_char(args[1]);
3627 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003628 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3629 file, linenum, *err, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003630 err_code |= ERR_ALERT | ERR_ABORT;
3631 goto out;
3632 }
3633
3634 list_for_each_entry(msg, &curmsgs, list) {
3635 if (!strcmp(msg->id, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003636 ha_alert("parsing [%s:%d]: spoe-message section '%s' has the same"
3637 " name as another one declared at %s:%d.\n",
3638 file, linenum, args[1], msg->conf.file, msg->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003639 err_code |= ERR_ALERT | ERR_FATAL;
3640 goto out;
3641 }
3642 }
3643
3644 if ((curmsg = calloc(1, sizeof(*curmsg))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003645 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003646 err_code |= ERR_ALERT | ERR_ABORT;
3647 goto out;
3648 }
3649
3650 curmsg->id = strdup(args[1]);
3651 curmsg->id_len = strlen(curmsg->id);
3652 curmsg->event = SPOE_EV_NONE;
3653 curmsg->conf.file = strdup(file);
3654 curmsg->conf.line = linenum;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01003655 curmsg->nargs = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003656 LIST_INIT(&curmsg->args);
Christopher Faulet57583e42017-09-04 15:41:09 +02003657 LIST_INIT(&curmsg->acls);
Christopher Faulet11610f32017-09-21 10:23:10 +02003658 LIST_INIT(&curmsg->by_evt);
3659 LIST_INIT(&curmsg->by_grp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003660 LIST_ADDQ(&curmsgs, &curmsg->list);
3661 }
3662 else if (!strcmp(args[0], "args")) {
3663 int cur_arg = 1;
3664
3665 curproxy->conf.args.ctx = ARGC_SPOE;
3666 curproxy->conf.args.file = file;
3667 curproxy->conf.args.line = linenum;
3668 while (*args[cur_arg]) {
3669 char *delim = strchr(args[cur_arg], '=');
3670 int idx = 0;
3671
3672 if ((arg = calloc(1, sizeof(*arg))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003673 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003674 err_code |= ERR_ALERT | ERR_ABORT;
3675 goto out;
3676 }
3677
3678 if (!delim) {
3679 arg->name = NULL;
3680 arg->name_len = 0;
3681 delim = args[cur_arg];
3682 }
3683 else {
3684 arg->name = my_strndup(args[cur_arg], delim - args[cur_arg]);
3685 arg->name_len = delim - args[cur_arg];
3686 delim++;
3687 }
Christopher Fauletb0b42382017-02-23 22:41:09 +01003688 arg->expr = sample_parse_expr((char*[]){delim, NULL},
3689 &idx, file, linenum, &errmsg,
3690 &curproxy->conf.args);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003691 if (arg->expr == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003692 ha_alert("parsing [%s:%d] : '%s': %s.\n", file, linenum, args[0], errmsg);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003693 err_code |= ERR_ALERT | ERR_FATAL;
3694 free(arg->name);
3695 free(arg);
3696 goto out;
3697 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01003698 curmsg->nargs++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003699 LIST_ADDQ(&curmsg->args, &arg->list);
3700 cur_arg++;
3701 }
3702 curproxy->conf.args.file = NULL;
3703 curproxy->conf.args.line = 0;
3704 }
Christopher Faulet57583e42017-09-04 15:41:09 +02003705 else if (!strcmp(args[0], "acl")) {
3706 err = invalid_char(args[1]);
3707 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003708 ha_alert("parsing [%s:%d] : character '%c' is not permitted in acl name '%s'.\n",
3709 file, linenum, *err, args[1]);
Christopher Faulet57583e42017-09-04 15:41:09 +02003710 err_code |= ERR_ALERT | ERR_FATAL;
3711 goto out;
3712 }
3713 if (parse_acl((const char **)args + 1, &curmsg->acls, &errmsg, &curproxy->conf.args, file, linenum) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003714 ha_alert("parsing [%s:%d] : error detected while parsing ACL '%s' : %s.\n",
3715 file, linenum, args[1], errmsg);
Christopher Faulet57583e42017-09-04 15:41:09 +02003716 err_code |= ERR_ALERT | ERR_FATAL;
3717 goto out;
3718 }
3719 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003720 else if (!strcmp(args[0], "event")) {
3721 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003722 ha_alert("parsing [%s:%d] : missing event name.\n", file, linenum);
Christopher Fauletecc537a2017-02-23 22:52:39 +01003723 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003724 goto out;
3725 }
Christopher Faulet57583e42017-09-04 15:41:09 +02003726 /* if (alertif_too_many_args(1, file, linenum, args, &err_code)) */
3727 /* goto out; */
Christopher Fauletecc537a2017-02-23 22:52:39 +01003728
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003729 if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_CLIENT_SESS]))
3730 curmsg->event = SPOE_EV_ON_CLIENT_SESS;
3731 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_SERVER_SESS]))
3732 curmsg->event = SPOE_EV_ON_SERVER_SESS;
3733
3734 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_REQ_FE]))
3735 curmsg->event = SPOE_EV_ON_TCP_REQ_FE;
3736 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_REQ_BE]))
3737 curmsg->event = SPOE_EV_ON_TCP_REQ_BE;
3738 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_RSP]))
3739 curmsg->event = SPOE_EV_ON_TCP_RSP;
3740
3741 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_REQ_FE]))
3742 curmsg->event = SPOE_EV_ON_HTTP_REQ_FE;
3743 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_REQ_BE]))
3744 curmsg->event = SPOE_EV_ON_HTTP_REQ_BE;
3745 else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_RSP]))
3746 curmsg->event = SPOE_EV_ON_HTTP_RSP;
3747 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003748 ha_alert("parsing [%s:%d] : unkown event '%s'.\n",
3749 file, linenum, args[1]);
Christopher Fauletecc537a2017-02-23 22:52:39 +01003750 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003751 goto out;
3752 }
Christopher Faulet57583e42017-09-04 15:41:09 +02003753
3754 if (strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0) {
3755 struct acl_cond *cond;
3756
3757 cond = build_acl_cond(file, linenum, &curmsg->acls,
3758 curproxy, (const char **)args+2,
3759 &errmsg);
3760 if (cond == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003761 ha_alert("parsing [%s:%d] : error detected while "
3762 "parsing an 'event %s' condition : %s.\n",
3763 file, linenum, args[1], errmsg);
Christopher Faulet57583e42017-09-04 15:41:09 +02003764 err_code |= ERR_ALERT | ERR_FATAL;
3765 goto out;
3766 }
3767 curmsg->cond = cond;
3768 }
3769 else if (*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003770 ha_alert("parsing [%s:%d]: 'event %s' expects either 'if' "
3771 "or 'unless' followed by a condition but found '%s'.\n",
3772 file, linenum, args[1], args[2]);
Christopher Faulet57583e42017-09-04 15:41:09 +02003773 err_code |= ERR_ALERT | ERR_FATAL;
3774 goto out;
3775 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003776 }
3777 else if (!*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003778 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-message section.\n",
3779 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003780 err_code |= ERR_ALERT | ERR_FATAL;
3781 goto out;
3782 }
3783 out:
3784 free(errmsg);
3785 return err_code;
3786}
3787
3788/* Return -1 on error, else 0 */
3789static int
3790parse_spoe_flt(char **args, int *cur_arg, struct proxy *px,
3791 struct flt_conf *fconf, char **err, void *private)
3792{
3793 struct list backup_sections;
3794 struct spoe_config *conf;
3795 struct spoe_message *msg, *msgback;
Christopher Faulet11610f32017-09-21 10:23:10 +02003796 struct spoe_group *grp, *grpback;
3797 struct spoe_placeholder *ph, *phback;
Christopher Faulet336d3ef2017-12-22 10:00:55 +01003798 struct spoe_var_placeholder *vph, *vphback;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003799 char *file = NULL, *engine = NULL;
3800 int ret, pos = *cur_arg + 1;
3801
3802 conf = calloc(1, sizeof(*conf));
3803 if (conf == NULL) {
3804 memprintf(err, "%s: out of memory", args[*cur_arg]);
3805 goto error;
3806 }
3807 conf->proxy = px;
3808
3809 while (*args[pos]) {
3810 if (!strcmp(args[pos], "config")) {
3811 if (!*args[pos+1]) {
3812 memprintf(err, "'%s' : '%s' option without value",
3813 args[*cur_arg], args[pos]);
3814 goto error;
3815 }
3816 file = args[pos+1];
3817 pos += 2;
3818 }
3819 else if (!strcmp(args[pos], "engine")) {
3820 if (!*args[pos+1]) {
3821 memprintf(err, "'%s' : '%s' option without value",
3822 args[*cur_arg], args[pos]);
3823 goto error;
3824 }
3825 engine = args[pos+1];
3826 pos += 2;
3827 }
3828 else {
3829 memprintf(err, "unknown keyword '%s'", args[pos]);
3830 goto error;
3831 }
3832 }
3833 if (file == NULL) {
3834 memprintf(err, "'%s' : missing config file", args[*cur_arg]);
3835 goto error;
3836 }
3837
3838 /* backup sections and register SPOE sections */
3839 LIST_INIT(&backup_sections);
3840 cfg_backup_sections(&backup_sections);
Christopher Faulet11610f32017-09-21 10:23:10 +02003841 cfg_register_section("spoe-agent", cfg_parse_spoe_agent, NULL);
3842 cfg_register_section("spoe-group", cfg_parse_spoe_group, NULL);
William Lallemandd2ff56d2017-10-16 11:06:50 +02003843 cfg_register_section("spoe-message", cfg_parse_spoe_message, NULL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003844
3845 /* Parse SPOE filter configuration file */
3846 curengine = engine;
3847 curproxy = px;
3848 curagent = NULL;
3849 curmsg = NULL;
Christopher Faulet11610f32017-09-21 10:23:10 +02003850 LIST_INIT(&curmsgs);
3851 LIST_INIT(&curgrps);
3852 LIST_INIT(&curmphs);
3853 LIST_INIT(&curgphs);
Christopher Faulet336d3ef2017-12-22 10:00:55 +01003854 LIST_INIT(&curvars);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003855 ret = readcfgfile(file);
3856 curproxy = NULL;
3857
3858 /* unregister SPOE sections and restore previous sections */
3859 cfg_unregister_sections();
3860 cfg_restore_sections(&backup_sections);
3861
3862 if (ret == -1) {
3863 memprintf(err, "Could not open configuration file %s : %s",
3864 file, strerror(errno));
3865 goto error;
3866 }
3867 if (ret & (ERR_ABORT|ERR_FATAL)) {
3868 memprintf(err, "Error(s) found in configuration file %s", file);
3869 goto error;
3870 }
3871
3872 /* Check SPOE agent */
3873 if (curagent == NULL) {
3874 memprintf(err, "No SPOE agent found in file %s", file);
3875 goto error;
3876 }
3877 if (curagent->b.name == NULL) {
3878 memprintf(err, "No backend declared for SPOE agent '%s' declared at %s:%d",
3879 curagent->id, curagent->conf.file, curagent->conf.line);
3880 goto error;
3881 }
Christopher Fauletf7a30922016-11-10 15:04:51 +01003882 if (curagent->timeout.hello == TICK_ETERNITY ||
3883 curagent->timeout.idle == TICK_ETERNITY ||
Christopher Fauletf7a30922016-11-10 15:04:51 +01003884 curagent->timeout.processing == TICK_ETERNITY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003885 ha_warning("Proxy '%s': missing timeouts for SPOE agent '%s' declare at %s:%d.\n"
3886 " | While not properly invalid, you will certainly encounter various problems\n"
3887 " | with such a configuration. To fix this, please ensure that all following\n"
3888 " | timeouts are set to a non-zero value: 'hello', 'idle', 'processing'.\n",
3889 px->id, curagent->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003890 }
3891 if (curagent->var_pfx == NULL) {
3892 char *tmp = curagent->id;
3893
3894 while (*tmp) {
3895 if (!isalnum(*tmp) && *tmp != '_' && *tmp != '.') {
3896 memprintf(err, "Invalid variable prefix '%s' for SPOE agent '%s' declared at %s:%d. "
3897 "Use 'option var-prefix' to set it. Only [a-zA-Z0-9_.] chars are supported.\n",
3898 curagent->id, curagent->id, curagent->conf.file, curagent->conf.line);
3899 goto error;
3900 }
3901 tmp++;
3902 }
3903 curagent->var_pfx = strdup(curagent->id);
3904 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01003905 if (curagent->engine_id == NULL)
3906 curagent->engine_id = generate_pseudo_uuid();
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003907
Christopher Faulet11610f32017-09-21 10:23:10 +02003908 if (LIST_ISEMPTY(&curmphs) && LIST_ISEMPTY(&curgphs)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003909 ha_warning("Proxy '%s': No message/group used by SPOE agent '%s' declared at %s:%d.\n",
3910 px->id, curagent->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003911 goto finish;
3912 }
3913
Christopher Faulet11610f32017-09-21 10:23:10 +02003914 /* Replace placeholders by the corresponding messages for the SPOE
3915 * agent */
3916 list_for_each_entry(ph, &curmphs, list) {
3917 list_for_each_entry(msg, &curmsgs, list) {
Christopher Fauleta21b0642017-01-09 16:56:23 +01003918 struct spoe_arg *arg;
3919 unsigned int where;
3920
Christopher Faulet11610f32017-09-21 10:23:10 +02003921 if (!strcmp(msg->id, ph->id)) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003922 if ((px->cap & (PR_CAP_FE|PR_CAP_BE)) == (PR_CAP_FE|PR_CAP_BE)) {
3923 if (msg->event == SPOE_EV_ON_TCP_REQ_BE)
3924 msg->event = SPOE_EV_ON_TCP_REQ_FE;
3925 if (msg->event == SPOE_EV_ON_HTTP_REQ_BE)
3926 msg->event = SPOE_EV_ON_HTTP_REQ_FE;
3927 }
3928 if (!(px->cap & PR_CAP_FE) && (msg->event == SPOE_EV_ON_CLIENT_SESS ||
3929 msg->event == SPOE_EV_ON_TCP_REQ_FE ||
3930 msg->event == SPOE_EV_ON_HTTP_REQ_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003931 ha_warning("Proxy '%s': frontend event used on a backend proxy at %s:%d.\n",
3932 px->id, msg->conf.file, msg->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02003933 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003934 }
3935 if (msg->event == SPOE_EV_NONE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003936 ha_warning("Proxy '%s': Ignore SPOE message '%s' without event at %s:%d.\n",
3937 px->id, msg->id, msg->conf.file, msg->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02003938 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003939 }
Christopher Fauleta21b0642017-01-09 16:56:23 +01003940
3941 where = 0;
3942 switch (msg->event) {
3943 case SPOE_EV_ON_CLIENT_SESS:
3944 where |= SMP_VAL_FE_CON_ACC;
3945 break;
3946
3947 case SPOE_EV_ON_TCP_REQ_FE:
3948 where |= SMP_VAL_FE_REQ_CNT;
3949 break;
3950
3951 case SPOE_EV_ON_HTTP_REQ_FE:
3952 where |= SMP_VAL_FE_HRQ_HDR;
3953 break;
3954
3955 case SPOE_EV_ON_TCP_REQ_BE:
3956 if (px->cap & PR_CAP_FE)
3957 where |= SMP_VAL_FE_REQ_CNT;
3958 if (px->cap & PR_CAP_BE)
3959 where |= SMP_VAL_BE_REQ_CNT;
3960 break;
3961
3962 case SPOE_EV_ON_HTTP_REQ_BE:
3963 if (px->cap & PR_CAP_FE)
3964 where |= SMP_VAL_FE_HRQ_HDR;
3965 if (px->cap & PR_CAP_BE)
3966 where |= SMP_VAL_BE_HRQ_HDR;
3967 break;
3968
3969 case SPOE_EV_ON_SERVER_SESS:
3970 where |= SMP_VAL_BE_SRV_CON;
3971 break;
3972
3973 case SPOE_EV_ON_TCP_RSP:
3974 if (px->cap & PR_CAP_FE)
3975 where |= SMP_VAL_FE_RES_CNT;
3976 if (px->cap & PR_CAP_BE)
3977 where |= SMP_VAL_BE_RES_CNT;
3978 break;
3979
3980 case SPOE_EV_ON_HTTP_RSP:
3981 if (px->cap & PR_CAP_FE)
3982 where |= SMP_VAL_FE_HRS_HDR;
3983 if (px->cap & PR_CAP_BE)
3984 where |= SMP_VAL_BE_HRS_HDR;
3985 break;
3986
3987 default:
3988 break;
3989 }
3990
3991 list_for_each_entry(arg, &msg->args, list) {
3992 if (!(arg->expr->fetch->val & where)) {
Christopher Faulet76c09ef2017-09-21 11:03:52 +02003993 memprintf(err, "Ignore SPOE message '%s' at %s:%d: "
Christopher Fauleta21b0642017-01-09 16:56:23 +01003994 "some args extract information from '%s', "
Christopher Faulet76c09ef2017-09-21 11:03:52 +02003995 "none of which is available here ('%s')",
3996 msg->id, msg->conf.file, msg->conf.line,
Christopher Fauleta21b0642017-01-09 16:56:23 +01003997 sample_ckp_names(arg->expr->fetch->use),
3998 sample_ckp_names(where));
Christopher Faulet76c09ef2017-09-21 11:03:52 +02003999 goto error;
Christopher Fauleta21b0642017-01-09 16:56:23 +01004000 }
4001 }
4002
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004003 msg->agent = curagent;
Christopher Faulet11610f32017-09-21 10:23:10 +02004004 LIST_ADDQ(&curagent->events[msg->event], &msg->by_evt);
4005 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004006 }
4007 }
4008 memprintf(err, "SPOE agent '%s' try to use undefined SPOE message '%s' at %s:%d",
Christopher Faulet11610f32017-09-21 10:23:10 +02004009 curagent->id, ph->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004010 goto error;
Christopher Faulet11610f32017-09-21 10:23:10 +02004011 next_mph:
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004012 continue;
4013 }
4014
Christopher Faulet11610f32017-09-21 10:23:10 +02004015 /* Replace placeholders by the corresponding groups for the SPOE
4016 * agent */
4017 list_for_each_entry(ph, &curgphs, list) {
4018 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
4019 if (!strcmp(grp->id, ph->id)) {
4020 grp->agent = curagent;
4021 LIST_DEL(&grp->list);
4022 LIST_ADDQ(&curagent->groups, &grp->list);
4023 goto next_aph;
4024 }
4025 }
4026 memprintf(err, "SPOE agent '%s' try to use undefined SPOE group '%s' at %s:%d",
4027 curagent->id, ph->id, curagent->conf.file, curagent->conf.line);
4028 goto error;
4029 next_aph:
4030 continue;
4031 }
4032
4033 /* Replace placeholders by the corresponding message for each SPOE
4034 * group of the SPOE agent */
4035 list_for_each_entry(grp, &curagent->groups, list) {
4036 list_for_each_entry_safe(ph, phback, &grp->phs, list) {
4037 list_for_each_entry(msg, &curmsgs, list) {
4038 if (!strcmp(msg->id, ph->id)) {
4039 if (msg->group != NULL) {
4040 memprintf(err, "SPOE message '%s' already belongs to "
4041 "the SPOE group '%s' declare at %s:%d",
4042 msg->id, msg->group->id,
4043 msg->group->conf.file,
4044 msg->group->conf.line);
4045 goto error;
4046 }
4047
4048 /* Scope for arguments are not checked for now. We will check
4049 * them only if a rule use the corresponding SPOE group. */
4050 msg->agent = curagent;
4051 msg->group = grp;
4052 LIST_DEL(&ph->list);
4053 LIST_ADDQ(&grp->messages, &msg->by_grp);
4054 goto next_mph_grp;
4055 }
4056 }
4057 memprintf(err, "SPOE group '%s' try to use undefined SPOE message '%s' at %s:%d",
4058 grp->id, ph->id, curagent->conf.file, curagent->conf.line);
4059 goto error;
4060 next_mph_grp:
4061 continue;
4062 }
4063 }
4064
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004065 finish:
Christopher Faulet11610f32017-09-21 10:23:10 +02004066 /* move curmsgs to the agent message list */
4067 curmsgs.n->p = &curagent->messages;
4068 curmsgs.p->n = &curagent->messages;
4069 curagent->messages = curmsgs;
4070 LIST_INIT(&curmsgs);
4071
Christopher Faulet7ee86672017-09-19 11:08:28 +02004072 conf->id = strdup(engine ? engine : curagent->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004073 conf->agent = curagent;
Christopher Faulet11610f32017-09-21 10:23:10 +02004074 list_for_each_entry_safe(ph, phback, &curmphs, list) {
4075 LIST_DEL(&ph->list);
4076 spoe_release_placeholder(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004077 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004078 list_for_each_entry_safe(ph, phback, &curgphs, list) {
4079 LIST_DEL(&ph->list);
4080 spoe_release_placeholder(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004081 }
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004082 list_for_each_entry_safe(vph, vphback, &curvars, list) {
4083 struct arg arg;
4084
4085 trash.len = snprintf(trash.str, trash.size, "proc.%s.%s",
4086 curagent->var_pfx, vph->name);
4087
4088 arg.type = ARGT_STR;
4089 arg.data.str.str = trash.str;
4090 arg.data.str.len = trash.len;
4091 if (!vars_check_arg(&arg, err)) {
4092 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4093 curagent->id, curagent->var_pfx, vph->name, *err);
4094 goto error;
4095 }
4096
4097 LIST_DEL(&vph->list);
4098 free(vph->name);
4099 free(vph);
4100 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004101 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
4102 LIST_DEL(&grp->list);
4103 spoe_release_group(grp);
4104 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004105 *cur_arg = pos;
Christopher Faulet3b386a32017-02-23 10:17:15 +01004106 fconf->id = spoe_filter_id;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004107 fconf->ops = &spoe_ops;
4108 fconf->conf = conf;
4109 return 0;
4110
4111 error:
Christopher Faulet8ef75252017-02-20 22:56:03 +01004112 spoe_release_agent(curagent);
Christopher Faulet11610f32017-09-21 10:23:10 +02004113 list_for_each_entry_safe(ph, phback, &curmphs, list) {
4114 LIST_DEL(&ph->list);
4115 spoe_release_placeholder(ph);
4116 }
4117 list_for_each_entry_safe(ph, phback, &curgphs, list) {
4118 LIST_DEL(&ph->list);
4119 spoe_release_placeholder(ph);
4120 }
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004121 list_for_each_entry_safe(vph, vphback, &curvars, list) {
4122 LIST_DEL(&vph->list);
4123 free(vph->name);
4124 free(vph);
4125 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004126 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
4127 LIST_DEL(&grp->list);
4128 spoe_release_group(grp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004129 }
4130 list_for_each_entry_safe(msg, msgback, &curmsgs, list) {
4131 LIST_DEL(&msg->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01004132 spoe_release_message(msg);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004133 }
4134 free(conf);
4135 return -1;
4136}
4137
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004138/* Send message of a SPOE group. This is the action_ptr callback of a rule
4139 * associated to a "send-spoe-group" action.
4140 *
4141 * It returns ACT_RET_CONT is processing is finished without error, it returns
4142 * ACT_RET_YIELD if the action is in progress. Otherwise it returns
4143 * ACT_RET_ERR. */
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004144static enum act_return
4145spoe_send_group(struct act_rule *rule, struct proxy *px,
4146 struct session *sess, struct stream *s, int flags)
4147{
4148 struct filter *filter;
4149 struct spoe_agent *agent = NULL;
4150 struct spoe_group *group = NULL;
4151 struct spoe_context *ctx = NULL;
4152 int ret, dir;
4153
4154 list_for_each_entry(filter, &s->strm_flt.filters, list) {
4155 if (filter->config == rule->arg.act.p[0]) {
4156 agent = rule->arg.act.p[2];
4157 group = rule->arg.act.p[3];
4158 ctx = filter->ctx;
4159 break;
4160 }
4161 }
4162 if (agent == NULL || group == NULL || ctx == NULL)
4163 return ACT_RET_ERR;
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004164 if (ctx->state == SPOE_CTX_ST_NONE)
4165 return ACT_RET_CONT;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004166
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004167 switch (rule->from) {
4168 case ACT_F_TCP_REQ_SES: dir = SMP_OPT_DIR_REQ; break;
4169 case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break;
4170 case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break;
4171 case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break;
4172 case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break;
4173 default:
4174 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
4175 " - internal error while execute spoe-send-group\n",
4176 (int)now.tv_sec, (int)now.tv_usec, agent->id,
4177 __FUNCTION__, s);
4178 send_log(px, LOG_ERR, "SPOE: [%s] internal error while execute spoe-send-group\n",
4179 agent->id);
4180 return ACT_RET_CONT;
4181 }
4182
4183 ret = spoe_process_group(s, ctx, group, dir);
4184 if (ret == 1)
4185 return ACT_RET_CONT;
4186 else if (ret == 0) {
4187 if (flags & ACT_FLAG_FINAL) {
4188 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
4189 " - failed to process group '%s': interrupted by caller\n",
4190 (int)now.tv_sec, (int)now.tv_usec,
4191 agent->id, __FUNCTION__, s, group->id);
4192 ctx->status_code = SPOE_CTX_ERR_INTERRUPT;
4193 spoe_handle_processing_error(s, agent, ctx, dir);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01004194 spoe_stop_processing(agent, ctx);
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004195 return ACT_RET_CONT;
4196 }
4197 return ACT_RET_YIELD;
4198 }
4199 else
4200 return ACT_RET_ERR;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004201}
4202
4203/* Check an "send-spoe-group" action. Here, we'll try to find the real SPOE
4204 * group associated to <rule>. The format of an rule using 'send-spoe-group'
4205 * action should be:
4206 *
4207 * (http|tcp)-(request|response) send-spoe-group <engine-id> <group-id>
4208 *
4209 * So, we'll loop on each configured SPOE filter for the proxy <px> to find the
4210 * SPOE engine matching <engine-id>. And then, we'll try to find the good group
4211 * matching <group-id>. Finally, we'll check all messages referenced by the SPOE
4212 * group.
4213 *
4214 * The function returns 1 in success case, otherwise, it returns 0 and err is
4215 * filled.
4216 */
4217static int
4218check_send_spoe_group(struct act_rule *rule, struct proxy *px, char **err)
4219{
4220 struct flt_conf *fconf;
4221 struct spoe_config *conf;
4222 struct spoe_agent *agent = NULL;
4223 struct spoe_group *group;
4224 struct spoe_message *msg;
4225 char *engine_id = rule->arg.act.p[0];
4226 char *group_id = rule->arg.act.p[1];
4227 unsigned int where = 0;
4228
4229 switch (rule->from) {
4230 case ACT_F_TCP_REQ_SES: where = SMP_VAL_FE_SES_ACC; break;
4231 case ACT_F_TCP_REQ_CNT: where = SMP_VAL_FE_REQ_CNT; break;
4232 case ACT_F_TCP_RES_CNT: where = SMP_VAL_BE_RES_CNT; break;
4233 case ACT_F_HTTP_REQ: where = SMP_VAL_FE_HRQ_HDR; break;
4234 case ACT_F_HTTP_RES: where = SMP_VAL_BE_HRS_HDR; break;
4235 default:
4236 memprintf(err,
4237 "internal error, unexpected rule->from=%d, please report this bug!",
4238 rule->from);
4239 goto error;
4240 }
4241
4242 /* Try to find the SPOE engine by checking all SPOE filters for proxy
4243 * <px> */
4244 list_for_each_entry(fconf, &px->filter_configs, list) {
4245 conf = fconf->conf;
4246
4247 /* This is not an SPOE filter */
4248 if (fconf->id != spoe_filter_id)
4249 continue;
4250
4251 /* This is the good engine */
4252 if (!strcmp(conf->id, engine_id)) {
4253 agent = conf->agent;
4254 break;
4255 }
4256 }
4257 if (agent == NULL) {
4258 memprintf(err, "unable to find SPOE engine '%s' used by the send-spoe-group '%s'",
4259 engine_id, group_id);
4260 goto error;
4261 }
4262
4263 /* Try to find the right group */
4264 list_for_each_entry(group, &agent->groups, list) {
4265 /* This is the good group */
4266 if (!strcmp(group->id, group_id))
4267 break;
4268 }
4269 if (&group->list == &agent->groups) {
4270 memprintf(err, "unable to find SPOE group '%s' into SPOE engine '%s' configuration",
4271 group_id, engine_id);
4272 goto error;
4273 }
4274
4275 /* Ok, we found the group, we need to check messages and their
4276 * arguments */
4277 list_for_each_entry(msg, &group->messages, by_grp) {
4278 struct spoe_arg *arg;
4279
4280 list_for_each_entry(arg, &msg->args, list) {
4281 if (!(arg->expr->fetch->val & where)) {
4282 memprintf(err, "Invalid SPOE message '%s' used by SPOE group '%s' at %s:%d: "
4283 "some args extract information from '%s',"
4284 "none of which is available here ('%s')",
4285 msg->id, group->id, msg->conf.file, msg->conf.line,
4286 sample_ckp_names(arg->expr->fetch->use),
4287 sample_ckp_names(where));
4288 goto error;
4289 }
4290 }
4291 }
4292
4293 free(engine_id);
4294 free(group_id);
4295 rule->arg.act.p[0] = fconf; /* Associate filter config with the rule */
4296 rule->arg.act.p[1] = conf; /* Associate SPOE config with the rule */
4297 rule->arg.act.p[2] = agent; /* Associate SPOE agent with the rule */
4298 rule->arg.act.p[3] = group; /* Associate SPOE group with the rule */
4299 return 1;
4300
4301 error:
4302 free(engine_id);
4303 free(group_id);
4304 return 0;
4305}
4306
4307/* Parse 'send-spoe-group' action following the format:
4308 *
4309 * ... send-spoe-group <engine-id> <group-id>
4310 *
4311 * It returns ACT_RET_PRS_ERR if fails and <err> is filled with an error
4312 * message. Otherwise, it returns ACT_RET_PRS_OK and parsing engine and group
4313 * ids are saved and used later, when the rule will be checked.
4314 */
4315static enum act_parse_ret
4316parse_send_spoe_group(const char **args, int *orig_arg, struct proxy *px,
4317 struct act_rule *rule, char **err)
4318{
4319 if (!*args[*orig_arg] || !*args[*orig_arg+1] ||
4320 (*args[*orig_arg+2] && strcmp(args[*orig_arg+2], "if") != 0 && strcmp(args[*orig_arg+2], "unless") != 0)) {
4321 memprintf(err, "expects 2 arguments: <engine-id> <group-id>");
4322 return ACT_RET_PRS_ERR;
4323 }
4324 rule->arg.act.p[0] = strdup(args[*orig_arg]); /* Copy the SPOE engine id */
4325 rule->arg.act.p[1] = strdup(args[*orig_arg+1]); /* Cope the SPOE group id */
4326
4327 (*orig_arg) += 2;
4328
4329 rule->action = ACT_CUSTOM;
4330 rule->action_ptr = spoe_send_group;
4331 rule->check_ptr = check_send_spoe_group;
4332 return ACT_RET_PRS_OK;
4333}
4334
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004335
4336/* Declare the filter parser for "spoe" keyword */
4337static struct flt_kw_list flt_kws = { "SPOE", { }, {
4338 { "spoe", parse_spoe_flt, NULL },
4339 { NULL, NULL, NULL },
4340 }
4341};
4342
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004343/* Delcate the action parser for "spoe-action" keyword */
4344static struct action_kw_list tcp_req_action_kws = { { }, {
4345 { "send-spoe-group", parse_send_spoe_group },
4346 { /* END */ },
4347 }
4348};
4349static struct action_kw_list tcp_res_action_kws = { { }, {
4350 { "send-spoe-group", parse_send_spoe_group },
4351 { /* END */ },
4352 }
4353};
4354static struct action_kw_list http_req_action_kws = { { }, {
4355 { "send-spoe-group", parse_send_spoe_group },
4356 { /* END */ },
4357 }
4358};
4359static struct action_kw_list http_res_action_kws = { { }, {
4360 { "send-spoe-group", parse_send_spoe_group },
4361 { /* END */ },
4362 }
4363};
4364
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004365__attribute__((constructor))
4366static void __spoe_init(void)
4367{
4368 flt_register_keywords(&flt_kws);
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004369 tcp_req_cont_keywords_register(&tcp_req_action_kws);
4370 tcp_res_cont_keywords_register(&tcp_res_action_kws);
4371 http_req_keywords_register(&http_req_action_kws);
4372 http_res_keywords_register(&http_res_action_kws);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004373
Willy Tarreaubafbe012017-11-24 17:34:44 +01004374 pool_head_spoe_ctx = create_pool("spoe_ctx", sizeof(struct spoe_context), MEM_F_SHARED);
4375 pool_head_spoe_appctx = create_pool("spoe_appctx", sizeof(struct spoe_appctx), MEM_F_SHARED);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004376}
4377
4378__attribute__((destructor))
4379static void
4380__spoe_deinit(void)
4381{
Willy Tarreaubafbe012017-11-24 17:34:44 +01004382 pool_destroy(pool_head_spoe_ctx);
4383 pool_destroy(pool_head_spoe_appctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004384}