Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1 | /* |
| 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 15 | #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 Brun | a1dd243 | 2017-06-21 15:42:52 +0200 | [diff] [blame] | 21 | #include <common/hathreads.h> |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 22 | |
| 23 | #include <types/arg.h> |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 24 | #include <types/global.h> |
Christopher Faulet | 1f40b91 | 2017-02-17 09:32:19 +0100 | [diff] [blame] | 25 | #include <types/spoe.h> |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 26 | |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 27 | #include <proto/acl.h> |
Christopher Faulet | 76c09ef | 2017-09-21 11:03:52 +0200 | [diff] [blame] | 28 | #include <proto/action.h> |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 29 | #include <proto/arg.h> |
| 30 | #include <proto/backend.h> |
| 31 | #include <proto/filters.h> |
Christopher Faulet | 4802672 | 2016-11-16 15:01:12 +0100 | [diff] [blame] | 32 | #include <proto/freq_ctr.h> |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 33 | #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 Faulet | 4ff3e57 | 2017-02-24 14:31:11 +0100 | [diff] [blame] | 40 | #include <proto/spoe.h> |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 41 | #include <proto/stream.h> |
| 42 | #include <proto/stream_interface.h> |
| 43 | #include <proto/task.h> |
Christopher Faulet | 76c09ef | 2017-09-21 11:03:52 +0200 | [diff] [blame] | 44 | #include <proto/tcp_rules.h> |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 45 | #include <proto/vars.h> |
| 46 | |
| 47 | #if defined(DEBUG_SPOE) || defined(DEBUG_FULL) |
| 48 | #define SPOE_PRINTF(x...) fprintf(x) |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 49 | #define SPOE_DEBUG_STMT(statement) statement |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 50 | #else |
| 51 | #define SPOE_PRINTF(x...) |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 52 | #define SPOE_DEBUG_STMT(statement) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 53 | #endif |
| 54 | |
Christopher Faulet | 7aa0b2b | 2017-01-13 11:30:50 +0100 | [diff] [blame] | 55 | /* 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 Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 62 | /* Reserved for the metadata and the frame type. |
| 63 | * So <MAX_FRAME_SIZE> - <FRAME_HDR_SIZE> is the maximum payload size */ |
Christopher Faulet | 7aa0b2b | 2017-01-13 11:30:50 +0100 | [diff] [blame] | 64 | #define FRAME_HDR_SIZE 32 |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 65 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 66 | /* Helper to get SPOE ctx inside an appctx */ |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 67 | #define SPOE_APPCTX(appctx) ((struct spoe_appctx *)((appctx)->ctx.spoe.ptr)) |
| 68 | |
Christopher Faulet | 3b386a3 | 2017-02-23 10:17:15 +0100 | [diff] [blame] | 69 | /* SPOE filter id. Used to identify SPOE filters */ |
| 70 | const char *spoe_filter_id = "SPOE filter"; |
| 71 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 72 | /* Set if the handle on SIGUSR1 is registered */ |
| 73 | static int sighandler_registered = 0; |
| 74 | |
| 75 | /* proxy used during the parsing */ |
| 76 | struct proxy *curproxy = NULL; |
| 77 | |
| 78 | /* The name of the SPOE engine, used during the parsing */ |
| 79 | char *curengine = NULL; |
| 80 | |
| 81 | /* SPOE agent used during the parsing */ |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 82 | /* SPOE agent/group/message used during the parsing */ |
| 83 | struct spoe_agent *curagent = NULL; |
| 84 | struct spoe_group *curgrp = NULL; |
| 85 | struct spoe_message *curmsg = NULL; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 86 | |
| 87 | /* list of SPOE messages and placeholders used during the parsing */ |
| 88 | struct list curmsgs; |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 89 | struct list curgrps; |
| 90 | struct list curmphs; |
| 91 | struct list curgphs; |
Christopher Faulet | 336d3ef | 2017-12-22 10:00:55 +0100 | [diff] [blame] | 92 | struct list curvars; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 93 | |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 94 | /* Pools used to allocate SPOE structs */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 95 | static struct pool_head *pool_head_spoe_ctx = NULL; |
| 96 | static struct pool_head *pool_head_spoe_appctx = NULL; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 97 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 98 | struct flt_ops spoe_ops; |
| 99 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 100 | static int spoe_queue_context(struct spoe_context *ctx); |
| 101 | static int spoe_acquire_buffer(struct buffer **buf, struct buffer_wait *buffer_wait); |
| 102 | static void spoe_release_buffer(struct buffer **buf, struct buffer_wait *buffer_wait); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 103 | |
| 104 | /******************************************************************** |
| 105 | * helper functions/globals |
| 106 | ********************************************************************/ |
| 107 | static void |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 108 | spoe_release_placeholder(struct spoe_placeholder *ph) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 109 | { |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 110 | if (!ph) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 111 | return; |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 112 | free(ph->id); |
| 113 | free(ph); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 114 | } |
| 115 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 116 | static void |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 117 | spoe_release_message(struct spoe_message *msg) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 118 | { |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 119 | struct spoe_arg *arg, *argback; |
| 120 | struct acl *acl, *aclback; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 121 | |
| 122 | if (!msg) |
| 123 | return; |
| 124 | free(msg->id); |
| 125 | free(msg->conf.file); |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 126 | list_for_each_entry_safe(arg, argback, &msg->args, list) { |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 127 | release_sample_expr(arg->expr); |
| 128 | free(arg->name); |
| 129 | LIST_DEL(&arg->list); |
| 130 | free(arg); |
| 131 | } |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 132 | 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 141 | free(msg); |
| 142 | } |
| 143 | |
| 144 | static void |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 145 | spoe_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 | |
| 154 | static void |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 155 | spoe_release_agent(struct spoe_agent *agent) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 156 | { |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 157 | struct spoe_message *msg, *msgback; |
| 158 | struct spoe_group *grp, *grpback; |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 159 | int i; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 160 | |
| 161 | if (!agent) |
| 162 | return; |
| 163 | free(agent->id); |
| 164 | free(agent->conf.file); |
| 165 | free(agent->var_pfx); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 166 | free(agent->engine_id); |
Christopher Faulet | 985532d | 2016-11-16 15:36:19 +0100 | [diff] [blame] | 167 | free(agent->var_on_error); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 168 | 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 175 | } |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 176 | for (i = 0; i < global.nbthread; ++i) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 177 | HA_SPIN_DESTROY(&agent->rt[i].lock); |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 178 | free(agent->rt); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 179 | free(agent); |
| 180 | } |
| 181 | |
| 182 | static const char *spoe_frm_err_reasons[SPOE_FRM_ERRS] = { |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 183 | [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 Faulet | 8eda93f | 2017-02-09 09:44:33 +0100 | [diff] [blame] | 195 | [SPOE_FRM_ERR_FRAMEID_NOTFOUND] = "frame-id not found", |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 196 | [SPOE_FRM_ERR_RES] = "resource allocation error", |
| 197 | [SPOE_FRM_ERR_UNKNOWN] = "an unknown error occurred", |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 198 | }; |
| 199 | |
| 200 | static 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 | |
| 215 | static const char *spoe_ctx_state_str[SPOE_CTX_ST_ERROR+1] = { |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 216 | [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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 223 | }; |
| 224 | |
| 225 | static const char *spoe_appctx_state_str[SPOE_APPCTX_ST_END+1] = { |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 226 | [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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 236 | }; |
| 237 | |
| 238 | #endif |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 239 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 240 | /* 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 Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 243 | static char * |
| 244 | generate_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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 273 | /******************************************************************** |
| 274 | * Functions that encode/decode SPOE frames |
| 275 | ********************************************************************/ |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 276 | /* 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 Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 284 | #define ENGINE_ID_KEY "engine-id" |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 285 | #define HEALTHCHECK_KEY "healthcheck" |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 286 | #define STATUS_CODE_KEY "status-code" |
| 287 | #define MSG_KEY "message" |
| 288 | |
| 289 | struct spoe_version { |
| 290 | char *str; |
| 291 | int min; |
| 292 | int max; |
| 293 | }; |
| 294 | |
| 295 | /* All supported versions */ |
| 296 | static 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 Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 304 | /* 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 307 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 308 | spoe_str_to_vsn(const char *str, size_t len) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 309 | { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 310 | const char *p, *end; |
| 311 | int maj, min, vsn; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 312 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 313 | p = str; |
| 314 | end = str+len; |
| 315 | maj = min = 0; |
| 316 | vsn = -1; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 317 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 318 | /* skip leading spaces */ |
| 319 | while (p < end && isspace(*p)) |
| 320 | p++; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 321 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 322 | /* 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 333 | goto out; |
| 334 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 335 | 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 346 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 347 | |
| 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 359 | out: |
| 360 | return vsn; |
| 361 | } |
| 362 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 363 | /* 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 366 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 367 | spoe_prepare_hahello_frame(struct appctx *appctx, char *frame, size_t size) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 368 | { |
Christopher Faulet | 305c607 | 2017-02-23 16:17:53 +0100 | [diff] [blame] | 369 | struct chunk *chk; |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 370 | struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 371 | char *p, *end; |
| 372 | unsigned int flags = SPOE_FRM_FL_FIN; |
| 373 | size_t sz; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 374 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 375 | p = frame; |
| 376 | end = frame+size; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 377 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 378 | /* Set Frame type */ |
| 379 | *p++ = SPOE_FRM_T_HAPROXY_HELLO; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 380 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 381 | /* Set flags */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 382 | memcpy(p, (char *)&flags, 4); |
| 383 | p += 4; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 384 | |
| 385 | /* No stream-id and frame-id for HELLO frames */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 386 | *p++ = 0; *p++ = 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 387 | |
| 388 | /* There are 3 mandatory items: "supported-versions", "max-frame-size" |
| 389 | * and "capabilities" */ |
| 390 | |
| 391 | /* "supported-versions" K/V item */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 392 | 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 400 | |
| 401 | /* "max-fram-size" K/V item */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 402 | 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 FOURNIER | 6ab2bae | 2017-04-19 11:49:44 +0200 | [diff] [blame] | 407 | if (encode_varint(SPOE_APPCTX(appctx)->max_frame_size, &p, end) == -1) |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 408 | goto too_big; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 409 | |
| 410 | /* "capabilities" K/V item */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 411 | sz = SLEN(CAPABILITIES_KEY); |
| 412 | if (spoe_encode_buffer(CAPABILITIES_KEY, sz, &p, end) == -1) |
| 413 | goto too_big; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 414 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 415 | *p++ = SPOE_DATA_T_STR; |
Christopher Faulet | 305c607 | 2017-02-23 16:17:53 +0100 | [diff] [blame] | 416 | 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 Faulet | cecd852 | 2017-02-24 22:11:21 +0100 | [diff] [blame] | 426 | 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 Faulet | 305c607 | 2017-02-23 16:17:53 +0100 | [diff] [blame] | 431 | if (spoe_encode_buffer(chk->str, chk->len, &p, end) == -1) |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 432 | goto too_big; |
| 433 | |
| 434 | /* (optionnal) "engine-id" K/V item, if present */ |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 435 | if (agent != NULL && agent->engine_id != NULL) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 436 | 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 Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 444 | } |
| 445 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 446 | return (p - frame); |
| 447 | |
| 448 | too_big: |
| 449 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG; |
| 450 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 451 | } |
| 452 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 453 | /* 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 456 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 457 | spoe_prepare_hadiscon_frame(struct appctx *appctx, char *frame, size_t size) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 458 | { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 459 | const char *reason; |
| 460 | char *p, *end; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 461 | unsigned int flags = SPOE_FRM_FL_FIN; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 462 | size_t sz; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 463 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 464 | p = frame; |
| 465 | end = frame+size; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 466 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 467 | /* Set Frame type */ |
| 468 | *p++ = SPOE_FRM_T_HAPROXY_DISCON; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 469 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 470 | /* Set flags */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 471 | memcpy(p, (char *)&flags, 4); |
| 472 | p += 4; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 473 | |
| 474 | /* No stream-id and frame-id for DISCONNECT frames */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 475 | *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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 479 | |
| 480 | /* There are 2 mandatory items: "status-code" and "message" */ |
| 481 | |
| 482 | /* "status-code" K/V item */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 483 | 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 FOURNIER | 6ab2bae | 2017-04-19 11:49:44 +0200 | [diff] [blame] | 488 | if (encode_varint(SPOE_APPCTX(appctx)->status_code, &p, end) == -1) |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 489 | goto too_big; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 490 | |
| 491 | /* "message" K/V item */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 492 | sz = SLEN(MSG_KEY); |
| 493 | if (spoe_encode_buffer(MSG_KEY, sz, &p, end) == -1) |
| 494 | goto too_big; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 495 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 496 | /*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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 509 | } |
| 510 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 511 | /* 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 514 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 515 | spoe_prepare_hanotify_frame(struct appctx *appctx, struct spoe_context *ctx, |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 516 | char *frame, size_t size) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 517 | { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 518 | char *p, *end; |
| 519 | unsigned int stream_id, frame_id; |
| 520 | unsigned int flags = SPOE_FRM_FL_FIN; |
| 521 | size_t sz; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 522 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 523 | p = frame; |
| 524 | end = frame+size; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 525 | |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 526 | 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 FOURNIER | 6ab2bae | 2017-04-19 11:49:44 +0200 | [diff] [blame] | 546 | if (encode_varint(stream_id, &p, end) == -1) |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 547 | goto too_big; |
Thierry FOURNIER | 6ab2bae | 2017-04-19 11:49:44 +0200 | [diff] [blame] | 548 | if (encode_varint(frame_id, &p, end) == -1) |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 549 | 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. */ |
| 568 | static int |
| 569 | spoe_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 Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 580 | /* <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 Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 583 | if (ctx == NULL) { |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 584 | flags = (SPOE_FRM_FL_FIN|SPOE_FRM_FL_ABRT); |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 585 | stream_id = SPOE_APPCTX(appctx)->frag_ctx.cursid; |
| 586 | frame_id = SPOE_APPCTX(appctx)->frag_ctx.curfid; |
| 587 | } |
| 588 | else { |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 589 | flags = ctx->frag_ctx.flags; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 590 | stream_id = ctx->stream_id; |
| 591 | frame_id = ctx->frame_id; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 592 | } |
| 593 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 594 | /* Set Frame type */ |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 595 | *p++ = SPOE_FRM_T_UNSET; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 596 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 597 | /* Set flags */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 598 | memcpy(p, (char *)&flags, 4); |
| 599 | p += 4; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 600 | |
| 601 | /* Set stream-id and frame-id */ |
Thierry FOURNIER | 6ab2bae | 2017-04-19 11:49:44 +0200 | [diff] [blame] | 602 | if (encode_varint(stream_id, &p, end) == -1) |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 603 | goto too_big; |
Thierry FOURNIER | 6ab2bae | 2017-04-19 11:49:44 +0200 | [diff] [blame] | 604 | if (encode_varint(frame_id, &p, end) == -1) |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 605 | goto too_big; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 606 | |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 607 | if (ctx == NULL) |
| 608 | goto end; |
| 609 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 610 | /* Copy encoded messages, if possible */ |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 611 | sz = ctx->buffer->i; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 612 | if (p + sz >= end) |
| 613 | goto too_big; |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 614 | memcpy(p, ctx->buffer->p, sz); |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 615 | p += sz; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 616 | |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 617 | end: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 618 | return (p - frame); |
| 619 | |
| 620 | too_big: |
| 621 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG; |
| 622 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 623 | } |
| 624 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 625 | /* 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 628 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 629 | spoe_handle_agenthello_frame(struct appctx *appctx, char *frame, size_t size) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 630 | { |
Christopher Faulet | 305c607 | 2017-02-23 16:17:53 +0100 | [diff] [blame] | 631 | struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent; |
| 632 | char *p, *end; |
| 633 | int vsn, max_frame_size; |
| 634 | unsigned int flags; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 635 | |
| 636 | p = frame; |
| 637 | end = frame + size; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 638 | |
| 639 | /* Check frame type */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 640 | if (*p++ != SPOE_FRM_T_AGENT_HELLO) { |
| 641 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 642 | return 0; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 643 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 644 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 645 | if (size < 7 /* TYPE + METADATA */) { |
| 646 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 647 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 648 | } |
| 649 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 650 | /* Retrieve flags */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 651 | memcpy((char *)&flags, p, 4); |
| 652 | p += 4; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 653 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 654 | /* Fragmentation is not supported for HELLO frame */ |
| 655 | if (!(flags & SPOE_FRM_FL_FIN)) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 656 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 657 | return -1; |
| 658 | } |
| 659 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 660 | /* stream-id and frame-id must be cleared */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 661 | if (*p != 0 || *(p+1) != 0) { |
| 662 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 663 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 664 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 665 | p += 2; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 666 | |
| 667 | /* There are 3 mandatory items: "version", "max-frame-size" and |
| 668 | * "capabilities" */ |
| 669 | |
| 670 | /* Loop on K/V items */ |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 671 | vsn = max_frame_size = flags = 0; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 672 | while (p < end) { |
| 673 | char *str; |
Frédéric Lécaille | 6ca71a9 | 2017-08-22 10:33:14 +0200 | [diff] [blame] | 674 | uint64_t sz; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 675 | int ret; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 676 | |
| 677 | /* Decode the item key */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 678 | 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 682 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 683 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 684 | /* Check "version" K/V item */ |
| 685 | if (!memcmp(str, VERSION_KEY, sz)) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 686 | int i, type = *p++; |
| 687 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 688 | /* The value must be a string */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 689 | if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) { |
| 690 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 691 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 692 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 693 | if (spoe_decode_buffer(&p, end, &str, &sz) == -1) { |
| 694 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 695 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 696 | } |
| 697 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 698 | vsn = spoe_str_to_vsn(str, sz); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 699 | if (vsn == -1) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 700 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_VSN; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 701 | 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 Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 709 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_VSN; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 710 | return -1; |
| 711 | } |
| 712 | } |
| 713 | /* Check "max-frame-size" K/V item */ |
| 714 | else if (!memcmp(str, MAX_FRAME_SIZE_KEY, sz)) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 715 | int type = *p++; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 716 | |
| 717 | /* The value must be integer */ |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 718 | 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 Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 722 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 723 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 724 | } |
Thierry FOURNIER | 6ab2bae | 2017-04-19 11:49:44 +0200 | [diff] [blame] | 725 | if (decode_varint(&p, end, &sz) == -1) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 726 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 727 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 728 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 729 | 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 732 | return -1; |
| 733 | } |
| 734 | max_frame_size = sz; |
| 735 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 736 | /* Check "capabilities" K/V item */ |
| 737 | else if (!memcmp(str, CAPABILITIES_KEY, sz)) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 738 | int type = *p++; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 739 | |
| 740 | /* The value must be a string */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 741 | if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) { |
| 742 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 743 | return 0; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 744 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 745 | if (spoe_decode_buffer(&p, end, &str, &sz) == -1) { |
| 746 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 747 | return 0; |
| 748 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 749 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 750 | while (sz) { |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 751 | char *delim; |
| 752 | |
| 753 | /* Skip leading spaces */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 754 | for (; isspace(*str) && sz; str++, sz--); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 755 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 756 | if (sz >= 10 && !strncmp(str, "pipelining", 10)) { |
| 757 | str += 10; sz -= 10; |
| 758 | if (!sz || isspace(*str) || *str == ',') |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 759 | flags |= SPOE_APPCTX_FL_PIPELINING; |
| 760 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 761 | else if (sz >= 5 && !strncmp(str, "async", 5)) { |
| 762 | str += 5; sz -= 5; |
| 763 | if (!sz || isspace(*str) || *str == ',') |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 764 | flags |= SPOE_APPCTX_FL_ASYNC; |
| 765 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 766 | else if (sz >= 13 && !strncmp(str, "fragmentation", 13)) { |
| 767 | str += 13; sz -= 13; |
| 768 | if (!sz || isspace(*str) || *str == ',') |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 769 | flags |= SPOE_APPCTX_FL_FRAGMENTATION; |
| 770 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 771 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 772 | /* Get the next comma or break */ |
| 773 | if (!sz || (delim = memchr(str, ',', sz)) == NULL) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 774 | break; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 775 | delim++; |
| 776 | sz -= (delim - str); |
| 777 | str = delim; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 778 | } |
| 779 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 780 | else { |
| 781 | /* Silently ignore unknown item */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 782 | if (spoe_skip_data(&p, end) == -1) { |
| 783 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 784 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 785 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 786 | } |
| 787 | } |
| 788 | |
| 789 | /* Final checks */ |
| 790 | if (!vsn) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 791 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NO_VSN; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 792 | return -1; |
| 793 | } |
| 794 | if (!max_frame_size) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 795 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NO_FRAME_SIZE; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 796 | return -1; |
| 797 | } |
Christopher Faulet | 305c607 | 2017-02-23 16:17:53 +0100 | [diff] [blame] | 798 | 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 802 | |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 803 | 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 Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 806 | |
| 807 | return (p - frame); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 808 | } |
| 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. */ |
| 813 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 814 | spoe_handle_agentdiscon_frame(struct appctx *appctx, char *frame, size_t size) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 815 | { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 816 | char *p, *end; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 817 | unsigned int flags; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 818 | |
| 819 | p = frame; |
| 820 | end = frame + size; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 821 | |
| 822 | /* Check frame type */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 823 | if (*p++ != SPOE_FRM_T_AGENT_DISCON) { |
| 824 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 825 | return 0; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 826 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 827 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 828 | if (size < 7 /* TYPE + METADATA */) { |
| 829 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 830 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 831 | } |
| 832 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 833 | /* Retrieve flags */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 834 | memcpy((char *)&flags, p, 4); |
| 835 | p += 4; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 836 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 837 | /* Fragmentation is not supported for DISCONNECT frame */ |
| 838 | if (!(flags & SPOE_FRM_FL_FIN)) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 839 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 840 | return -1; |
| 841 | } |
| 842 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 843 | /* stream-id and frame-id must be cleared */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 844 | if (*p != 0 || *(p+1) != 0) { |
| 845 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 846 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 847 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 848 | p += 2; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 849 | |
| 850 | /* There are 2 mandatory items: "status-code" and "message" */ |
| 851 | |
| 852 | /* Loop on K/V items */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 853 | while (p < end) { |
| 854 | char *str; |
Frédéric Lécaille | 6ca71a9 | 2017-08-22 10:33:14 +0200 | [diff] [blame] | 855 | uint64_t sz; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 856 | int ret; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 857 | |
| 858 | /* Decode the item key */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 859 | 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 863 | } |
| 864 | |
| 865 | /* Check "status-code" K/V item */ |
| 866 | if (!memcmp(str, STATUS_CODE_KEY, sz)) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 867 | int type = *p++; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 868 | |
| 869 | /* The value must be an integer */ |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 870 | 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 Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 874 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 875 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 876 | } |
Thierry FOURNIER | 6ab2bae | 2017-04-19 11:49:44 +0200 | [diff] [blame] | 877 | if (decode_varint(&p, end, &sz) == -1) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 878 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 879 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 880 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 881 | SPOE_APPCTX(appctx)->status_code = sz; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | /* Check "message" K/V item */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 885 | else if (!memcmp(str, MSG_KEY, sz)) { |
| 886 | int type = *p++; |
| 887 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 888 | /* The value must be a string */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 889 | if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) { |
| 890 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 891 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 892 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 893 | 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 Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 897 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 898 | #if defined(DEBUG_SPOE) || defined(DEBUG_FULL) |
| 899 | SPOE_APPCTX(appctx)->reason = str; |
| 900 | SPOE_APPCTX(appctx)->rlen = sz; |
| 901 | #endif |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 902 | } |
| 903 | else { |
| 904 | /* Silently ignore unknown item */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 905 | if (spoe_skip_data(&p, end) == -1) { |
| 906 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 907 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 908 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 909 | } |
| 910 | } |
| 911 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 912 | return (p - frame); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 913 | } |
| 914 | |
| 915 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 916 | /* Decode ACK frame sent by an agent. It returns the number of read bytes on |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 917 | * success, 0 if the frame can be ignored and -1 if an error occurred. */ |
| 918 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 919 | spoe_handle_agentack_frame(struct appctx *appctx, struct spoe_context **ctx, |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 920 | char *frame, size_t size) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 921 | { |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 922 | struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 923 | char *p, *end; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 924 | uint64_t stream_id, frame_id; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 925 | int len; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 926 | unsigned int flags; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 927 | |
| 928 | p = frame; |
| 929 | end = frame + size; |
| 930 | *ctx = NULL; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 931 | |
| 932 | /* Check frame type */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 933 | if (*p++ != SPOE_FRM_T_AGENT_ACK) { |
| 934 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 935 | return 0; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 936 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 937 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 938 | if (size < 7 /* TYPE + METADATA */) { |
| 939 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
| 940 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 941 | } |
| 942 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 943 | /* Retrieve flags */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 944 | memcpy((char *)&flags, p, 4); |
| 945 | p += 4; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 946 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 947 | /* Fragmentation is not supported for now */ |
| 948 | if (!(flags & SPOE_FRM_FL_FIN)) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 949 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 950 | return -1; |
| 951 | } |
| 952 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 953 | /* Get the stream-id and the frame-id */ |
Thierry FOURNIER | 6ab2bae | 2017-04-19 11:49:44 +0200 | [diff] [blame] | 954 | if (decode_varint(&p, end, &stream_id) == -1) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 955 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 956 | return 0; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 957 | } |
Thierry FOURNIER | 6ab2bae | 2017-04-19 11:49:44 +0200 | [diff] [blame] | 958 | if (decode_varint(&p, end, &frame_id) == -1) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 959 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 960 | return 0; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 961 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 962 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 963 | /* Try to find the corresponding SPOE context */ |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 964 | if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_ASYNC) { |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 965 | list_for_each_entry((*ctx), &agent->rt[tid].waiting_queue, list) { |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 966 | if ((*ctx)->stream_id == (unsigned int)stream_id && |
| 967 | (*ctx)->frame_id == (unsigned int)frame_id) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 968 | goto found; |
| 969 | } |
| 970 | } |
| 971 | else { |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 972 | list_for_each_entry((*ctx), &SPOE_APPCTX(appctx)->waiting_queue, list) { |
| 973 | if ((*ctx)->stream_id == (unsigned int)stream_id && |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 974 | (*ctx)->frame_id == (unsigned int)frame_id) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 975 | goto found; |
| 976 | } |
| 977 | } |
| 978 | |
Christopher Faulet | 8eda93f | 2017-02-09 09:44:33 +0100 | [diff] [blame] | 979 | 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 Faulet | 8eda93f | 2017-02-09 09:44:33 +0100 | [diff] [blame] | 986 | (*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 Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 996 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 997 | /* No Stream found, ignore the frame */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 998 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p" |
| 999 | " - Ignore ACK frame" |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 1000 | " - 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 Faulet | 8eda93f | 2017-02-09 09:44:33 +0100 | [diff] [blame] | 1005 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAMEID_NOTFOUND; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1006 | return 0; |
| 1007 | |
| 1008 | found: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1009 | if (!spoe_acquire_buffer(&SPOE_APPCTX(appctx)->buffer, |
| 1010 | &SPOE_APPCTX(appctx)->buffer_wait)) { |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 1011 | *ctx = NULL; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1012 | return 1; /* Retry later */ |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 1013 | } |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 1014 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1015 | /* Copy encoded actions */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1016 | len = (end - p); |
| 1017 | memcpy(SPOE_APPCTX(appctx)->buffer->p, p, len); |
| 1018 | SPOE_APPCTX(appctx)->buffer->i = len; |
| 1019 | p += len; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1020 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 1021 | /* Transfer the buffer ownership to the SPOE context */ |
| 1022 | (*ctx)->buffer = SPOE_APPCTX(appctx)->buffer; |
| 1023 | SPOE_APPCTX(appctx)->buffer = &buf_empty; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1024 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1025 | (*ctx)->state = SPOE_CTX_ST_DONE; |
| 1026 | |
Christopher Faulet | 8eda93f | 2017-02-09 09:44:33 +0100 | [diff] [blame] | 1027 | end: |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 1028 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p" |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1029 | " - ACK frame received" |
| 1030 | " - ctx=%p - stream-id=%u - frame-id=%u - flags=0x%08x\n", |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 1031 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1032 | __FUNCTION__, appctx, *ctx, (*ctx)->stream_id, |
| 1033 | (*ctx)->frame_id, flags); |
| 1034 | return (p - frame); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1035 | } |
| 1036 | |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1037 | /* 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. */ |
| 1040 | int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1041 | spoe_prepare_healthcheck_request(char **req, int *len) |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1042 | { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1043 | 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 Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1048 | |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1049 | memset(&appctx, 0, sizeof(appctx)); |
| 1050 | memset(&spoe_appctx, 0, sizeof(spoe_appctx)); |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1051 | memset(buf, 0, sizeof(buf)); |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1052 | |
| 1053 | appctx.ctx.spoe.ptr = &spoe_appctx; |
Christopher Faulet | 7aa0b2b | 2017-01-13 11:30:50 +0100 | [diff] [blame] | 1054 | SPOE_APPCTX(&appctx)->max_frame_size = MAX_FRAME_SIZE; |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1055 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1056 | 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 Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1061 | return -1; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1062 | frame += ret; |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1063 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1064 | /* 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 Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1069 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1070 | *len = frame - buf; |
| 1071 | sz = htonl(*len - 4); |
| 1072 | memcpy(buf, (char *)&sz, 4); |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1073 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1074 | if ((*req = malloc(*len)) == NULL) |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1075 | return -1; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1076 | memcpy(*req, buf, *len); |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1077 | 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. */ |
| 1083 | int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1084 | spoe_handle_healthcheck_response(char *frame, size_t size, char *err, int errlen) |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1085 | { |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1086 | struct appctx appctx; |
| 1087 | struct spoe_appctx spoe_appctx; |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1088 | |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1089 | memset(&appctx, 0, sizeof(appctx)); |
| 1090 | memset(&spoe_appctx, 0, sizeof(spoe_appctx)); |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1091 | |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1092 | appctx.ctx.spoe.ptr = &spoe_appctx; |
Christopher Faulet | 7aa0b2b | 2017-01-13 11:30:50 +0100 | [diff] [blame] | 1093 | SPOE_APPCTX(&appctx)->max_frame_size = MAX_FRAME_SIZE; |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1094 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1095 | if (*frame == SPOE_FRM_T_AGENT_DISCON) { |
| 1096 | spoe_handle_agentdiscon_frame(&appctx, frame, size); |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1097 | goto error; |
| 1098 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1099 | if (spoe_handle_agenthello_frame(&appctx, frame, size) <= 0) |
| 1100 | goto error; |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1101 | |
| 1102 | return 0; |
| 1103 | |
| 1104 | error: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1105 | 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 Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1108 | return -1; |
| 1109 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1110 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1111 | /* 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. */ |
| 1114 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1115 | spoe_send_frame(struct appctx *appctx, char *buf, size_t framesz) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1116 | { |
| 1117 | struct stream_interface *si = appctx->owner; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1118 | int ret; |
| 1119 | uint32_t netint; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1120 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1121 | /* 4 bytes are reserved at the beginning of <buf> to store the frame |
| 1122 | * length. */ |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1123 | netint = htonl(framesz); |
| 1124 | memcpy(buf, (char *)&netint, 4); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1125 | ret = ci_putblk(si_ic(si), buf, framesz+4); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1126 | if (ret <= 0) { |
Christopher Faulet | d5216d4 | 2018-02-01 08:45:22 +0100 | [diff] [blame] | 1127 | if ((ret == -3 && si_ic(si)->buf == &buf_empty) || ret == -1) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1128 | si_applet_cant_put(si); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1129 | return 1; /* retry */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1130 | } |
| 1131 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1132 | return -1; /* error */ |
| 1133 | } |
| 1134 | return framesz; |
| 1135 | } |
| 1136 | |
| 1137 | /* Receive a SPOE frame from an agent. It return -1 when an error occurred, 0 |
| 1138 | * when the frame can be ignored, 1 to retry later and the frame length on |
| 1139 | * success. */ |
| 1140 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1141 | spoe_recv_frame(struct appctx *appctx, char *buf, size_t framesz) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1142 | { |
| 1143 | struct stream_interface *si = appctx->owner; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1144 | int ret; |
| 1145 | uint32_t netint; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1146 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1147 | ret = co_getblk(si_oc(si), (char *)&netint, 4, 0); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1148 | if (ret > 0) { |
| 1149 | framesz = ntohl(netint); |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1150 | if (framesz > SPOE_APPCTX(appctx)->max_frame_size) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1151 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1152 | return -1; |
| 1153 | } |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1154 | ret = co_getblk(si_oc(si), buf, framesz, 4); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1155 | } |
| 1156 | if (ret <= 0) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1157 | if (ret == 0) { |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1158 | return 1; /* retry */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1159 | } |
| 1160 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1161 | return -1; /* error */ |
| 1162 | } |
| 1163 | return framesz; |
| 1164 | } |
| 1165 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1166 | /******************************************************************** |
| 1167 | * Functions that manage the SPOE applet |
| 1168 | ********************************************************************/ |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 1169 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1170 | spoe_wakeup_appctx(struct appctx *appctx) |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 1171 | { |
| 1172 | si_applet_want_get(appctx->owner); |
| 1173 | si_applet_want_put(appctx->owner); |
| 1174 | appctx_wakeup(appctx); |
| 1175 | return 1; |
| 1176 | } |
| 1177 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1178 | /* Callback function that catches applet timeouts. If a timeout occurred, we set |
| 1179 | * <appctx->st1> flag and the SPOE applet is woken up. */ |
| 1180 | static struct task * |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1181 | spoe_process_appctx(struct task * task) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1182 | { |
| 1183 | struct appctx *appctx = task->context; |
| 1184 | |
| 1185 | appctx->st1 = SPOE_APPCTX_ERR_NONE; |
| 1186 | if (tick_is_expired(task->expire, now_ms)) { |
| 1187 | task->expire = TICK_ETERNITY; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1188 | appctx->st1 = SPOE_APPCTX_ERR_TOUT; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1189 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1190 | spoe_wakeup_appctx(appctx); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1191 | return task; |
| 1192 | } |
| 1193 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1194 | /* Callback function that releases a SPOE applet. This happens when the |
| 1195 | * connection with the agent is closed. */ |
| 1196 | static void |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1197 | spoe_release_appctx(struct appctx *appctx) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1198 | { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1199 | struct stream_interface *si = appctx->owner; |
| 1200 | struct spoe_appctx *spoe_appctx = SPOE_APPCTX(appctx); |
| 1201 | struct spoe_agent *agent; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1202 | struct spoe_context *ctx, *back; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1203 | |
| 1204 | if (spoe_appctx == NULL) |
| 1205 | return; |
| 1206 | |
| 1207 | appctx->ctx.spoe.ptr = NULL; |
| 1208 | agent = spoe_appctx->agent; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1209 | |
| 1210 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p\n", |
| 1211 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
| 1212 | __FUNCTION__, appctx); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1213 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1214 | /* Remove applet from the list of running applets */ |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1215 | SPOE_DEBUG_STMT(agent->rt[tid].applets_act--); |
| 1216 | HA_SPIN_LOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock); |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1217 | if (!LIST_ISEMPTY(&spoe_appctx->list)) { |
| 1218 | LIST_DEL(&spoe_appctx->list); |
| 1219 | LIST_INIT(&spoe_appctx->list); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1220 | } |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1221 | HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1222 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1223 | /* Shutdown the server connection, if needed */ |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1224 | if (appctx->st0 != SPOE_APPCTX_ST_END) { |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1225 | if (appctx->st0 == SPOE_APPCTX_ST_IDLE) { |
| 1226 | eb32_delete(&spoe_appctx->node); |
| 1227 | SPOE_DEBUG_STMT(agent->rt[tid].applets_idle--); |
| 1228 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1229 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1230 | appctx->st0 = SPOE_APPCTX_ST_END; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1231 | if (spoe_appctx->status_code == SPOE_FRM_ERR_NONE) |
| 1232 | spoe_appctx->status_code = SPOE_FRM_ERR_IO; |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 1233 | |
| 1234 | si_shutw(si); |
| 1235 | si_shutr(si); |
| 1236 | si_ic(si)->flags |= CF_READ_NULL; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1237 | } |
| 1238 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1239 | /* Destroy the task attached to this applet */ |
| 1240 | if (spoe_appctx->task) { |
| 1241 | task_delete(spoe_appctx->task); |
| 1242 | task_free(spoe_appctx->task); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1243 | } |
| 1244 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1245 | /* Notify all waiting streams */ |
| 1246 | list_for_each_entry_safe(ctx, back, &spoe_appctx->waiting_queue, list) { |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1247 | LIST_DEL(&ctx->list); |
| 1248 | LIST_INIT(&ctx->list); |
| 1249 | ctx->state = SPOE_CTX_ST_ERROR; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1250 | ctx->status_code = (spoe_appctx->status_code + 0x100); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1251 | task_wakeup(ctx->strm->task, TASK_WOKEN_MSG); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1252 | } |
| 1253 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1254 | /* If the applet was processing a fragmented frame, notify the |
| 1255 | * corresponding stream. */ |
| 1256 | if (spoe_appctx->frag_ctx.ctx) { |
| 1257 | ctx = spoe_appctx->frag_ctx.ctx; |
Christopher Faulet | fce747b | 2018-01-24 15:59:32 +0100 | [diff] [blame] | 1258 | ctx->spoe_appctx = NULL; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 1259 | ctx->state = SPOE_CTX_ST_ERROR; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1260 | ctx->status_code = (spoe_appctx->status_code + 0x100); |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 1261 | task_wakeup(ctx->strm->task, TASK_WOKEN_MSG); |
| 1262 | } |
| 1263 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1264 | /* Release allocated memory */ |
| 1265 | spoe_release_buffer(&spoe_appctx->buffer, |
| 1266 | &spoe_appctx->buffer_wait); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1267 | pool_free(pool_head_spoe_appctx, spoe_appctx); |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1268 | |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 1269 | if (!LIST_ISEMPTY(&agent->rt[tid].applets)) |
Christopher Faulet | 7aa0b2b | 2017-01-13 11:30:50 +0100 | [diff] [blame] | 1270 | goto end; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1271 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1272 | /* If this was the last running applet, notify all waiting streams */ |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 1273 | list_for_each_entry_safe(ctx, back, &agent->rt[tid].sending_queue, list) { |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1274 | LIST_DEL(&ctx->list); |
| 1275 | LIST_INIT(&ctx->list); |
| 1276 | ctx->state = SPOE_CTX_ST_ERROR; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1277 | ctx->status_code = (spoe_appctx->status_code + 0x100); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1278 | task_wakeup(ctx->strm->task, TASK_WOKEN_MSG); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1279 | } |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 1280 | list_for_each_entry_safe(ctx, back, &agent->rt[tid].waiting_queue, list) { |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1281 | LIST_DEL(&ctx->list); |
| 1282 | LIST_INIT(&ctx->list); |
| 1283 | ctx->state = SPOE_CTX_ST_ERROR; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1284 | ctx->status_code = (spoe_appctx->status_code + 0x100); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1285 | task_wakeup(ctx->strm->task, TASK_WOKEN_MSG); |
| 1286 | } |
Christopher Faulet | 7aa0b2b | 2017-01-13 11:30:50 +0100 | [diff] [blame] | 1287 | |
| 1288 | end: |
| 1289 | /* Update runtinme agent info */ |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 1290 | agent->rt[tid].frame_size = agent->max_frame_size; |
| 1291 | list_for_each_entry(spoe_appctx, &agent->rt[tid].applets, list) |
| 1292 | HA_ATOMIC_UPDATE_MIN(&agent->rt[tid].frame_size, spoe_appctx->max_frame_size); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1293 | } |
| 1294 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1295 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1296 | spoe_handle_connect_appctx(struct appctx *appctx) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1297 | { |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1298 | struct stream_interface *si = appctx->owner; |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1299 | struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1300 | char *frame, *buf; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1301 | int ret; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1302 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1303 | if (si->state <= SI_ST_CON) { |
| 1304 | si_applet_want_put(si); |
| 1305 | task_wakeup(si_strm(si)->task, TASK_WOKEN_MSG); |
| 1306 | goto stop; |
| 1307 | } |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 1308 | if (si->state != SI_ST_EST) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1309 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1310 | goto exit; |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 1311 | } |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 1312 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1313 | if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1314 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p" |
| 1315 | " - Connection timed out\n", |
| 1316 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
| 1317 | __FUNCTION__, appctx); |
| 1318 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1319 | goto exit; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1320 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1321 | |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1322 | if (SPOE_APPCTX(appctx)->task->expire == TICK_ETERNITY) |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1323 | SPOE_APPCTX(appctx)->task->expire = |
| 1324 | tick_add_ifset(now_ms, agent->timeout.hello); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1325 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1326 | /* 4 bytes are reserved at the beginning of <buf> to store the frame |
| 1327 | * length. */ |
| 1328 | buf = trash.str; frame = buf+4; |
| 1329 | ret = spoe_prepare_hahello_frame(appctx, frame, |
| 1330 | SPOE_APPCTX(appctx)->max_frame_size); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1331 | if (ret > 1) |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1332 | ret = spoe_send_frame(appctx, buf, ret); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1333 | |
| 1334 | switch (ret) { |
| 1335 | case -1: /* error */ |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1336 | case 0: /* ignore => an error, cannot be ignored */ |
| 1337 | goto exit; |
| 1338 | |
| 1339 | case 1: /* retry later */ |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1340 | goto stop; |
| 1341 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1342 | default: |
| 1343 | /* HELLO frame successfully sent, now wait for the |
| 1344 | * reply. */ |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1345 | appctx->st0 = SPOE_APPCTX_ST_CONNECTING; |
| 1346 | goto next; |
| 1347 | } |
| 1348 | |
| 1349 | next: |
| 1350 | return 0; |
| 1351 | stop: |
| 1352 | return 1; |
| 1353 | exit: |
| 1354 | appctx->st0 = SPOE_APPCTX_ST_EXIT; |
| 1355 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1356 | } |
| 1357 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1358 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1359 | spoe_handle_connecting_appctx(struct appctx *appctx) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1360 | { |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1361 | struct stream_interface *si = appctx->owner; |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1362 | struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1363 | char *frame; |
| 1364 | int ret; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1365 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1366 | |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 1367 | if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1368 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1369 | goto exit; |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 1370 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1371 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1372 | if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1373 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p" |
| 1374 | " - Connection timed out\n", |
| 1375 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
| 1376 | __FUNCTION__, appctx); |
| 1377 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1378 | goto exit; |
| 1379 | } |
| 1380 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1381 | frame = trash.str; trash.len = 0; |
| 1382 | ret = spoe_recv_frame(appctx, frame, |
| 1383 | SPOE_APPCTX(appctx)->max_frame_size); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1384 | if (ret > 1) { |
| 1385 | if (*frame == SPOE_FRM_T_AGENT_DISCON) { |
| 1386 | appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING; |
| 1387 | goto next; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1388 | } |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1389 | trash.len = ret + 4; |
| 1390 | ret = spoe_handle_agenthello_frame(appctx, frame, ret); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1391 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1392 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1393 | switch (ret) { |
| 1394 | case -1: /* error */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1395 | case 0: /* ignore => an error, cannot be ignored */ |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1396 | appctx->st0 = SPOE_APPCTX_ST_DISCONNECT; |
| 1397 | goto next; |
| 1398 | |
| 1399 | case 1: /* retry later */ |
| 1400 | goto stop; |
| 1401 | |
| 1402 | default: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1403 | /* HELLO handshake is finished, set the idle timeout and |
| 1404 | * add the applet in the list of running applets. */ |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1405 | SPOE_DEBUG_STMT(agent->rt[tid].applets_idle++); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1406 | appctx->st0 = SPOE_APPCTX_ST_IDLE; |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1407 | SPOE_APPCTX(appctx)->node.key = 0; |
| 1408 | eb32_insert(&agent->rt[tid].idle_applets, &SPOE_APPCTX(appctx)->node); |
Christopher Faulet | 7aa0b2b | 2017-01-13 11:30:50 +0100 | [diff] [blame] | 1409 | |
| 1410 | /* Update runtinme agent info */ |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 1411 | HA_ATOMIC_UPDATE_MIN(&agent->rt[tid].frame_size, SPOE_APPCTX(appctx)->max_frame_size); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1412 | goto next; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1413 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1414 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1415 | next: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1416 | /* Do not forget to remove processed frame from the output buffer */ |
| 1417 | if (trash.len) |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1418 | co_skip(si_oc(si), trash.len); |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1419 | |
| 1420 | SPOE_APPCTX(appctx)->task->expire = |
| 1421 | tick_add_ifset(now_ms, agent->timeout.idle); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1422 | return 0; |
| 1423 | stop: |
| 1424 | return 1; |
| 1425 | exit: |
| 1426 | appctx->st0 = SPOE_APPCTX_ST_EXIT; |
| 1427 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1428 | } |
| 1429 | |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 1430 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1431 | static int |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 1432 | spoe_handle_sending_frame_appctx(struct appctx *appctx, int *skip) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1433 | { |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 1434 | struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent; |
| 1435 | struct spoe_context *ctx = NULL; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1436 | char *frame, *buf; |
| 1437 | int ret; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1438 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1439 | /* 4 bytes are reserved at the beginning of <buf> to store the frame |
| 1440 | * length. */ |
| 1441 | buf = trash.str; frame = buf+4; |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 1442 | |
| 1443 | if (appctx->st0 == SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY) { |
| 1444 | ctx = SPOE_APPCTX(appctx)->frag_ctx.ctx; |
| 1445 | ret = spoe_prepare_hafrag_frame(appctx, ctx, frame, |
| 1446 | SPOE_APPCTX(appctx)->max_frame_size); |
| 1447 | } |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 1448 | else if (LIST_ISEMPTY(&agent->rt[tid].sending_queue)) { |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 1449 | *skip = 1; |
| 1450 | ret = 1; |
| 1451 | goto end; |
| 1452 | } |
| 1453 | else { |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 1454 | ctx = LIST_NEXT(&agent->rt[tid].sending_queue, typeof(ctx), list); |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 1455 | ret = spoe_prepare_hanotify_frame(appctx, ctx, frame, |
| 1456 | SPOE_APPCTX(appctx)->max_frame_size); |
| 1457 | |
| 1458 | } |
| 1459 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1460 | if (ret > 1) |
| 1461 | ret = spoe_send_frame(appctx, buf, ret); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1462 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1463 | switch (ret) { |
| 1464 | case -1: /* error */ |
| 1465 | appctx->st0 = SPOE_APPCTX_ST_DISCONNECT; |
| 1466 | goto end; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1467 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1468 | case 0: /* ignore */ |
| 1469 | if (ctx == NULL) |
| 1470 | goto abort_frag_frame; |
| 1471 | |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 1472 | spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait); |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1473 | LIST_DEL(&ctx->list); |
| 1474 | LIST_INIT(&ctx->list); |
Christopher Faulet | fce747b | 2018-01-24 15:59:32 +0100 | [diff] [blame] | 1475 | ctx->spoe_appctx = NULL; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1476 | ctx->state = SPOE_CTX_ST_ERROR; |
| 1477 | ctx->status_code = (SPOE_APPCTX(appctx)->status_code + 0x100); |
| 1478 | task_wakeup(ctx->strm->task, TASK_WOKEN_MSG); |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1479 | *skip = 1; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1480 | break; |
| 1481 | |
| 1482 | case 1: /* retry */ |
| 1483 | *skip = 1; |
| 1484 | break; |
| 1485 | |
| 1486 | default: |
| 1487 | if (ctx == NULL) |
| 1488 | goto abort_frag_frame; |
| 1489 | |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 1490 | spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait); |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1491 | LIST_DEL(&ctx->list); |
| 1492 | LIST_INIT(&ctx->list); |
Christopher Faulet | fce747b | 2018-01-24 15:59:32 +0100 | [diff] [blame] | 1493 | ctx->spoe_appctx = SPOE_APPCTX(appctx); |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1494 | if (!(ctx->flags & SPOE_CTX_FL_FRAGMENTED) || |
| 1495 | (ctx->frag_ctx.flags & SPOE_FRM_FL_FIN)) |
| 1496 | goto no_frag_frame_sent; |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1497 | else |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1498 | goto frag_frame_sent; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1499 | } |
| 1500 | goto end; |
| 1501 | |
| 1502 | frag_frame_sent: |
| 1503 | appctx->st0 = SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY; |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1504 | *skip = 1; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1505 | SPOE_APPCTX(appctx)->frag_ctx.ctx = ctx; |
| 1506 | SPOE_APPCTX(appctx)->frag_ctx.cursid = ctx->stream_id; |
| 1507 | SPOE_APPCTX(appctx)->frag_ctx.curfid = ctx->frame_id; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1508 | ctx->state = SPOE_CTX_ST_ENCODING_MSGS; |
| 1509 | task_wakeup(ctx->strm->task, TASK_WOKEN_MSG); |
| 1510 | goto end; |
| 1511 | |
| 1512 | no_frag_frame_sent: |
| 1513 | if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_ASYNC) { |
| 1514 | appctx->st0 = SPOE_APPCTX_ST_PROCESSING; |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 1515 | LIST_ADDQ(&agent->rt[tid].waiting_queue, &ctx->list); |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1516 | } |
| 1517 | else if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_PIPELINING) { |
| 1518 | appctx->st0 = SPOE_APPCTX_ST_PROCESSING; |
| 1519 | LIST_ADDQ(&SPOE_APPCTX(appctx)->waiting_queue, &ctx->list); |
| 1520 | } |
| 1521 | else { |
| 1522 | appctx->st0 = SPOE_APPCTX_ST_WAITING_SYNC_ACK; |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1523 | *skip = 1; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1524 | LIST_ADDQ(&SPOE_APPCTX(appctx)->waiting_queue, &ctx->list); |
| 1525 | } |
| 1526 | SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL; |
| 1527 | SPOE_APPCTX(appctx)->frag_ctx.cursid = 0; |
| 1528 | SPOE_APPCTX(appctx)->frag_ctx.curfid = 0; |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1529 | SPOE_APPCTX(appctx)->cur_fpa++; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1530 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1531 | ctx->state = SPOE_CTX_ST_WAITING_ACK; |
| 1532 | goto end; |
| 1533 | |
| 1534 | abort_frag_frame: |
| 1535 | appctx->st0 = SPOE_APPCTX_ST_PROCESSING; |
| 1536 | SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL; |
| 1537 | SPOE_APPCTX(appctx)->frag_ctx.cursid = 0; |
| 1538 | SPOE_APPCTX(appctx)->frag_ctx.curfid = 0; |
| 1539 | goto end; |
| 1540 | |
| 1541 | end: |
| 1542 | return ret; |
| 1543 | } |
| 1544 | |
| 1545 | static int |
| 1546 | spoe_handle_receiving_frame_appctx(struct appctx *appctx, int *skip) |
| 1547 | { |
| 1548 | struct spoe_context *ctx = NULL; |
| 1549 | char *frame; |
| 1550 | int ret; |
| 1551 | |
| 1552 | frame = trash.str; trash.len = 0; |
| 1553 | ret = spoe_recv_frame(appctx, frame, |
| 1554 | SPOE_APPCTX(appctx)->max_frame_size); |
| 1555 | if (ret > 1) { |
| 1556 | if (*frame == SPOE_FRM_T_AGENT_DISCON) { |
| 1557 | appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING; |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1558 | ret = -1; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1559 | goto end; |
| 1560 | } |
| 1561 | trash.len = ret + 4; |
| 1562 | ret = spoe_handle_agentack_frame(appctx, &ctx, frame, ret); |
| 1563 | } |
| 1564 | switch (ret) { |
| 1565 | case -1: /* error */ |
| 1566 | appctx->st0 = SPOE_APPCTX_ST_DISCONNECT; |
| 1567 | break; |
| 1568 | |
| 1569 | case 0: /* ignore */ |
| 1570 | break; |
| 1571 | |
| 1572 | case 1: /* retry */ |
| 1573 | *skip = 1; |
| 1574 | break; |
| 1575 | |
| 1576 | default: |
| 1577 | LIST_DEL(&ctx->list); |
| 1578 | LIST_INIT(&ctx->list); |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1579 | if (ctx->spoe_appctx) { |
| 1580 | ctx->spoe_appctx->cur_fpa--; |
Christopher Faulet | fce747b | 2018-01-24 15:59:32 +0100 | [diff] [blame] | 1581 | ctx->spoe_appctx = NULL; |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1582 | } |
Christopher Faulet | 8eda93f | 2017-02-09 09:44:33 +0100 | [diff] [blame] | 1583 | if (appctx->st0 == SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY && |
| 1584 | ctx == SPOE_APPCTX(appctx)->frag_ctx.ctx) { |
| 1585 | appctx->st0 = SPOE_APPCTX_ST_PROCESSING; |
| 1586 | SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL; |
| 1587 | SPOE_APPCTX(appctx)->frag_ctx.cursid = 0; |
| 1588 | SPOE_APPCTX(appctx)->frag_ctx.curfid = 0; |
| 1589 | } |
| 1590 | else if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK) |
| 1591 | appctx->st0 = SPOE_APPCTX_ST_PROCESSING; |
| 1592 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1593 | task_wakeup(ctx->strm->task, TASK_WOKEN_MSG); |
| 1594 | break; |
| 1595 | } |
| 1596 | |
| 1597 | /* Do not forget to remove processed frame from the output buffer */ |
| 1598 | if (trash.len) |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1599 | co_skip(si_oc(appctx->owner), trash.len); |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1600 | end: |
| 1601 | return ret; |
| 1602 | } |
| 1603 | |
| 1604 | static int |
| 1605 | spoe_handle_processing_appctx(struct appctx *appctx) |
| 1606 | { |
| 1607 | struct stream_interface *si = appctx->owner; |
| 1608 | struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent; |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1609 | int ret, skip_sending = 0, skip_receiving = 0, active_s = 0, active_r = 0; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1610 | |
| 1611 | if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) { |
| 1612 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO; |
| 1613 | goto exit; |
| 1614 | } |
| 1615 | |
| 1616 | if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) { |
| 1617 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT; |
| 1618 | appctx->st0 = SPOE_APPCTX_ST_DISCONNECT; |
| 1619 | appctx->st1 = SPOE_APPCTX_ERR_NONE; |
| 1620 | goto next; |
| 1621 | } |
| 1622 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 1623 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p" |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1624 | " - process: fpa=%u/%u - appctx-state=%s - weight=%u - flags=0x%08x\n", |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 1625 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1626 | __FUNCTION__, appctx, SPOE_APPCTX(appctx)->cur_fpa, |
| 1627 | agent->max_fpa, spoe_appctx_state_str[appctx->st0], |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1628 | SPOE_APPCTX(appctx)->node.key, SPOE_APPCTX(appctx)->flags); |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 1629 | |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1630 | if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK) |
| 1631 | skip_sending = 1; |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 1632 | |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1633 | /* receiving_frame loop */ |
| 1634 | while (!skip_receiving) { |
| 1635 | ret = spoe_handle_receiving_frame_appctx(appctx, &skip_receiving); |
| 1636 | switch (ret) { |
| 1637 | case -1: /* error */ |
| 1638 | goto next; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1639 | |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1640 | case 0: /* ignore */ |
| 1641 | active_r = 1; |
| 1642 | break; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1643 | |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1644 | case 1: /* retry */ |
| 1645 | break; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1646 | |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1647 | default: |
| 1648 | active_r = 1; |
| 1649 | break; |
| 1650 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1651 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1652 | |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1653 | /* send_frame loop */ |
| 1654 | while (!skip_sending && SPOE_APPCTX(appctx)->cur_fpa < agent->max_fpa) { |
| 1655 | ret = spoe_handle_sending_frame_appctx(appctx, &skip_sending); |
| 1656 | switch (ret) { |
| 1657 | case -1: /* error */ |
| 1658 | goto next; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1659 | |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1660 | case 0: /* ignore */ |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1661 | if (SPOE_APPCTX(appctx)->node.key) |
| 1662 | SPOE_APPCTX(appctx)->node.key--; |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1663 | active_s++; |
| 1664 | break; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1665 | |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1666 | case 1: /* retry */ |
| 1667 | break; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1668 | |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1669 | default: |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1670 | if (SPOE_APPCTX(appctx)->node.key) |
| 1671 | SPOE_APPCTX(appctx)->node.key--; |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1672 | active_s++; |
| 1673 | break; |
| 1674 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1675 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1676 | |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1677 | if (active_s || active_r) { |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1678 | update_freq_ctr(&agent->rt[tid].processing_per_sec, active_s); |
| 1679 | SPOE_APPCTX(appctx)->task->expire = tick_add_ifset(now_ms, agent->timeout.idle); |
| 1680 | } |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1681 | |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1682 | if (appctx->st0 == SPOE_APPCTX_ST_PROCESSING && SPOE_APPCTX(appctx)->cur_fpa < agent->max_fpa) { |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1683 | SPOE_DEBUG_STMT(agent->rt[tid].applets_idle++); |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1684 | appctx->st0 = SPOE_APPCTX_ST_IDLE; |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1685 | eb32_insert(&agent->rt[tid].idle_applets, &SPOE_APPCTX(appctx)->node); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1686 | } |
| 1687 | return 1; |
| 1688 | |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1689 | next: |
| 1690 | SPOE_APPCTX(appctx)->task->expire = tick_add_ifset(now_ms, agent->timeout.idle); |
| 1691 | return 0; |
| 1692 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1693 | exit: |
| 1694 | appctx->st0 = SPOE_APPCTX_ST_EXIT; |
| 1695 | return 0; |
| 1696 | } |
| 1697 | |
| 1698 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1699 | spoe_handle_disconnect_appctx(struct appctx *appctx) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1700 | { |
| 1701 | struct stream_interface *si = appctx->owner; |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1702 | struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1703 | char *frame, *buf; |
| 1704 | int ret; |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 1705 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1706 | if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) |
| 1707 | goto exit; |
| 1708 | |
| 1709 | if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) |
| 1710 | goto exit; |
| 1711 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1712 | /* 4 bytes are reserved at the beginning of <buf> to store the frame |
| 1713 | * length. */ |
| 1714 | buf = trash.str; frame = buf+4; |
| 1715 | ret = spoe_prepare_hadiscon_frame(appctx, frame, |
| 1716 | SPOE_APPCTX(appctx)->max_frame_size); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1717 | if (ret > 1) |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1718 | ret = spoe_send_frame(appctx, buf, ret); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1719 | |
| 1720 | switch (ret) { |
| 1721 | case -1: /* error */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1722 | case 0: /* ignore => an error, cannot be ignored */ |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1723 | goto exit; |
| 1724 | |
| 1725 | case 1: /* retry */ |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1726 | goto stop; |
| 1727 | |
| 1728 | default: |
| 1729 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p" |
| 1730 | " - disconnected by HAProxy (%d): %s\n", |
| 1731 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1732 | __FUNCTION__, appctx, |
| 1733 | SPOE_APPCTX(appctx)->status_code, |
| 1734 | spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code]); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1735 | |
| 1736 | appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING; |
| 1737 | goto next; |
| 1738 | } |
| 1739 | |
| 1740 | next: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1741 | SPOE_APPCTX(appctx)->task->expire = |
| 1742 | tick_add_ifset(now_ms, agent->timeout.idle); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1743 | return 0; |
| 1744 | stop: |
| 1745 | return 1; |
| 1746 | exit: |
| 1747 | appctx->st0 = SPOE_APPCTX_ST_EXIT; |
| 1748 | return 0; |
| 1749 | } |
| 1750 | |
| 1751 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1752 | spoe_handle_disconnecting_appctx(struct appctx *appctx) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1753 | { |
| 1754 | struct stream_interface *si = appctx->owner; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1755 | char *frame; |
| 1756 | int ret; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1757 | |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 1758 | if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1759 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1760 | goto exit; |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 1761 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1762 | |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 1763 | if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1764 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1765 | goto exit; |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 1766 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1767 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1768 | frame = trash.str; trash.len = 0; |
| 1769 | ret = spoe_recv_frame(appctx, frame, |
| 1770 | SPOE_APPCTX(appctx)->max_frame_size); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1771 | if (ret > 1) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1772 | trash.len = ret + 4; |
| 1773 | ret = spoe_handle_agentdiscon_frame(appctx, frame, ret); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1774 | } |
| 1775 | |
| 1776 | switch (ret) { |
| 1777 | case -1: /* error */ |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1778 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p" |
| 1779 | " - error on frame (%s)\n", |
| 1780 | (int)now.tv_sec, (int)now.tv_usec, |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1781 | ((struct spoe_agent *)SPOE_APPCTX(appctx)->agent)->id, |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1782 | __FUNCTION__, appctx, |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1783 | spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code]); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1784 | goto exit; |
| 1785 | |
| 1786 | case 0: /* ignore */ |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1787 | goto next; |
| 1788 | |
| 1789 | case 1: /* retry */ |
| 1790 | goto stop; |
| 1791 | |
| 1792 | default: |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1793 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p" |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1794 | " - disconnected by peer (%d): %.*s\n", |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1795 | (int)now.tv_sec, (int)now.tv_usec, |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1796 | ((struct spoe_agent *)SPOE_APPCTX(appctx)->agent)->id, |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1797 | __FUNCTION__, appctx, SPOE_APPCTX(appctx)->status_code, |
| 1798 | SPOE_APPCTX(appctx)->rlen, SPOE_APPCTX(appctx)->reason); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1799 | goto exit; |
| 1800 | } |
| 1801 | |
| 1802 | next: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1803 | /* Do not forget to remove processed frame from the output buffer */ |
| 1804 | if (trash.len) |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1805 | co_skip(si_oc(appctx->owner), trash.len); |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1806 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1807 | return 0; |
| 1808 | stop: |
| 1809 | return 1; |
| 1810 | exit: |
| 1811 | appctx->st0 = SPOE_APPCTX_ST_EXIT; |
| 1812 | return 0; |
| 1813 | } |
| 1814 | |
| 1815 | /* I/O Handler processing messages exchanged with the agent */ |
| 1816 | static void |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1817 | spoe_handle_appctx(struct appctx *appctx) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1818 | { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1819 | struct stream_interface *si = appctx->owner; |
| 1820 | struct spoe_agent *agent; |
| 1821 | |
| 1822 | if (SPOE_APPCTX(appctx) == NULL) |
| 1823 | return; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1824 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1825 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE; |
| 1826 | agent = SPOE_APPCTX(appctx)->agent; |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 1827 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1828 | switchstate: |
| 1829 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p" |
| 1830 | " - appctx-state=%s\n", |
| 1831 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
| 1832 | __FUNCTION__, appctx, spoe_appctx_state_str[appctx->st0]); |
| 1833 | |
| 1834 | switch (appctx->st0) { |
| 1835 | case SPOE_APPCTX_ST_CONNECT: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1836 | if (spoe_handle_connect_appctx(appctx)) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1837 | goto out; |
| 1838 | goto switchstate; |
| 1839 | |
| 1840 | case SPOE_APPCTX_ST_CONNECTING: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1841 | if (spoe_handle_connecting_appctx(appctx)) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1842 | goto out; |
| 1843 | goto switchstate; |
| 1844 | |
| 1845 | case SPOE_APPCTX_ST_IDLE: |
Christopher Faulet | 7d9f1ba | 2018-02-28 13:33:26 +0100 | [diff] [blame] | 1846 | SPOE_DEBUG_STMT(agent->rt[tid].applets_idle--); |
| 1847 | eb32_delete(&SPOE_APPCTX(appctx)->node); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1848 | if (stopping && |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 1849 | LIST_ISEMPTY(&agent->rt[tid].sending_queue) && |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1850 | LIST_ISEMPTY(&SPOE_APPCTX(appctx)->waiting_queue)) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1851 | SPOE_APPCTX(appctx)->task->expire = |
| 1852 | tick_add_ifset(now_ms, agent->timeout.idle); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1853 | appctx->st0 = SPOE_APPCTX_ST_DISCONNECT; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1854 | goto switchstate; |
| 1855 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1856 | appctx->st0 = SPOE_APPCTX_ST_PROCESSING; |
| 1857 | /* fall through */ |
| 1858 | |
| 1859 | case SPOE_APPCTX_ST_PROCESSING: |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 1860 | case SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY: |
| 1861 | case SPOE_APPCTX_ST_WAITING_SYNC_ACK: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1862 | if (spoe_handle_processing_appctx(appctx)) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1863 | goto out; |
| 1864 | goto switchstate; |
| 1865 | |
| 1866 | case SPOE_APPCTX_ST_DISCONNECT: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1867 | if (spoe_handle_disconnect_appctx(appctx)) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1868 | goto out; |
| 1869 | goto switchstate; |
| 1870 | |
| 1871 | case SPOE_APPCTX_ST_DISCONNECTING: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1872 | if (spoe_handle_disconnecting_appctx(appctx)) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1873 | goto out; |
| 1874 | goto switchstate; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1875 | |
| 1876 | case SPOE_APPCTX_ST_EXIT: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1877 | appctx->st0 = SPOE_APPCTX_ST_END; |
| 1878 | SPOE_APPCTX(appctx)->task->expire = TICK_ETERNITY; |
| 1879 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1880 | si_shutw(si); |
| 1881 | si_shutr(si); |
| 1882 | si_ic(si)->flags |= CF_READ_NULL; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1883 | /* fall through */ |
| 1884 | |
| 1885 | case SPOE_APPCTX_ST_END: |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 1886 | return; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1887 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1888 | out: |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 1889 | if (stopping) |
| 1890 | spoe_wakeup_appctx(appctx); |
| 1891 | |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1892 | if (SPOE_APPCTX(appctx)->task->expire != TICK_ETERNITY) |
| 1893 | task_queue(SPOE_APPCTX(appctx)->task); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1894 | si_oc(si)->flags |= CF_READ_DONTWAIT; |
| 1895 | task_wakeup(si_strm(si)->task, TASK_WOKEN_IO); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1896 | } |
| 1897 | |
| 1898 | struct applet spoe_applet = { |
| 1899 | .obj_type = OBJ_TYPE_APPLET, |
| 1900 | .name = "<SPOE>", /* used for logging */ |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1901 | .fct = spoe_handle_appctx, |
| 1902 | .release = spoe_release_appctx, |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1903 | }; |
| 1904 | |
| 1905 | /* Create a SPOE applet. On success, the created applet is returned, else |
| 1906 | * NULL. */ |
| 1907 | static struct appctx * |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1908 | spoe_create_appctx(struct spoe_config *conf) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1909 | { |
| 1910 | struct appctx *appctx; |
| 1911 | struct session *sess; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1912 | struct stream *strm; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1913 | |
Emeric Brun | 1138fd0 | 2017-06-19 12:38:55 +0200 | [diff] [blame] | 1914 | if ((appctx = appctx_new(&spoe_applet, tid_bit)) == NULL) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1915 | goto out_error; |
| 1916 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1917 | appctx->ctx.spoe.ptr = pool_alloc_dirty(pool_head_spoe_appctx); |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1918 | if (SPOE_APPCTX(appctx) == NULL) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1919 | goto out_free_appctx; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1920 | memset(appctx->ctx.spoe.ptr, 0, pool_head_spoe_appctx->size); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1921 | |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1922 | appctx->st0 = SPOE_APPCTX_ST_CONNECT; |
Willy Tarreau | 5f4a47b | 2017-10-31 15:59:32 +0100 | [diff] [blame] | 1923 | if ((SPOE_APPCTX(appctx)->task = task_new(tid_bit)) == NULL) |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1924 | goto out_free_spoe_appctx; |
| 1925 | |
| 1926 | SPOE_APPCTX(appctx)->owner = appctx; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1927 | SPOE_APPCTX(appctx)->task->process = spoe_process_appctx; |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1928 | SPOE_APPCTX(appctx)->task->context = appctx; |
| 1929 | SPOE_APPCTX(appctx)->agent = conf->agent; |
| 1930 | SPOE_APPCTX(appctx)->version = 0; |
| 1931 | SPOE_APPCTX(appctx)->max_frame_size = conf->agent->max_frame_size; |
| 1932 | SPOE_APPCTX(appctx)->flags = 0; |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 1933 | SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE; |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 1934 | SPOE_APPCTX(appctx)->buffer = &buf_empty; |
Christopher Faulet | 8f82b20 | 2018-01-24 16:23:03 +0100 | [diff] [blame] | 1935 | SPOE_APPCTX(appctx)->cur_fpa = 0; |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 1936 | |
| 1937 | LIST_INIT(&SPOE_APPCTX(appctx)->buffer_wait.list); |
| 1938 | SPOE_APPCTX(appctx)->buffer_wait.target = appctx; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1939 | SPOE_APPCTX(appctx)->buffer_wait.wakeup_cb = (int (*)(void *))spoe_wakeup_appctx; |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1940 | |
| 1941 | LIST_INIT(&SPOE_APPCTX(appctx)->list); |
| 1942 | LIST_INIT(&SPOE_APPCTX(appctx)->waiting_queue); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1943 | |
Willy Tarreau | 5820a36 | 2016-12-22 15:59:02 +0100 | [diff] [blame] | 1944 | sess = session_new(&conf->agent_fe, NULL, &appctx->obj_type); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1945 | if (!sess) |
| 1946 | goto out_free_spoe; |
| 1947 | |
Willy Tarreau | 87787ac | 2017-08-28 16:22:54 +0200 | [diff] [blame] | 1948 | if ((strm = stream_new(sess, &appctx->obj_type)) == NULL) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1949 | goto out_free_sess; |
| 1950 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1951 | stream_set_backend(strm, conf->agent->b.be); |
| 1952 | |
| 1953 | /* applet is waiting for data */ |
| 1954 | si_applet_cant_get(&strm->si[0]); |
| 1955 | appctx_wakeup(appctx); |
| 1956 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1957 | strm->do_log = NULL; |
| 1958 | strm->res.flags |= CF_READ_DONTWAIT; |
| 1959 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1960 | HA_SPIN_LOCK(SPOE_APPLET_LOCK, &conf->agent->rt[tid].lock); |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 1961 | LIST_ADDQ(&conf->agent->rt[tid].applets, &SPOE_APPCTX(appctx)->list); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1962 | HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &conf->agent->rt[tid].lock); |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1963 | SPOE_DEBUG_STMT(conf->agent->rt[tid].applets_act++); |
Emeric Brun | 5f77fef | 2017-05-29 15:26:51 +0200 | [diff] [blame] | 1964 | |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 1965 | task_wakeup(SPOE_APPCTX(appctx)->task, TASK_WOKEN_INIT); |
Willy Tarreau | 87787ac | 2017-08-28 16:22:54 +0200 | [diff] [blame] | 1966 | task_wakeup(strm->task, TASK_WOKEN_INIT); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1967 | return appctx; |
| 1968 | |
| 1969 | /* Error unrolling */ |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1970 | out_free_sess: |
| 1971 | session_free(sess); |
| 1972 | out_free_spoe: |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1973 | task_free(SPOE_APPCTX(appctx)->task); |
| 1974 | out_free_spoe_appctx: |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1975 | pool_free(pool_head_spoe_appctx, SPOE_APPCTX(appctx)); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1976 | out_free_appctx: |
| 1977 | appctx_free(appctx); |
| 1978 | out_error: |
| 1979 | return NULL; |
| 1980 | } |
| 1981 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1982 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 1983 | spoe_queue_context(struct spoe_context *ctx) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1984 | { |
| 1985 | struct spoe_config *conf = FLT_CONF(ctx->filter); |
| 1986 | struct spoe_agent *agent = conf->agent; |
| 1987 | struct appctx *appctx; |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 1988 | struct spoe_appctx *spoe_appctx; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1989 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1990 | /* Check if we need to create a new SPOE applet or not. */ |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 1991 | if (!eb_is_empty(&agent->rt[tid].idle_applets) && |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 1992 | agent->rt[tid].processing < read_freq_ctr(&agent->rt[tid].processing_per_sec)) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1993 | goto end; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1994 | |
| 1995 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 1996 | " - try to create new SPOE appctx\n", |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1997 | (int)now.tv_sec, (int)now.tv_usec, agent->id, __FUNCTION__, |
| 1998 | ctx->strm); |
| 1999 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2000 | /* Do not try to create a new applet if there is no server up for the |
| 2001 | * agent's backend. */ |
| 2002 | if (!agent->b.be->srv_act && !agent->b.be->srv_bck) { |
| 2003 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
| 2004 | " - cannot create SPOE appctx: no server up\n", |
| 2005 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
| 2006 | __FUNCTION__, ctx->strm); |
| 2007 | goto end; |
| 2008 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2009 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2010 | /* Do not try to create a new applet if we have reached the maximum of |
| 2011 | * connection per seconds */ |
Christopher Faulet | 4802672 | 2016-11-16 15:01:12 +0100 | [diff] [blame] | 2012 | if (agent->cps_max > 0) { |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 2013 | if (!freq_ctr_remain(&agent->rt[tid].conn_per_sec, agent->cps_max, 0)) { |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2014 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
| 2015 | " - cannot create SPOE appctx: max CPS reached\n", |
| 2016 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
| 2017 | __FUNCTION__, ctx->strm); |
| 2018 | goto end; |
| 2019 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2020 | } |
| 2021 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2022 | appctx = spoe_create_appctx(conf); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2023 | if (appctx == NULL) { |
| 2024 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
| 2025 | " - failed to create SPOE appctx\n", |
| 2026 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
| 2027 | __FUNCTION__, ctx->strm); |
Christopher Faulet | 72bcc47 | 2017-01-04 16:39:41 +0100 | [diff] [blame] | 2028 | send_log(ctx->strm->be, LOG_EMERG, |
| 2029 | "SPOE: [%s] failed to create SPOE applet\n", |
| 2030 | agent->id); |
| 2031 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2032 | goto end; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2033 | } |
| 2034 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2035 | /* Increase the per-process number of cumulated connections */ |
| 2036 | if (agent->cps_max > 0) |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 2037 | update_freq_ctr(&agent->rt[tid].conn_per_sec, 1); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2038 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2039 | end: |
| 2040 | /* The only reason to return an error is when there is no applet */ |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 2041 | if (LIST_ISEMPTY(&agent->rt[tid].applets)) { |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2042 | ctx->status_code = SPOE_CTX_ERR_RES; |
| 2043 | return -1; |
| 2044 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2045 | |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2046 | /* Add the SPOE context in the sending queue */ |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 2047 | LIST_ADDQ(&agent->rt[tid].sending_queue, &ctx->list); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2048 | |
| 2049 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2050 | " - Add stream in sending queue" |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2051 | " - applets_act=%u - applets_idle=%u - processing=%u\n", |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2052 | (int)now.tv_sec, (int)now.tv_usec, agent->id, __FUNCTION__, |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 2053 | ctx->strm, agent->rt[tid].applets_act, agent->rt[tid].applets_idle, |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2054 | agent->rt[tid].processing); |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 2055 | |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 2056 | /* Finally try to wakeup an IDLE applet. */ |
| 2057 | if (!eb_is_empty(&agent->rt[tid].idle_applets)) { |
| 2058 | struct eb32_node *node; |
| 2059 | |
| 2060 | node = eb32_first(&agent->rt[tid].idle_applets); |
| 2061 | spoe_appctx = eb32_entry(node, struct spoe_appctx, node); |
| 2062 | if (node && spoe_appctx) { |
| 2063 | eb32_delete(&spoe_appctx->node); |
| 2064 | spoe_appctx->node.key++; |
| 2065 | eb32_insert(&agent->rt[tid].idle_applets, &spoe_appctx->node); |
| 2066 | spoe_wakeup_appctx(spoe_appctx->owner); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2067 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2068 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2069 | return 1; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2070 | } |
| 2071 | |
| 2072 | /*************************************************************************** |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2073 | * Functions that encode SPOE messages |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2074 | **************************************************************************/ |
Christopher Faulet | 10e3767 | 2017-09-21 16:38:22 +0200 | [diff] [blame] | 2075 | /* Encode a SPOE message. Info in <ctx->frag_ctx>, if any, are used to handle |
| 2076 | * fragmented_content. If the next message can be processed, it returns 0. If |
| 2077 | * the message is too big, it returns -1.*/ |
| 2078 | static int |
| 2079 | spoe_encode_message(struct stream *s, struct spoe_context *ctx, |
| 2080 | struct spoe_message *msg, int dir, |
| 2081 | char **buf, char *end) |
| 2082 | { |
| 2083 | struct sample *smp; |
| 2084 | struct spoe_arg *arg; |
| 2085 | int ret; |
| 2086 | |
| 2087 | if (msg->cond) { |
| 2088 | ret = acl_exec_cond(msg->cond, s->be, s->sess, s, dir|SMP_OPT_FINAL); |
| 2089 | ret = acl_pass(ret); |
| 2090 | if (msg->cond->pol == ACL_COND_UNLESS) |
| 2091 | ret = !ret; |
| 2092 | |
| 2093 | /* the rule does not match */ |
| 2094 | if (!ret) |
| 2095 | goto next; |
| 2096 | } |
| 2097 | |
| 2098 | /* Resume encoding of a SPOE argument */ |
| 2099 | if (ctx->frag_ctx.curarg != NULL) { |
| 2100 | arg = ctx->frag_ctx.curarg; |
| 2101 | goto encode_argument; |
| 2102 | } |
| 2103 | |
| 2104 | if (ctx->frag_ctx.curoff != UINT_MAX) |
| 2105 | goto encode_msg_payload; |
| 2106 | |
| 2107 | /* Check if there is enough space for the message name and the |
| 2108 | * number of arguments. It implies <msg->id_len> is encoded on 2 |
| 2109 | * bytes, at most (< 2288). */ |
| 2110 | if (*buf + 2 + msg->id_len + 1 > end) |
| 2111 | goto too_big; |
| 2112 | |
| 2113 | /* Encode the message name */ |
| 2114 | if (spoe_encode_buffer(msg->id, msg->id_len, buf, end) == -1) |
| 2115 | goto too_big; |
| 2116 | |
| 2117 | /* Set the number of arguments for this message */ |
| 2118 | **buf = msg->nargs; |
| 2119 | (*buf)++; |
| 2120 | |
| 2121 | ctx->frag_ctx.curoff = 0; |
| 2122 | encode_msg_payload: |
| 2123 | |
| 2124 | /* Loop on arguments */ |
| 2125 | list_for_each_entry(arg, &msg->args, list) { |
| 2126 | ctx->frag_ctx.curarg = arg; |
| 2127 | ctx->frag_ctx.curoff = UINT_MAX; |
| 2128 | |
| 2129 | encode_argument: |
| 2130 | if (ctx->frag_ctx.curoff != UINT_MAX) |
| 2131 | goto encode_arg_value; |
| 2132 | |
| 2133 | /* Encode the arguement name as a string. It can by NULL */ |
| 2134 | if (spoe_encode_buffer(arg->name, arg->name_len, buf, end) == -1) |
| 2135 | goto too_big; |
| 2136 | |
| 2137 | ctx->frag_ctx.curoff = 0; |
| 2138 | encode_arg_value: |
| 2139 | |
| 2140 | /* Fetch the arguement value */ |
| 2141 | smp = sample_process(s->be, s->sess, s, dir|SMP_OPT_FINAL, arg->expr, NULL); |
| 2142 | ret = spoe_encode_data(smp, &ctx->frag_ctx.curoff, buf, end); |
| 2143 | if (ret == -1 || ctx->frag_ctx.curoff) |
| 2144 | goto too_big; |
| 2145 | } |
| 2146 | |
| 2147 | next: |
| 2148 | return 0; |
| 2149 | |
| 2150 | too_big: |
| 2151 | return -1; |
| 2152 | } |
| 2153 | |
Christopher Faulet | c718b82 | 2017-09-21 16:50:56 +0200 | [diff] [blame] | 2154 | /* Encode list of SPOE messages. Info in <ctx->frag_ctx>, if any, are used to |
| 2155 | * handle fragmented content. On success it returns 1. If an error occurred, -1 |
| 2156 | * is returned. If nothing has been encoded, it returns 0 (this is only possible |
| 2157 | * for unfragmented payload). */ |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2158 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2159 | spoe_encode_messages(struct stream *s, struct spoe_context *ctx, |
Christopher Faulet | c718b82 | 2017-09-21 16:50:56 +0200 | [diff] [blame] | 2160 | struct list *messages, int dir, int type) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2161 | { |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2162 | struct spoe_config *conf = FLT_CONF(ctx->filter); |
| 2163 | struct spoe_agent *agent = conf->agent; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2164 | struct spoe_message *msg; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2165 | char *p, *end; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2166 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2167 | p = ctx->buffer->p; |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 2168 | end = p + agent->rt[tid].frame_size - FRAME_HDR_SIZE; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2169 | |
Christopher Faulet | c718b82 | 2017-09-21 16:50:56 +0200 | [diff] [blame] | 2170 | if (type == SPOE_MSGS_BY_EVENT) { /* Loop on messages by event */ |
| 2171 | /* Resume encoding of a SPOE message */ |
| 2172 | if (ctx->frag_ctx.curmsg != NULL) { |
| 2173 | msg = ctx->frag_ctx.curmsg; |
| 2174 | goto encode_evt_message; |
| 2175 | } |
| 2176 | |
| 2177 | list_for_each_entry(msg, messages, by_evt) { |
| 2178 | ctx->frag_ctx.curmsg = msg; |
| 2179 | ctx->frag_ctx.curarg = NULL; |
| 2180 | ctx->frag_ctx.curoff = UINT_MAX; |
| 2181 | |
| 2182 | encode_evt_message: |
| 2183 | if (spoe_encode_message(s, ctx, msg, dir, &p, end) == -1) |
| 2184 | goto too_big; |
| 2185 | } |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2186 | } |
Christopher Faulet | c718b82 | 2017-09-21 16:50:56 +0200 | [diff] [blame] | 2187 | else if (type == SPOE_MSGS_BY_GROUP) { /* Loop on messages by group */ |
| 2188 | /* Resume encoding of a SPOE message */ |
| 2189 | if (ctx->frag_ctx.curmsg != NULL) { |
| 2190 | msg = ctx->frag_ctx.curmsg; |
| 2191 | goto encode_grp_message; |
| 2192 | } |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2193 | |
Christopher Faulet | c718b82 | 2017-09-21 16:50:56 +0200 | [diff] [blame] | 2194 | list_for_each_entry(msg, messages, by_grp) { |
| 2195 | ctx->frag_ctx.curmsg = msg; |
| 2196 | ctx->frag_ctx.curarg = NULL; |
| 2197 | ctx->frag_ctx.curoff = UINT_MAX; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2198 | |
Christopher Faulet | c718b82 | 2017-09-21 16:50:56 +0200 | [diff] [blame] | 2199 | encode_grp_message: |
| 2200 | if (spoe_encode_message(s, ctx, msg, dir, &p, end) == -1) |
| 2201 | goto too_big; |
| 2202 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2203 | } |
Christopher Faulet | c718b82 | 2017-09-21 16:50:56 +0200 | [diff] [blame] | 2204 | else |
| 2205 | goto skip; |
| 2206 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2207 | |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 2208 | /* nothing has been encoded for an unfragmented payload */ |
| 2209 | if (!(ctx->flags & SPOE_CTX_FL_FRAGMENTED) && p == ctx->buffer->p) |
| 2210 | goto skip; |
| 2211 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2212 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2213 | " - encode %s messages - spoe_appctx=%p" |
| 2214 | "- max_size=%u - encoded=%ld\n", |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2215 | (int)now.tv_sec, (int)now.tv_usec, |
| 2216 | agent->id, __FUNCTION__, s, |
| 2217 | ((ctx->flags & SPOE_CTX_FL_FRAGMENTED) ? "last fragment of" : "unfragmented"), |
Christopher Faulet | fce747b | 2018-01-24 15:59:32 +0100 | [diff] [blame] | 2218 | ctx->spoe_appctx, (agent->rt[tid].frame_size - FRAME_HDR_SIZE), |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2219 | p - ctx->buffer->p); |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2220 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2221 | ctx->buffer->i = p - ctx->buffer->p; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2222 | ctx->frag_ctx.curmsg = NULL; |
| 2223 | ctx->frag_ctx.curarg = NULL; |
| 2224 | ctx->frag_ctx.curoff = 0; |
| 2225 | ctx->frag_ctx.flags = SPOE_FRM_FL_FIN; |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 2226 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2227 | return 1; |
| 2228 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2229 | too_big: |
Christopher Faulet | cecd852 | 2017-02-24 22:11:21 +0100 | [diff] [blame] | 2230 | if (!(agent->flags & SPOE_FL_SND_FRAGMENTATION)) { |
| 2231 | ctx->status_code = SPOE_CTX_ERR_TOO_BIG; |
| 2232 | return -1; |
| 2233 | } |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2234 | |
| 2235 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2236 | " - encode fragmented messages - spoe_appctx=%p" |
| 2237 | " - curmsg=%p - curarg=%p - curoff=%u" |
| 2238 | " - max_size=%u - encoded=%ld\n", |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2239 | (int)now.tv_sec, (int)now.tv_usec, |
Christopher Faulet | fce747b | 2018-01-24 15:59:32 +0100 | [diff] [blame] | 2240 | agent->id, __FUNCTION__, s, ctx->spoe_appctx, |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2241 | ctx->frag_ctx.curmsg, ctx->frag_ctx.curarg, ctx->frag_ctx.curoff, |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 2242 | (agent->rt[tid].frame_size - FRAME_HDR_SIZE), p - ctx->buffer->p); |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2243 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2244 | ctx->buffer->i = p - ctx->buffer->p; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2245 | ctx->flags |= SPOE_CTX_FL_FRAGMENTED; |
| 2246 | ctx->frag_ctx.flags &= ~SPOE_FRM_FL_FIN; |
| 2247 | return 1; |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 2248 | |
| 2249 | skip: |
| 2250 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
| 2251 | " - skip the frame because nothing has been encoded\n", |
| 2252 | (int)now.tv_sec, (int)now.tv_usec, |
| 2253 | agent->id, __FUNCTION__, s); |
| 2254 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2255 | } |
| 2256 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2257 | |
| 2258 | /*************************************************************************** |
| 2259 | * Functions that handle SPOE actions |
| 2260 | **************************************************************************/ |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2261 | /* Helper function to set a variable */ |
| 2262 | static void |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2263 | spoe_set_var(struct spoe_context *ctx, char *scope, char *name, int len, |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2264 | struct sample *smp) |
| 2265 | { |
| 2266 | struct spoe_config *conf = FLT_CONF(ctx->filter); |
| 2267 | struct spoe_agent *agent = conf->agent; |
| 2268 | char varname[64]; |
| 2269 | |
| 2270 | memset(varname, 0, sizeof(varname)); |
| 2271 | len = snprintf(varname, sizeof(varname), "%s.%s.%.*s", |
| 2272 | scope, agent->var_pfx, len, name); |
Etienne Carriere | aec8989 | 2017-12-14 09:36:40 +0000 | [diff] [blame] | 2273 | if (agent->flags & SPOE_FL_FORCE_SET_VAR) |
| 2274 | vars_set_by_name(varname, len, smp); |
| 2275 | else |
| 2276 | vars_set_by_name_ifexist(varname, len, smp); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2277 | } |
| 2278 | |
| 2279 | /* Helper function to unset a variable */ |
| 2280 | static void |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2281 | spoe_unset_var(struct spoe_context *ctx, char *scope, char *name, int len, |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2282 | struct sample *smp) |
| 2283 | { |
| 2284 | struct spoe_config *conf = FLT_CONF(ctx->filter); |
| 2285 | struct spoe_agent *agent = conf->agent; |
| 2286 | char varname[64]; |
| 2287 | |
| 2288 | memset(varname, 0, sizeof(varname)); |
| 2289 | len = snprintf(varname, sizeof(varname), "%s.%s.%.*s", |
| 2290 | scope, agent->var_pfx, len, name); |
| 2291 | vars_unset_by_name_ifexist(varname, len, smp); |
| 2292 | } |
| 2293 | |
| 2294 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2295 | static inline int |
| 2296 | spoe_decode_action_set_var(struct stream *s, struct spoe_context *ctx, |
| 2297 | char **buf, char *end, int dir) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2298 | { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2299 | char *str, *scope, *p = *buf; |
| 2300 | struct sample smp; |
| 2301 | uint64_t sz; |
| 2302 | int ret; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2303 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2304 | if (p + 2 >= end) |
| 2305 | goto skip; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2306 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2307 | /* SET-VAR requires 3 arguments */ |
| 2308 | if (*p++ != 3) |
| 2309 | goto skip; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2310 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2311 | switch (*p++) { |
| 2312 | case SPOE_SCOPE_PROC: scope = "proc"; break; |
| 2313 | case SPOE_SCOPE_SESS: scope = "sess"; break; |
| 2314 | case SPOE_SCOPE_TXN : scope = "txn"; break; |
| 2315 | case SPOE_SCOPE_REQ : scope = "req"; break; |
| 2316 | case SPOE_SCOPE_RES : scope = "res"; break; |
| 2317 | default: goto skip; |
| 2318 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2319 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2320 | if (spoe_decode_buffer(&p, end, &str, &sz) == -1) |
| 2321 | goto skip; |
| 2322 | memset(&smp, 0, sizeof(smp)); |
| 2323 | smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2324 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2325 | if (spoe_decode_data(&p, end, &smp) == -1) |
| 2326 | goto skip; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2327 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2328 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
| 2329 | " - set-var '%s.%s.%.*s'\n", |
| 2330 | (int)now.tv_sec, (int)now.tv_usec, |
| 2331 | ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id, |
| 2332 | __FUNCTION__, s, scope, |
| 2333 | ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->var_pfx, |
| 2334 | (int)sz, str); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2335 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2336 | spoe_set_var(ctx, scope, str, sz, &smp); |
Christopher Faulet | b5cff60 | 2016-11-24 14:53:22 +0100 | [diff] [blame] | 2337 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2338 | ret = (p - *buf); |
| 2339 | *buf = p; |
| 2340 | return ret; |
| 2341 | skip: |
| 2342 | return 0; |
| 2343 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2344 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2345 | static inline int |
| 2346 | spoe_decode_action_unset_var(struct stream *s, struct spoe_context *ctx, |
| 2347 | char **buf, char *end, int dir) |
| 2348 | { |
| 2349 | char *str, *scope, *p = *buf; |
| 2350 | struct sample smp; |
| 2351 | uint64_t sz; |
| 2352 | int ret; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2353 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2354 | if (p + 2 >= end) |
| 2355 | goto skip; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2356 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2357 | /* UNSET-VAR requires 2 arguments */ |
| 2358 | if (*p++ != 2) |
| 2359 | goto skip; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2360 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2361 | switch (*p++) { |
| 2362 | case SPOE_SCOPE_PROC: scope = "proc"; break; |
| 2363 | case SPOE_SCOPE_SESS: scope = "sess"; break; |
| 2364 | case SPOE_SCOPE_TXN : scope = "txn"; break; |
| 2365 | case SPOE_SCOPE_REQ : scope = "req"; break; |
| 2366 | case SPOE_SCOPE_RES : scope = "res"; break; |
| 2367 | default: goto skip; |
| 2368 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2369 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2370 | if (spoe_decode_buffer(&p, end, &str, &sz) == -1) |
| 2371 | goto skip; |
| 2372 | memset(&smp, 0, sizeof(smp)); |
| 2373 | smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2374 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2375 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
| 2376 | " - unset-var '%s.%s.%.*s'\n", |
| 2377 | (int)now.tv_sec, (int)now.tv_usec, |
| 2378 | ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id, |
| 2379 | __FUNCTION__, s, scope, |
| 2380 | ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->var_pfx, |
| 2381 | (int)sz, str); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2382 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2383 | spoe_unset_var(ctx, scope, str, sz, &smp); |
| 2384 | |
| 2385 | ret = (p - *buf); |
| 2386 | *buf = p; |
| 2387 | return ret; |
| 2388 | skip: |
| 2389 | return 0; |
| 2390 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2391 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2392 | /* Process SPOE actions for a specific event. It returns 1 on success. If an |
| 2393 | * error occurred, 0 is returned. */ |
| 2394 | static int |
Christopher Faulet | 58d0368 | 2017-09-21 16:57:24 +0200 | [diff] [blame] | 2395 | spoe_process_actions(struct stream *s, struct spoe_context *ctx, int dir) |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2396 | { |
| 2397 | char *p, *end; |
| 2398 | int ret; |
| 2399 | |
| 2400 | p = ctx->buffer->p; |
| 2401 | end = p + ctx->buffer->i; |
| 2402 | |
| 2403 | while (p < end) { |
| 2404 | enum spoe_action_type type; |
| 2405 | |
| 2406 | type = *p++; |
| 2407 | switch (type) { |
| 2408 | case SPOE_ACT_T_SET_VAR: |
| 2409 | ret = spoe_decode_action_set_var(s, ctx, &p, end, dir); |
| 2410 | if (!ret) |
| 2411 | goto skip; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2412 | break; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2413 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2414 | case SPOE_ACT_T_UNSET_VAR: |
| 2415 | ret = spoe_decode_action_unset_var(s, ctx, &p, end, dir); |
| 2416 | if (!ret) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2417 | goto skip; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2418 | break; |
| 2419 | |
| 2420 | default: |
| 2421 | goto skip; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2422 | } |
| 2423 | } |
| 2424 | |
| 2425 | return 1; |
| 2426 | skip: |
| 2427 | return 0; |
| 2428 | } |
| 2429 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2430 | /*************************************************************************** |
| 2431 | * Functions that process SPOE events |
| 2432 | **************************************************************************/ |
| 2433 | static inline int |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2434 | spoe_start_processing(struct spoe_agent *agent, struct spoe_context *ctx, int dir) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2435 | { |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2436 | /* If a process is already started for this SPOE context, retry |
| 2437 | * later. */ |
| 2438 | if (ctx->flags & SPOE_CTX_FL_PROCESS) |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2439 | return 0; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2440 | |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2441 | agent->rt[tid].processing++; |
| 2442 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2443 | /* Set the right flag to prevent request and response processing |
| 2444 | * in same time. */ |
| 2445 | ctx->flags |= ((dir == SMP_OPT_DIR_REQ) |
| 2446 | ? SPOE_CTX_FL_REQ_PROCESS |
| 2447 | : SPOE_CTX_FL_RSP_PROCESS); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2448 | return 1; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2449 | } |
| 2450 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2451 | static inline void |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2452 | spoe_stop_processing(struct spoe_agent *agent, struct spoe_context *ctx) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2453 | { |
Christopher Faulet | fce747b | 2018-01-24 15:59:32 +0100 | [diff] [blame] | 2454 | struct spoe_appctx *sa = ctx->spoe_appctx; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2455 | |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2456 | if (!(ctx->flags & SPOE_CTX_FL_PROCESS)) |
| 2457 | return; |
| 2458 | |
Christopher Faulet | fce747b | 2018-01-24 15:59:32 +0100 | [diff] [blame] | 2459 | if (sa && sa->frag_ctx.ctx == ctx) { |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2460 | sa->frag_ctx.ctx = NULL; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2461 | spoe_wakeup_appctx(sa->owner); |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2462 | } |
| 2463 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2464 | /* Reset the flag to allow next processing */ |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2465 | agent->rt[tid].processing--; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2466 | ctx->flags &= ~(SPOE_CTX_FL_PROCESS|SPOE_CTX_FL_FRAGMENTED); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2467 | |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 2468 | ctx->status_code = 0; |
| 2469 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2470 | /* Reset processing timer */ |
| 2471 | ctx->process_exp = TICK_ETERNITY; |
| 2472 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2473 | spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2474 | |
Christopher Faulet | fce747b | 2018-01-24 15:59:32 +0100 | [diff] [blame] | 2475 | ctx->spoe_appctx = NULL; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2476 | ctx->frag_ctx.curmsg = NULL; |
| 2477 | ctx->frag_ctx.curarg = NULL; |
| 2478 | ctx->frag_ctx.curoff = 0; |
| 2479 | ctx->frag_ctx.flags = 0; |
| 2480 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2481 | if (!LIST_ISEMPTY(&ctx->list)) { |
| 2482 | LIST_DEL(&ctx->list); |
| 2483 | LIST_INIT(&ctx->list); |
| 2484 | } |
| 2485 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2486 | |
Christopher Faulet | 344c4ab | 2017-09-22 10:20:13 +0200 | [diff] [blame] | 2487 | static void |
| 2488 | spoe_handle_processing_error(struct stream *s, struct spoe_agent *agent, |
| 2489 | struct spoe_context *ctx, int dir) |
| 2490 | { |
| 2491 | if (agent->eps_max > 0) |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 2492 | update_freq_ctr(&agent->rt[tid].err_per_sec, 1); |
Christopher Faulet | 344c4ab | 2017-09-22 10:20:13 +0200 | [diff] [blame] | 2493 | |
| 2494 | if (agent->var_on_error) { |
| 2495 | struct sample smp; |
| 2496 | |
| 2497 | memset(&smp, 0, sizeof(smp)); |
| 2498 | smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL); |
| 2499 | smp.data.u.sint = ctx->status_code; |
| 2500 | smp.data.type = SMP_T_BOOL; |
| 2501 | |
| 2502 | spoe_set_var(ctx, "txn", agent->var_on_error, |
| 2503 | strlen(agent->var_on_error), &smp); |
| 2504 | } |
| 2505 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
| 2506 | " - failed to process messages: code=%u\n", |
| 2507 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
| 2508 | __FUNCTION__, s, ctx->status_code); |
| 2509 | send_log(ctx->strm->be, LOG_WARNING, |
| 2510 | "SPOE: [%s] failed to process messages: code=%u\n", |
| 2511 | agent->id, ctx->status_code); |
| 2512 | |
| 2513 | ctx->state = ((agent->flags & SPOE_FL_CONT_ON_ERR) |
| 2514 | ? SPOE_CTX_ST_READY |
| 2515 | : SPOE_CTX_ST_NONE); |
| 2516 | } |
| 2517 | |
Christopher Faulet | 58d0368 | 2017-09-21 16:57:24 +0200 | [diff] [blame] | 2518 | /* Process a list of SPOE messages. First, this functions will process messages |
| 2519 | * and send them to an agent in a NOTIFY frame. Then, it will wait a ACK frame |
| 2520 | * to process corresponding actions. During all the processing, it returns 0 |
| 2521 | * and it returns 1 when the processing is finished. If an error occurred, -1 |
| 2522 | * is returned. */ |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2523 | static int |
Christopher Faulet | 58d0368 | 2017-09-21 16:57:24 +0200 | [diff] [blame] | 2524 | spoe_process_messages(struct stream *s, struct spoe_context *ctx, |
| 2525 | struct list *messages, int dir, int type) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2526 | { |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 2527 | struct spoe_config *conf = FLT_CONF(ctx->filter); |
| 2528 | struct spoe_agent *agent = conf->agent; |
Christopher Faulet | 58d0368 | 2017-09-21 16:57:24 +0200 | [diff] [blame] | 2529 | int ret = 1; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2530 | |
| 2531 | if (ctx->state == SPOE_CTX_ST_ERROR) |
| 2532 | goto error; |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 2533 | |
| 2534 | if (tick_is_expired(ctx->process_exp, now_ms) && ctx->state != SPOE_CTX_ST_DONE) { |
| 2535 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
Christopher Faulet | 58d0368 | 2017-09-21 16:57:24 +0200 | [diff] [blame] | 2536 | " - failed to process messages: timeout\n", |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 2537 | (int)now.tv_sec, (int)now.tv_usec, |
Christopher Faulet | 58d0368 | 2017-09-21 16:57:24 +0200 | [diff] [blame] | 2538 | agent->id, __FUNCTION__, s); |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 2539 | ctx->status_code = SPOE_CTX_ERR_TOUT; |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 2540 | goto error; |
| 2541 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2542 | |
| 2543 | if (ctx->state == SPOE_CTX_ST_READY) { |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2544 | if (agent->eps_max > 0) { |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 2545 | if (!freq_ctr_remain(&agent->rt[tid].err_per_sec, agent->eps_max, 0)) { |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2546 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
Christopher Faulet | 58d0368 | 2017-09-21 16:57:24 +0200 | [diff] [blame] | 2547 | " - skip processing of messages: max EPS reached\n", |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2548 | (int)now.tv_sec, (int)now.tv_usec, |
Christopher Faulet | 58d0368 | 2017-09-21 16:57:24 +0200 | [diff] [blame] | 2549 | agent->id, __FUNCTION__, s); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2550 | goto skip; |
| 2551 | } |
| 2552 | } |
| 2553 | |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 2554 | if (!tick_isset(ctx->process_exp)) { |
| 2555 | ctx->process_exp = tick_add_ifset(now_ms, agent->timeout.processing); |
| 2556 | s->task->expire = tick_first((tick_is_expired(s->task->expire, now_ms) ? 0 : s->task->expire), |
| 2557 | ctx->process_exp); |
| 2558 | } |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2559 | ret = spoe_start_processing(agent, ctx, dir); |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 2560 | if (!ret) |
| 2561 | goto out; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2562 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2563 | ctx->state = SPOE_CTX_ST_ENCODING_MSGS; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2564 | /* fall through */ |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2565 | } |
| 2566 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2567 | if (ctx->state == SPOE_CTX_ST_ENCODING_MSGS) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2568 | if (!spoe_acquire_buffer(&ctx->buffer, &ctx->buffer_wait)) |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2569 | goto out; |
Christopher Faulet | 58d0368 | 2017-09-21 16:57:24 +0200 | [diff] [blame] | 2570 | ret = spoe_encode_messages(s, ctx, messages, dir, type); |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2571 | if (ret < 0) |
| 2572 | goto error; |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 2573 | if (!ret) |
| 2574 | goto skip; |
Christopher Faulet | 333694d | 2018-01-12 10:45:47 +0100 | [diff] [blame] | 2575 | if (spoe_queue_context(ctx) < 0) |
| 2576 | goto error; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2577 | ctx->state = SPOE_CTX_ST_SENDING_MSGS; |
| 2578 | } |
| 2579 | |
| 2580 | if (ctx->state == SPOE_CTX_ST_SENDING_MSGS) { |
Christopher Faulet | fce747b | 2018-01-24 15:59:32 +0100 | [diff] [blame] | 2581 | if (ctx->spoe_appctx) |
| 2582 | spoe_wakeup_appctx(ctx->spoe_appctx->owner); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2583 | ret = 0; |
| 2584 | goto out; |
| 2585 | } |
| 2586 | |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 2587 | if (ctx->state == SPOE_CTX_ST_WAITING_ACK) { |
| 2588 | ret = 0; |
| 2589 | goto out; |
| 2590 | } |
| 2591 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2592 | if (ctx->state == SPOE_CTX_ST_DONE) { |
Christopher Faulet | 58d0368 | 2017-09-21 16:57:24 +0200 | [diff] [blame] | 2593 | spoe_process_actions(s, ctx, dir); |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2594 | ret = 1; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2595 | ctx->frame_id++; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2596 | ctx->state = SPOE_CTX_ST_READY; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2597 | goto end; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2598 | } |
| 2599 | |
| 2600 | out: |
| 2601 | return ret; |
| 2602 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2603 | error: |
Christopher Faulet | 344c4ab | 2017-09-22 10:20:13 +0200 | [diff] [blame] | 2604 | spoe_handle_processing_error(s, agent, ctx, dir); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2605 | ret = 1; |
| 2606 | goto end; |
| 2607 | |
| 2608 | skip: |
| 2609 | ctx->state = SPOE_CTX_ST_READY; |
| 2610 | ret = 1; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2611 | |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2612 | end: |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2613 | spoe_stop_processing(agent, ctx); |
Christopher Faulet | 58d0368 | 2017-09-21 16:57:24 +0200 | [diff] [blame] | 2614 | return ret; |
| 2615 | } |
| 2616 | |
Christopher Faulet | 344c4ab | 2017-09-22 10:20:13 +0200 | [diff] [blame] | 2617 | /* Process a SPOE group, ie the list of messages attached to the group <grp>. |
| 2618 | * See spoe_process_message for details. */ |
| 2619 | static int |
| 2620 | spoe_process_group(struct stream *s, struct spoe_context *ctx, |
| 2621 | struct spoe_group *group, int dir) |
| 2622 | { |
| 2623 | int ret; |
| 2624 | |
| 2625 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
| 2626 | " - ctx-state=%s - Process messages for group=%s\n", |
| 2627 | (int)now.tv_sec, (int)now.tv_usec, |
| 2628 | ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id, |
| 2629 | __FUNCTION__, s, spoe_ctx_state_str[ctx->state], |
| 2630 | group->id); |
| 2631 | |
| 2632 | if (LIST_ISEMPTY(&group->messages)) |
| 2633 | return 1; |
| 2634 | |
| 2635 | ret = spoe_process_messages(s, ctx, &group->messages, dir, SPOE_MSGS_BY_GROUP); |
| 2636 | return ret; |
| 2637 | } |
| 2638 | |
Christopher Faulet | 58d0368 | 2017-09-21 16:57:24 +0200 | [diff] [blame] | 2639 | /* Process a SPOE event, ie the list of messages attached to the event <ev>. |
| 2640 | * See spoe_process_message for details. */ |
| 2641 | static int |
| 2642 | spoe_process_event(struct stream *s, struct spoe_context *ctx, |
| 2643 | enum spoe_event ev) |
| 2644 | { |
| 2645 | int dir, ret; |
| 2646 | |
| 2647 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
Christopher Faulet | 344c4ab | 2017-09-22 10:20:13 +0200 | [diff] [blame] | 2648 | " - ctx-state=%s - Process messages for event=%s\n", |
Christopher Faulet | 58d0368 | 2017-09-21 16:57:24 +0200 | [diff] [blame] | 2649 | (int)now.tv_sec, (int)now.tv_usec, |
| 2650 | ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id, |
| 2651 | __FUNCTION__, s, spoe_ctx_state_str[ctx->state], |
| 2652 | spoe_event_str[ev]); |
| 2653 | |
| 2654 | dir = ((ev < SPOE_EV_ON_SERVER_SESS) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES); |
| 2655 | |
| 2656 | if (LIST_ISEMPTY(&(ctx->events[ev]))) |
| 2657 | return 1; |
| 2658 | |
| 2659 | ret = spoe_process_messages(s, ctx, &(ctx->events[ev]), dir, SPOE_MSGS_BY_EVENT); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2660 | return ret; |
| 2661 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2662 | |
| 2663 | /*************************************************************************** |
| 2664 | * Functions that create/destroy SPOE contexts |
| 2665 | **************************************************************************/ |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2666 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2667 | spoe_acquire_buffer(struct buffer **buf, struct buffer_wait *buffer_wait) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2668 | { |
Christopher Faulet | 600d37e | 2017-11-10 11:54:58 +0100 | [diff] [blame] | 2669 | if ((*buf)->size) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2670 | return 1; |
| 2671 | |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 2672 | if (!LIST_ISEMPTY(&buffer_wait->list)) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2673 | HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 2674 | LIST_DEL(&buffer_wait->list); |
| 2675 | LIST_INIT(&buffer_wait->list); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2676 | HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2677 | } |
| 2678 | |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 2679 | if (b_alloc_margin(buf, global.tune.reserved_bufs)) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2680 | return 1; |
| 2681 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2682 | HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 2683 | LIST_ADDQ(&buffer_wq, &buffer_wait->list); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2684 | HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2685 | return 0; |
| 2686 | } |
| 2687 | |
| 2688 | static void |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2689 | spoe_release_buffer(struct buffer **buf, struct buffer_wait *buffer_wait) |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2690 | { |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 2691 | if (!LIST_ISEMPTY(&buffer_wait->list)) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2692 | HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 2693 | LIST_DEL(&buffer_wait->list); |
| 2694 | LIST_INIT(&buffer_wait->list); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2695 | HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2696 | } |
| 2697 | |
| 2698 | /* Release the buffer if needed */ |
Christopher Faulet | 600d37e | 2017-11-10 11:54:58 +0100 | [diff] [blame] | 2699 | if ((*buf)->size) { |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 2700 | b_free(buf); |
| 2701 | offer_buffers(buffer_wait->target, |
| 2702 | tasks_run_queue + applets_active_queue); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2703 | } |
| 2704 | } |
| 2705 | |
Christopher Faulet | 4596fb7 | 2017-01-11 14:05:19 +0100 | [diff] [blame] | 2706 | static int |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2707 | spoe_wakeup_context(struct spoe_context *ctx) |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 2708 | { |
| 2709 | task_wakeup(ctx->strm->task, TASK_WOKEN_MSG); |
| 2710 | return 1; |
| 2711 | } |
| 2712 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2713 | static struct spoe_context * |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2714 | spoe_create_context(struct stream *s, struct filter *filter) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2715 | { |
| 2716 | struct spoe_config *conf = FLT_CONF(filter); |
| 2717 | struct spoe_context *ctx; |
| 2718 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 2719 | ctx = pool_alloc_dirty(pool_head_spoe_ctx); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2720 | if (ctx == NULL) { |
| 2721 | return NULL; |
| 2722 | } |
| 2723 | memset(ctx, 0, sizeof(*ctx)); |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 2724 | ctx->filter = filter; |
| 2725 | ctx->state = SPOE_CTX_ST_NONE; |
| 2726 | ctx->status_code = SPOE_CTX_ERR_NONE; |
| 2727 | ctx->flags = 0; |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 2728 | ctx->events = conf->agent->events; |
Christopher Faulet | 76c09ef | 2017-09-21 11:03:52 +0200 | [diff] [blame] | 2729 | ctx->groups = &conf->agent->groups; |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 2730 | ctx->buffer = &buf_empty; |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 2731 | LIST_INIT(&ctx->buffer_wait.list); |
| 2732 | ctx->buffer_wait.target = ctx; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2733 | ctx->buffer_wait.wakeup_cb = (int (*)(void *))spoe_wakeup_context; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 2734 | LIST_INIT(&ctx->list); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2735 | |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 2736 | ctx->stream_id = 0; |
| 2737 | ctx->frame_id = 1; |
| 2738 | ctx->process_exp = TICK_ETERNITY; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2739 | |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2740 | ctx->strm = s; |
| 2741 | ctx->state = SPOE_CTX_ST_READY; |
| 2742 | filter->ctx = ctx; |
| 2743 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2744 | return ctx; |
| 2745 | } |
| 2746 | |
| 2747 | static void |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2748 | spoe_destroy_context(struct filter *filter) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2749 | { |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2750 | struct spoe_config *conf = FLT_CONF(filter); |
| 2751 | struct spoe_context *ctx = filter->ctx; |
| 2752 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2753 | if (!ctx) |
| 2754 | return; |
| 2755 | |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2756 | spoe_stop_processing(conf->agent, ctx); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 2757 | pool_free(pool_head_spoe_ctx, ctx); |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2758 | filter->ctx = NULL; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2759 | } |
| 2760 | |
| 2761 | static void |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2762 | spoe_reset_context(struct spoe_context *ctx) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2763 | { |
| 2764 | ctx->state = SPOE_CTX_ST_READY; |
Christopher Faulet | f032c3e | 2017-02-17 15:18:35 +0100 | [diff] [blame] | 2765 | ctx->flags &= ~(SPOE_CTX_FL_PROCESS|SPOE_CTX_FL_FRAGMENTED); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2766 | } |
| 2767 | |
| 2768 | |
| 2769 | /*************************************************************************** |
| 2770 | * Hooks that manage the filter lifecycle (init/check/deinit) |
| 2771 | **************************************************************************/ |
| 2772 | /* Signal handler: Do a soft stop, wakeup SPOE applet */ |
| 2773 | static void |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2774 | spoe_sig_stop(struct sig_handler *sh) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2775 | { |
| 2776 | struct proxy *p; |
| 2777 | |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 2778 | p = proxies_list; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2779 | while (p) { |
| 2780 | struct flt_conf *fconf; |
| 2781 | |
| 2782 | list_for_each_entry(fconf, &p->filter_configs, list) { |
Christopher Faulet | 3b386a3 | 2017-02-23 10:17:15 +0100 | [diff] [blame] | 2783 | struct spoe_config *conf; |
| 2784 | struct spoe_agent *agent; |
Christopher Faulet | 42bfa46 | 2017-01-04 14:14:19 +0100 | [diff] [blame] | 2785 | struct spoe_appctx *spoe_appctx; |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 2786 | int i; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2787 | |
Christopher Faulet | 3b386a3 | 2017-02-23 10:17:15 +0100 | [diff] [blame] | 2788 | if (fconf->id != spoe_filter_id) |
| 2789 | continue; |
| 2790 | |
| 2791 | conf = fconf->conf; |
| 2792 | agent = conf->agent; |
| 2793 | |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 2794 | for (i = 0; i < global.nbthread; ++i) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2795 | HA_SPIN_LOCK(SPOE_APPLET_LOCK, &agent->rt[i].lock); |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 2796 | list_for_each_entry(spoe_appctx, &agent->rt[i].applets, list) |
| 2797 | spoe_wakeup_appctx(spoe_appctx->owner); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2798 | HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &agent->rt[i].lock); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2799 | } |
| 2800 | } |
| 2801 | p = p->next; |
| 2802 | } |
| 2803 | } |
| 2804 | |
| 2805 | |
| 2806 | /* Initialize the SPOE filter. Returns -1 on error, else 0. */ |
| 2807 | static int |
| 2808 | spoe_init(struct proxy *px, struct flt_conf *fconf) |
| 2809 | { |
| 2810 | struct spoe_config *conf = fconf->conf; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2811 | |
| 2812 | memset(&conf->agent_fe, 0, sizeof(conf->agent_fe)); |
| 2813 | init_new_proxy(&conf->agent_fe); |
| 2814 | conf->agent_fe.parent = conf->agent; |
| 2815 | conf->agent_fe.last_change = now.tv_sec; |
| 2816 | conf->agent_fe.id = conf->agent->id; |
| 2817 | conf->agent_fe.cap = PR_CAP_FE; |
| 2818 | conf->agent_fe.mode = PR_MODE_TCP; |
| 2819 | conf->agent_fe.maxconn = 0; |
| 2820 | conf->agent_fe.options2 |= PR_O2_INDEPSTR; |
| 2821 | conf->agent_fe.conn_retries = CONN_RETRIES; |
| 2822 | conf->agent_fe.accept = frontend_accept; |
| 2823 | conf->agent_fe.srv = NULL; |
| 2824 | conf->agent_fe.timeout.client = TICK_ETERNITY; |
| 2825 | conf->agent_fe.default_target = &spoe_applet.obj_type; |
| 2826 | conf->agent_fe.fe_req_ana = AN_REQ_SWITCHING_RULES; |
| 2827 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2828 | if (!sighandler_registered) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2829 | signal_register_fct(0, spoe_sig_stop, 0); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2830 | sighandler_registered = 1; |
| 2831 | } |
| 2832 | |
| 2833 | return 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2834 | } |
| 2835 | |
| 2836 | /* Free ressources allocated by the SPOE filter. */ |
| 2837 | static void |
| 2838 | spoe_deinit(struct proxy *px, struct flt_conf *fconf) |
| 2839 | { |
| 2840 | struct spoe_config *conf = fconf->conf; |
| 2841 | |
| 2842 | if (conf) { |
| 2843 | struct spoe_agent *agent = conf->agent; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2844 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2845 | spoe_release_agent(agent); |
Christopher Faulet | 7ee8667 | 2017-09-19 11:08:28 +0200 | [diff] [blame] | 2846 | free(conf->id); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2847 | free(conf); |
| 2848 | } |
| 2849 | fconf->conf = NULL; |
| 2850 | } |
| 2851 | |
| 2852 | /* Check configuration of a SPOE filter for a specified proxy. |
| 2853 | * Return 1 on error, else 0. */ |
| 2854 | static int |
| 2855 | spoe_check(struct proxy *px, struct flt_conf *fconf) |
| 2856 | { |
Christopher Faulet | 7ee8667 | 2017-09-19 11:08:28 +0200 | [diff] [blame] | 2857 | struct flt_conf *f; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2858 | struct spoe_config *conf = fconf->conf; |
| 2859 | struct proxy *target; |
| 2860 | |
Christopher Faulet | 7ee8667 | 2017-09-19 11:08:28 +0200 | [diff] [blame] | 2861 | /* Check all SPOE filters for proxy <px> to be sure all SPOE agent names |
| 2862 | * are uniq */ |
| 2863 | list_for_each_entry(f, &px->filter_configs, list) { |
| 2864 | struct spoe_config *c = f->conf; |
| 2865 | |
| 2866 | /* This is not an SPOE filter */ |
| 2867 | if (f->id != spoe_filter_id) |
| 2868 | continue; |
| 2869 | /* This is the current SPOE filter */ |
| 2870 | if (f == fconf) |
| 2871 | continue; |
| 2872 | |
| 2873 | /* Check engine Id. It should be uniq */ |
| 2874 | if (!strcmp(conf->id, c->id)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2875 | ha_alert("Proxy %s : duplicated name for SPOE engine '%s'.\n", |
| 2876 | px->id, conf->id); |
Christopher Faulet | 7ee8667 | 2017-09-19 11:08:28 +0200 | [diff] [blame] | 2877 | return 1; |
| 2878 | } |
| 2879 | } |
| 2880 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2881 | target = proxy_be_by_name(conf->agent->b.name); |
| 2882 | if (target == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2883 | ha_alert("Proxy %s : unknown backend '%s' used by SPOE agent '%s'" |
| 2884 | " declared at %s:%d.\n", |
| 2885 | px->id, conf->agent->b.name, conf->agent->id, |
| 2886 | conf->agent->conf.file, conf->agent->conf.line); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2887 | return 1; |
| 2888 | } |
| 2889 | if (target->mode != PR_MODE_TCP) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2890 | ha_alert("Proxy %s : backend '%s' used by SPOE agent '%s' declared" |
| 2891 | " at %s:%d does not support HTTP mode.\n", |
| 2892 | px->id, target->id, conf->agent->id, |
| 2893 | conf->agent->conf.file, conf->agent->conf.line); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2894 | return 1; |
| 2895 | } |
| 2896 | |
| 2897 | free(conf->agent->b.name); |
| 2898 | conf->agent->b.name = NULL; |
| 2899 | conf->agent->b.be = target; |
| 2900 | return 0; |
| 2901 | } |
| 2902 | |
| 2903 | /************************************************************************** |
| 2904 | * Hooks attached to a stream |
| 2905 | *************************************************************************/ |
| 2906 | /* Called when a filter instance is created and attach to a stream. It creates |
| 2907 | * the context that will be used to process this stream. */ |
| 2908 | static int |
| 2909 | spoe_start(struct stream *s, struct filter *filter) |
| 2910 | { |
Christopher Faulet | 72bcc47 | 2017-01-04 16:39:41 +0100 | [diff] [blame] | 2911 | struct spoe_config *conf = FLT_CONF(filter); |
| 2912 | struct spoe_agent *agent = conf->agent; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2913 | struct spoe_context *ctx; |
| 2914 | |
| 2915 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p\n", |
Christopher Faulet | 72bcc47 | 2017-01-04 16:39:41 +0100 | [diff] [blame] | 2916 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2917 | __FUNCTION__, s); |
| 2918 | |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2919 | if ((ctx = spoe_create_context(s, filter)) == NULL) { |
Christopher Faulet | 72bcc47 | 2017-01-04 16:39:41 +0100 | [diff] [blame] | 2920 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
| 2921 | " - failed to create SPOE context\n", |
| 2922 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
Christopher Faulet | ccbc3fd | 2017-09-15 11:51:18 +0200 | [diff] [blame] | 2923 | __FUNCTION__, s); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2924 | send_log(s->be, LOG_EMERG, |
Christopher Faulet | 72bcc47 | 2017-01-04 16:39:41 +0100 | [diff] [blame] | 2925 | "SPOE: [%s] failed to create SPOE context\n", |
| 2926 | agent->id); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2927 | return 0; |
| 2928 | } |
| 2929 | |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 2930 | if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_REQ_FE])) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2931 | filter->pre_analyzers |= AN_REQ_INSPECT_FE; |
| 2932 | |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 2933 | if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_REQ_BE])) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2934 | filter->pre_analyzers |= AN_REQ_INSPECT_BE; |
| 2935 | |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 2936 | if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_RSP])) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2937 | filter->pre_analyzers |= AN_RES_INSPECT; |
| 2938 | |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 2939 | if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_REQ_FE])) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2940 | filter->pre_analyzers |= AN_REQ_HTTP_PROCESS_FE; |
| 2941 | |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 2942 | if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_REQ_BE])) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2943 | filter->pre_analyzers |= AN_REQ_HTTP_PROCESS_BE; |
| 2944 | |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 2945 | if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_RSP])) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2946 | filter->pre_analyzers |= AN_RES_HTTP_PROCESS_FE; |
| 2947 | |
| 2948 | return 1; |
| 2949 | } |
| 2950 | |
| 2951 | /* Called when a filter instance is detached from a stream. It release the |
| 2952 | * attached SPOE context. */ |
| 2953 | static void |
| 2954 | spoe_stop(struct stream *s, struct filter *filter) |
| 2955 | { |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2956 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p\n", |
| 2957 | (int)now.tv_sec, (int)now.tv_usec, |
| 2958 | ((struct spoe_config *)FLT_CONF(filter))->agent->id, |
| 2959 | __FUNCTION__, s); |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 2960 | spoe_destroy_context(filter); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2961 | } |
| 2962 | |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 2963 | |
| 2964 | /* |
| 2965 | * Called when the stream is woken up because of expired timer. |
| 2966 | */ |
| 2967 | static void |
| 2968 | spoe_check_timeouts(struct stream *s, struct filter *filter) |
| 2969 | { |
| 2970 | struct spoe_context *ctx = filter->ctx; |
| 2971 | |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 2972 | if (tick_is_expired(ctx->process_exp, now_ms)) { |
| 2973 | s->pending_events |= TASK_WOKEN_MSG; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 2974 | spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait); |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 2975 | } |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 2976 | } |
| 2977 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2978 | /* Called when we are ready to filter data on a channel */ |
| 2979 | static int |
| 2980 | spoe_start_analyze(struct stream *s, struct filter *filter, struct channel *chn) |
| 2981 | { |
| 2982 | struct spoe_context *ctx = filter->ctx; |
| 2983 | int ret = 1; |
| 2984 | |
| 2985 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s" |
| 2986 | " - ctx-flags=0x%08x\n", |
| 2987 | (int)now.tv_sec, (int)now.tv_usec, |
| 2988 | ((struct spoe_config *)FLT_CONF(filter))->agent->id, |
| 2989 | __FUNCTION__, s, spoe_ctx_state_str[ctx->state], ctx->flags); |
| 2990 | |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 2991 | if (ctx->state == SPOE_CTX_ST_NONE) |
| 2992 | goto out; |
| 2993 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 2994 | if (!(chn->flags & CF_ISRESP)) { |
| 2995 | if (filter->pre_analyzers & AN_REQ_INSPECT_FE) |
| 2996 | chn->analysers |= AN_REQ_INSPECT_FE; |
| 2997 | if (filter->pre_analyzers & AN_REQ_INSPECT_BE) |
| 2998 | chn->analysers |= AN_REQ_INSPECT_BE; |
| 2999 | |
| 3000 | if (ctx->flags & SPOE_CTX_FL_CLI_CONNECTED) |
| 3001 | goto out; |
| 3002 | |
| 3003 | ctx->stream_id = s->uniq_id; |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 3004 | ret = spoe_process_event(s, ctx, SPOE_EV_ON_CLIENT_SESS); |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 3005 | if (!ret) |
| 3006 | goto out; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3007 | ctx->flags |= SPOE_CTX_FL_CLI_CONNECTED; |
| 3008 | } |
| 3009 | else { |
| 3010 | if (filter->pre_analyzers & SPOE_EV_ON_TCP_RSP) |
| 3011 | chn->analysers |= AN_RES_INSPECT; |
| 3012 | |
| 3013 | if (ctx->flags & SPOE_CTX_FL_SRV_CONNECTED) |
| 3014 | goto out; |
| 3015 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 3016 | ret = spoe_process_event(s, ctx, SPOE_EV_ON_SERVER_SESS); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 3017 | if (!ret) { |
| 3018 | channel_dont_read(chn); |
| 3019 | channel_dont_close(chn); |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 3020 | goto out; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 3021 | } |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 3022 | ctx->flags |= SPOE_CTX_FL_SRV_CONNECTED; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3023 | } |
| 3024 | |
| 3025 | out: |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3026 | return ret; |
| 3027 | } |
| 3028 | |
| 3029 | /* Called before a processing happens on a given channel */ |
| 3030 | static int |
| 3031 | spoe_chn_pre_analyze(struct stream *s, struct filter *filter, |
| 3032 | struct channel *chn, unsigned an_bit) |
| 3033 | { |
| 3034 | struct spoe_context *ctx = filter->ctx; |
| 3035 | int ret = 1; |
| 3036 | |
| 3037 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s" |
| 3038 | " - ctx-flags=0x%08x - ana=0x%08x\n", |
| 3039 | (int)now.tv_sec, (int)now.tv_usec, |
| 3040 | ((struct spoe_config *)FLT_CONF(filter))->agent->id, |
| 3041 | __FUNCTION__, s, spoe_ctx_state_str[ctx->state], |
| 3042 | ctx->flags, an_bit); |
| 3043 | |
Christopher Faulet | b067b06 | 2017-01-04 16:39:11 +0100 | [diff] [blame] | 3044 | if (ctx->state == SPOE_CTX_ST_NONE) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3045 | goto out; |
| 3046 | |
| 3047 | switch (an_bit) { |
| 3048 | case AN_REQ_INSPECT_FE: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 3049 | ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_REQ_FE); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3050 | break; |
| 3051 | case AN_REQ_INSPECT_BE: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 3052 | ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_REQ_BE); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3053 | break; |
| 3054 | case AN_RES_INSPECT: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 3055 | ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_RSP); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3056 | break; |
| 3057 | case AN_REQ_HTTP_PROCESS_FE: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 3058 | ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_REQ_FE); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3059 | break; |
| 3060 | case AN_REQ_HTTP_PROCESS_BE: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 3061 | ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_REQ_BE); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3062 | break; |
| 3063 | case AN_RES_HTTP_PROCESS_FE: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 3064 | ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_RSP); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3065 | break; |
| 3066 | } |
| 3067 | |
| 3068 | out: |
Christopher Faulet | 9cdca97 | 2018-02-01 08:45:45 +0100 | [diff] [blame] | 3069 | if (!ret && (chn->flags & CF_ISRESP)) { |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3070 | channel_dont_read(chn); |
| 3071 | channel_dont_close(chn); |
| 3072 | } |
| 3073 | return ret; |
| 3074 | } |
| 3075 | |
| 3076 | /* Called when the filtering on the channel ends. */ |
| 3077 | static int |
| 3078 | spoe_end_analyze(struct stream *s, struct filter *filter, struct channel *chn) |
| 3079 | { |
| 3080 | struct spoe_context *ctx = filter->ctx; |
| 3081 | |
| 3082 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s" |
| 3083 | " - ctx-flags=0x%08x\n", |
| 3084 | (int)now.tv_sec, (int)now.tv_usec, |
| 3085 | ((struct spoe_config *)FLT_CONF(filter))->agent->id, |
| 3086 | __FUNCTION__, s, spoe_ctx_state_str[ctx->state], ctx->flags); |
| 3087 | |
| 3088 | if (!(ctx->flags & SPOE_CTX_FL_PROCESS)) { |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 3089 | spoe_reset_context(ctx); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3090 | } |
| 3091 | |
| 3092 | return 1; |
| 3093 | } |
| 3094 | |
| 3095 | /******************************************************************** |
| 3096 | * Functions that manage the filter initialization |
| 3097 | ********************************************************************/ |
| 3098 | struct flt_ops spoe_ops = { |
| 3099 | /* Manage SPOE filter, called for each filter declaration */ |
| 3100 | .init = spoe_init, |
| 3101 | .deinit = spoe_deinit, |
| 3102 | .check = spoe_check, |
| 3103 | |
| 3104 | /* Handle start/stop of SPOE */ |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 3105 | .attach = spoe_start, |
| 3106 | .detach = spoe_stop, |
| 3107 | .check_timeouts = spoe_check_timeouts, |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3108 | |
| 3109 | /* Handle channels activity */ |
| 3110 | .channel_start_analyze = spoe_start_analyze, |
| 3111 | .channel_pre_analyze = spoe_chn_pre_analyze, |
| 3112 | .channel_end_analyze = spoe_end_analyze, |
| 3113 | }; |
| 3114 | |
| 3115 | |
| 3116 | static int |
| 3117 | cfg_parse_spoe_agent(const char *file, int linenum, char **args, int kwm) |
| 3118 | { |
| 3119 | const char *err; |
| 3120 | int i, err_code = 0; |
| 3121 | |
| 3122 | if ((cfg_scope == NULL && curengine != NULL) || |
| 3123 | (cfg_scope != NULL && curengine == NULL) || |
Christopher Faulet | e1405e5 | 2017-09-19 10:35:35 +0200 | [diff] [blame] | 3124 | (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope))) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3125 | goto out; |
| 3126 | |
| 3127 | if (!strcmp(args[0], "spoe-agent")) { /* new spoe-agent section */ |
| 3128 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3129 | ha_alert("parsing [%s:%d] : missing name for spoe-agent section.\n", |
| 3130 | file, linenum); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3131 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3132 | goto out; |
| 3133 | } |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3134 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 3135 | err_code |= ERR_ABORT; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3136 | goto out; |
| 3137 | } |
| 3138 | |
| 3139 | err = invalid_char(args[1]); |
| 3140 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3141 | ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 3142 | file, linenum, *err, args[0], args[1]); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3143 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3144 | goto out; |
| 3145 | } |
| 3146 | |
| 3147 | if (curagent != NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3148 | ha_alert("parsing [%s:%d] : another spoe-agent section previously defined.\n", |
| 3149 | file, linenum); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3150 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3151 | goto out; |
| 3152 | } |
| 3153 | if ((curagent = calloc(1, sizeof(*curagent))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3154 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3155 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3156 | goto out; |
| 3157 | } |
| 3158 | |
| 3159 | curagent->id = strdup(args[1]); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 3160 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3161 | curagent->conf.file = strdup(file); |
| 3162 | curagent->conf.line = linenum; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 3163 | |
| 3164 | curagent->timeout.hello = TICK_ETERNITY; |
| 3165 | curagent->timeout.idle = TICK_ETERNITY; |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 3166 | curagent->timeout.processing = TICK_ETERNITY; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 3167 | |
| 3168 | curagent->engine_id = NULL; |
| 3169 | curagent->var_pfx = NULL; |
| 3170 | curagent->var_on_error = NULL; |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 3171 | curagent->flags = (SPOE_FL_PIPELINING | SPOE_FL_SND_FRAGMENTATION); |
| 3172 | if (global.nbthread == 1) |
| 3173 | curagent->flags |= SPOE_FL_ASYNC; |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 3174 | curagent->cps_max = 0; |
| 3175 | curagent->eps_max = 0; |
Christopher Faulet | 7aa0b2b | 2017-01-13 11:30:50 +0100 | [diff] [blame] | 3176 | curagent->max_frame_size = MAX_FRAME_SIZE; |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 3177 | curagent->max_fpa = 20; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3178 | |
| 3179 | for (i = 0; i < SPOE_EV_EVENTS; ++i) |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3180 | LIST_INIT(&curagent->events[i]); |
| 3181 | LIST_INIT(&curagent->groups); |
| 3182 | LIST_INIT(&curagent->messages); |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 3183 | |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 3184 | if ((curagent->rt = calloc(global.nbthread, sizeof(*curagent->rt))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3185 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 3186 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3187 | goto out; |
| 3188 | } |
| 3189 | for (i = 0; i < global.nbthread; ++i) { |
| 3190 | curagent->rt[i].frame_size = curagent->max_frame_size; |
Christopher Faulet | b077cdc | 2018-01-24 16:37:57 +0100 | [diff] [blame] | 3191 | SPOE_DEBUG_STMT(curagent->rt[i].applets_act = 0); |
| 3192 | SPOE_DEBUG_STMT(curagent->rt[i].applets_idle = 0); |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 3193 | curagent->rt[i].processing = 0; |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 3194 | LIST_INIT(&curagent->rt[i].applets); |
| 3195 | LIST_INIT(&curagent->rt[i].sending_queue); |
| 3196 | LIST_INIT(&curagent->rt[i].waiting_queue); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3197 | HA_SPIN_INIT(&curagent->rt[i].lock); |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 3198 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3199 | } |
| 3200 | else if (!strcmp(args[0], "use-backend")) { |
| 3201 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3202 | ha_alert("parsing [%s:%d] : '%s' expects a backend name.\n", |
| 3203 | file, linenum, args[0]); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3204 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3205 | goto out; |
| 3206 | } |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3207 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3208 | goto out; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3209 | free(curagent->b.name); |
| 3210 | curagent->b.name = strdup(args[1]); |
| 3211 | } |
| 3212 | else if (!strcmp(args[0], "messages")) { |
| 3213 | int cur_arg = 1; |
| 3214 | while (*args[cur_arg]) { |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3215 | struct spoe_placeholder *ph = NULL; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3216 | |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3217 | list_for_each_entry(ph, &curmphs, list) { |
| 3218 | if (!strcmp(ph->id, args[cur_arg])) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3219 | ha_alert("parsing [%s:%d]: spoe-message '%s' already used.\n", |
| 3220 | file, linenum, args[cur_arg]); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3221 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3222 | goto out; |
| 3223 | } |
| 3224 | } |
| 3225 | |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3226 | if ((ph = calloc(1, sizeof(*ph))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3227 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3228 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3229 | goto out; |
| 3230 | } |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3231 | ph->id = strdup(args[cur_arg]); |
| 3232 | LIST_ADDQ(&curmphs, &ph->list); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3233 | cur_arg++; |
| 3234 | } |
| 3235 | } |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3236 | else if (!strcmp(args[0], "groups")) { |
| 3237 | int cur_arg = 1; |
| 3238 | while (*args[cur_arg]) { |
| 3239 | struct spoe_placeholder *ph = NULL; |
| 3240 | |
| 3241 | list_for_each_entry(ph, &curgphs, list) { |
| 3242 | if (!strcmp(ph->id, args[cur_arg])) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3243 | ha_alert("parsing [%s:%d]: spoe-group '%s' already used.\n", |
| 3244 | file, linenum, args[cur_arg]); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3245 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3246 | goto out; |
| 3247 | } |
| 3248 | } |
| 3249 | |
| 3250 | if ((ph = calloc(1, sizeof(*ph))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3251 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3252 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3253 | goto out; |
| 3254 | } |
| 3255 | ph->id = strdup(args[cur_arg]); |
| 3256 | LIST_ADDQ(&curgphs, &ph->list); |
| 3257 | cur_arg++; |
| 3258 | } |
| 3259 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3260 | else if (!strcmp(args[0], "timeout")) { |
| 3261 | unsigned int *tv = NULL; |
| 3262 | const char *res; |
| 3263 | unsigned timeout; |
| 3264 | |
| 3265 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3266 | ha_alert("parsing [%s:%d] : 'timeout' expects 'hello', 'idle' and 'processing'.\n", |
| 3267 | file, linenum); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3268 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3269 | goto out; |
| 3270 | } |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3271 | if (alertif_too_many_args(2, file, linenum, args, &err_code)) |
| 3272 | goto out; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3273 | if (!strcmp(args[1], "hello")) |
| 3274 | tv = &curagent->timeout.hello; |
| 3275 | else if (!strcmp(args[1], "idle")) |
| 3276 | tv = &curagent->timeout.idle; |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 3277 | else if (!strcmp(args[1], "processing")) |
| 3278 | tv = &curagent->timeout.processing; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3279 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3280 | ha_alert("parsing [%s:%d] : 'timeout' supports 'hello', 'idle' or 'processing' (got %s).\n", |
| 3281 | file, linenum, args[1]); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3282 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3283 | goto out; |
| 3284 | } |
| 3285 | if (!*args[2]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3286 | ha_alert("parsing [%s:%d] : 'timeout %s' expects an integer value (in milliseconds).\n", |
| 3287 | file, linenum, args[1]); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3288 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3289 | goto out; |
| 3290 | } |
| 3291 | res = parse_time_err(args[2], &timeout, TIME_UNIT_MS); |
| 3292 | if (res) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3293 | ha_alert("parsing [%s:%d] : unexpected character '%c' in 'timeout %s'.\n", |
| 3294 | file, linenum, *res, args[1]); |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3295 | err_code |= ERR_ALERT | ERR_FATAL; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3296 | goto out; |
| 3297 | } |
| 3298 | *tv = MS_TO_TICKS(timeout); |
| 3299 | } |
| 3300 | else if (!strcmp(args[0], "option")) { |
| 3301 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3302 | ha_alert("parsing [%s:%d]: '%s' expects an option name.\n", |
| 3303 | file, linenum, args[0]); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3304 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3305 | goto out; |
| 3306 | } |
Christopher Faulet | 6a2940c | 2017-02-23 15:06:26 +0100 | [diff] [blame] | 3307 | |
Christopher Faulet | 305c607 | 2017-02-23 16:17:53 +0100 | [diff] [blame] | 3308 | if (!strcmp(args[1], "pipelining")) { |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3309 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
Christopher Faulet | 305c607 | 2017-02-23 16:17:53 +0100 | [diff] [blame] | 3310 | goto out; |
Christopher Faulet | 305c607 | 2017-02-23 16:17:53 +0100 | [diff] [blame] | 3311 | if (kwm == 1) |
| 3312 | curagent->flags &= ~SPOE_FL_PIPELINING; |
| 3313 | else |
| 3314 | curagent->flags |= SPOE_FL_PIPELINING; |
| 3315 | goto out; |
| 3316 | } |
| 3317 | else if (!strcmp(args[1], "async")) { |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3318 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
Christopher Faulet | 305c607 | 2017-02-23 16:17:53 +0100 | [diff] [blame] | 3319 | goto out; |
Christopher Faulet | 305c607 | 2017-02-23 16:17:53 +0100 | [diff] [blame] | 3320 | if (kwm == 1) |
| 3321 | curagent->flags &= ~SPOE_FL_ASYNC; |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 3322 | else { |
| 3323 | if (global.nbthread == 1) |
| 3324 | curagent->flags |= SPOE_FL_ASYNC; |
| 3325 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3326 | ha_warning("parsing [%s:%d] Async option is not supported with threads.\n", |
| 3327 | file, linenum); |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 3328 | err_code |= ERR_WARN; |
| 3329 | } |
| 3330 | } |
Christopher Faulet | 305c607 | 2017-02-23 16:17:53 +0100 | [diff] [blame] | 3331 | goto out; |
| 3332 | } |
Christopher Faulet | cecd852 | 2017-02-24 22:11:21 +0100 | [diff] [blame] | 3333 | else if (!strcmp(args[1], "send-frag-payload")) { |
| 3334 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3335 | goto out; |
| 3336 | if (kwm == 1) |
| 3337 | curagent->flags &= ~SPOE_FL_SND_FRAGMENTATION; |
| 3338 | else |
| 3339 | curagent->flags |= SPOE_FL_SND_FRAGMENTATION; |
| 3340 | goto out; |
| 3341 | } |
Christopher Faulet | 305c607 | 2017-02-23 16:17:53 +0100 | [diff] [blame] | 3342 | |
Christopher Faulet | 6a2940c | 2017-02-23 15:06:26 +0100 | [diff] [blame] | 3343 | /* Following options does not support negation */ |
| 3344 | if (kwm == 1) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3345 | ha_alert("parsing [%s:%d]: negation is not supported for option '%s'.\n", |
| 3346 | file, linenum, args[1]); |
Christopher Faulet | 6a2940c | 2017-02-23 15:06:26 +0100 | [diff] [blame] | 3347 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3348 | goto out; |
| 3349 | } |
| 3350 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3351 | if (!strcmp(args[1], "var-prefix")) { |
| 3352 | char *tmp; |
| 3353 | |
| 3354 | if (!*args[2]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3355 | ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n", |
| 3356 | file, linenum, args[0], |
| 3357 | args[1]); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3358 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3359 | goto out; |
| 3360 | } |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3361 | if (alertif_too_many_args(2, file, linenum, args, &err_code)) |
| 3362 | goto out; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3363 | tmp = args[2]; |
| 3364 | while (*tmp) { |
| 3365 | if (!isalnum(*tmp) && *tmp != '_' && *tmp != '.') { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3366 | ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z_-.] chars.\n", |
| 3367 | file, linenum, args[0], args[1]); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3368 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3369 | goto out; |
| 3370 | } |
| 3371 | tmp++; |
| 3372 | } |
| 3373 | curagent->var_pfx = strdup(args[2]); |
| 3374 | } |
Etienne Carriere | aec8989 | 2017-12-14 09:36:40 +0000 | [diff] [blame] | 3375 | else if (!strcmp(args[1], "force-set-var")) { |
| 3376 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3377 | goto out; |
| 3378 | curagent->flags |= SPOE_FL_FORCE_SET_VAR; |
| 3379 | } |
Christopher Faulet | ea62c2a | 2016-11-14 10:54:21 +0100 | [diff] [blame] | 3380 | else if (!strcmp(args[1], "continue-on-error")) { |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3381 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
Christopher Faulet | ea62c2a | 2016-11-14 10:54:21 +0100 | [diff] [blame] | 3382 | goto out; |
Christopher Faulet | ea62c2a | 2016-11-14 10:54:21 +0100 | [diff] [blame] | 3383 | curagent->flags |= SPOE_FL_CONT_ON_ERR; |
| 3384 | } |
Christopher Faulet | 985532d | 2016-11-16 15:36:19 +0100 | [diff] [blame] | 3385 | else if (!strcmp(args[1], "set-on-error")) { |
| 3386 | char *tmp; |
| 3387 | |
| 3388 | if (!*args[2]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3389 | ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n", |
| 3390 | file, linenum, args[0], |
| 3391 | args[1]); |
Christopher Faulet | 985532d | 2016-11-16 15:36:19 +0100 | [diff] [blame] | 3392 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3393 | goto out; |
| 3394 | } |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3395 | if (alertif_too_many_args(2, file, linenum, args, &err_code)) |
| 3396 | goto out; |
Christopher Faulet | 985532d | 2016-11-16 15:36:19 +0100 | [diff] [blame] | 3397 | tmp = args[2]; |
| 3398 | while (*tmp) { |
| 3399 | if (!isalnum(*tmp) && *tmp != '_' && *tmp != '.') { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3400 | ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z_-.] chars.\n", |
| 3401 | file, linenum, args[0], args[1]); |
Christopher Faulet | 985532d | 2016-11-16 15:36:19 +0100 | [diff] [blame] | 3402 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3403 | goto out; |
| 3404 | } |
| 3405 | tmp++; |
| 3406 | } |
| 3407 | curagent->var_on_error = strdup(args[2]); |
| 3408 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3409 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3410 | ha_alert("parsing [%s:%d]: option '%s' is not supported.\n", |
| 3411 | file, linenum, args[1]); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3412 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3413 | goto out; |
| 3414 | } |
Christopher Faulet | 4802672 | 2016-11-16 15:01:12 +0100 | [diff] [blame] | 3415 | } |
| 3416 | else if (!strcmp(args[0], "maxconnrate")) { |
| 3417 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3418 | ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", |
| 3419 | file, linenum, args[0]); |
Christopher Faulet | 4802672 | 2016-11-16 15:01:12 +0100 | [diff] [blame] | 3420 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3421 | goto out; |
| 3422 | } |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3423 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
Christopher Faulet | 4802672 | 2016-11-16 15:01:12 +0100 | [diff] [blame] | 3424 | goto out; |
Christopher Faulet | 4802672 | 2016-11-16 15:01:12 +0100 | [diff] [blame] | 3425 | curagent->cps_max = atol(args[1]); |
| 3426 | } |
| 3427 | else if (!strcmp(args[0], "maxerrrate")) { |
| 3428 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3429 | ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", |
| 3430 | file, linenum, args[0]); |
Christopher Faulet | 4802672 | 2016-11-16 15:01:12 +0100 | [diff] [blame] | 3431 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3432 | goto out; |
| 3433 | } |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3434 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
Christopher Faulet | 4802672 | 2016-11-16 15:01:12 +0100 | [diff] [blame] | 3435 | goto out; |
Christopher Faulet | 4802672 | 2016-11-16 15:01:12 +0100 | [diff] [blame] | 3436 | curagent->eps_max = atol(args[1]); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3437 | } |
Christopher Faulet | 2eca6b5 | 2017-02-27 09:40:34 +0100 | [diff] [blame] | 3438 | else if (!strcmp(args[0], "max-frame-size")) { |
| 3439 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3440 | ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", |
| 3441 | file, linenum, args[0]); |
Christopher Faulet | 2eca6b5 | 2017-02-27 09:40:34 +0100 | [diff] [blame] | 3442 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3443 | goto out; |
| 3444 | } |
| 3445 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3446 | goto out; |
| 3447 | curagent->max_frame_size = atol(args[1]); |
| 3448 | if (curagent->max_frame_size < MIN_FRAME_SIZE || |
| 3449 | curagent->max_frame_size > MAX_FRAME_SIZE) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3450 | ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument in the range [%d, %d].\n", |
| 3451 | file, linenum, args[0], MIN_FRAME_SIZE, MAX_FRAME_SIZE); |
Christopher Faulet | 2eca6b5 | 2017-02-27 09:40:34 +0100 | [diff] [blame] | 3452 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3453 | goto out; |
| 3454 | } |
| 3455 | } |
Christopher Faulet | e8ade38 | 2018-01-25 15:32:22 +0100 | [diff] [blame] | 3456 | else if (!strcmp(args[0], "max-waiting-frames")) { |
| 3457 | if (!*args[1]) { |
| 3458 | ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", |
| 3459 | file, linenum, args[0]); |
| 3460 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3461 | goto out; |
| 3462 | } |
| 3463 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3464 | goto out; |
| 3465 | curagent->max_fpa = atol(args[1]); |
| 3466 | if (curagent->max_fpa < 1) { |
| 3467 | ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument.\n", |
| 3468 | file, linenum, args[0]); |
| 3469 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3470 | goto out; |
| 3471 | } |
| 3472 | } |
Christopher Faulet | 336d3ef | 2017-12-22 10:00:55 +0100 | [diff] [blame] | 3473 | else if (!strcmp(args[0], "register-var-names")) { |
| 3474 | int cur_arg; |
| 3475 | |
| 3476 | if (!*args[1]) { |
| 3477 | ha_alert("parsing [%s:%d] : '%s' expects one or more variable names.\n", |
| 3478 | file, linenum, args[0]); |
| 3479 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3480 | goto out; |
| 3481 | } |
| 3482 | cur_arg = 1; |
| 3483 | while (*args[cur_arg]) { |
| 3484 | struct spoe_var_placeholder *vph; |
| 3485 | |
| 3486 | if ((vph = calloc(1, sizeof(*vph))) == NULL) { |
| 3487 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 3488 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3489 | goto out; |
| 3490 | } |
| 3491 | if ((vph->name = strdup(args[cur_arg])) == NULL) { |
| 3492 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 3493 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3494 | goto out; |
| 3495 | } |
| 3496 | LIST_ADDQ(&curvars, &vph->list); |
| 3497 | cur_arg++; |
| 3498 | } |
| 3499 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3500 | else if (*args[0]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3501 | ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-agent section.\n", |
| 3502 | file, linenum, args[0]); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3503 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3504 | goto out; |
| 3505 | } |
| 3506 | out: |
| 3507 | return err_code; |
| 3508 | } |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3509 | static int |
| 3510 | cfg_parse_spoe_group(const char *file, int linenum, char **args, int kwm) |
| 3511 | { |
| 3512 | struct spoe_group *grp; |
| 3513 | const char *err; |
| 3514 | int err_code = 0; |
| 3515 | |
| 3516 | if ((cfg_scope == NULL && curengine != NULL) || |
| 3517 | (cfg_scope != NULL && curengine == NULL) || |
| 3518 | (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope))) |
| 3519 | goto out; |
| 3520 | |
| 3521 | if (!strcmp(args[0], "spoe-group")) { /* new spoe-group section */ |
| 3522 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3523 | ha_alert("parsing [%s:%d] : missing name for spoe-group section.\n", |
| 3524 | file, linenum); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3525 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3526 | goto out; |
| 3527 | } |
| 3528 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 3529 | err_code |= ERR_ABORT; |
| 3530 | goto out; |
| 3531 | } |
| 3532 | |
| 3533 | err = invalid_char(args[1]); |
| 3534 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3535 | ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 3536 | file, linenum, *err, args[0], args[1]); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3537 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3538 | goto out; |
| 3539 | } |
| 3540 | |
| 3541 | list_for_each_entry(grp, &curgrps, list) { |
| 3542 | if (!strcmp(grp->id, args[1])) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3543 | ha_alert("parsing [%s:%d]: spoe-group section '%s' has the same" |
| 3544 | " name as another one declared at %s:%d.\n", |
| 3545 | file, linenum, args[1], grp->conf.file, grp->conf.line); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3546 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3547 | goto out; |
| 3548 | } |
| 3549 | } |
| 3550 | |
| 3551 | if ((curgrp = calloc(1, sizeof(*curgrp))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3552 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3553 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3554 | goto out; |
| 3555 | } |
| 3556 | |
| 3557 | curgrp->id = strdup(args[1]); |
| 3558 | curgrp->conf.file = strdup(file); |
| 3559 | curgrp->conf.line = linenum; |
| 3560 | LIST_INIT(&curgrp->phs); |
| 3561 | LIST_INIT(&curgrp->messages); |
| 3562 | LIST_ADDQ(&curgrps, &curgrp->list); |
| 3563 | } |
| 3564 | else if (!strcmp(args[0], "messages")) { |
| 3565 | int cur_arg = 1; |
| 3566 | while (*args[cur_arg]) { |
| 3567 | struct spoe_placeholder *ph = NULL; |
| 3568 | |
| 3569 | list_for_each_entry(ph, &curgrp->phs, list) { |
| 3570 | if (!strcmp(ph->id, args[cur_arg])) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3571 | ha_alert("parsing [%s:%d]: spoe-message '%s' already used.\n", |
| 3572 | file, linenum, args[cur_arg]); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3573 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3574 | goto out; |
| 3575 | } |
| 3576 | } |
| 3577 | |
| 3578 | if ((ph = calloc(1, sizeof(*ph))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3579 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3580 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3581 | goto out; |
| 3582 | } |
| 3583 | ph->id = strdup(args[cur_arg]); |
| 3584 | LIST_ADDQ(&curgrp->phs, &ph->list); |
| 3585 | cur_arg++; |
| 3586 | } |
| 3587 | } |
| 3588 | else if (*args[0]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3589 | ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-group section.\n", |
| 3590 | file, linenum, args[0]); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3591 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3592 | goto out; |
| 3593 | } |
| 3594 | out: |
| 3595 | return err_code; |
| 3596 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3597 | |
| 3598 | static int |
| 3599 | cfg_parse_spoe_message(const char *file, int linenum, char **args, int kwm) |
| 3600 | { |
| 3601 | struct spoe_message *msg; |
| 3602 | struct spoe_arg *arg; |
| 3603 | const char *err; |
| 3604 | char *errmsg = NULL; |
| 3605 | int err_code = 0; |
| 3606 | |
| 3607 | if ((cfg_scope == NULL && curengine != NULL) || |
| 3608 | (cfg_scope != NULL && curengine == NULL) || |
Christopher Faulet | e1405e5 | 2017-09-19 10:35:35 +0200 | [diff] [blame] | 3609 | (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope))) |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3610 | goto out; |
| 3611 | |
| 3612 | if (!strcmp(args[0], "spoe-message")) { /* new spoe-message section */ |
| 3613 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3614 | ha_alert("parsing [%s:%d] : missing name for spoe-message section.\n", |
| 3615 | file, linenum); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3616 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3617 | goto out; |
| 3618 | } |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3619 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 3620 | err_code |= ERR_ABORT; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3621 | goto out; |
| 3622 | } |
| 3623 | |
| 3624 | err = invalid_char(args[1]); |
| 3625 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3626 | ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 3627 | file, linenum, *err, args[0], args[1]); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3628 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3629 | goto out; |
| 3630 | } |
| 3631 | |
| 3632 | list_for_each_entry(msg, &curmsgs, list) { |
| 3633 | if (!strcmp(msg->id, args[1])) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3634 | ha_alert("parsing [%s:%d]: spoe-message section '%s' has the same" |
| 3635 | " name as another one declared at %s:%d.\n", |
| 3636 | file, linenum, args[1], msg->conf.file, msg->conf.line); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3637 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3638 | goto out; |
| 3639 | } |
| 3640 | } |
| 3641 | |
| 3642 | if ((curmsg = calloc(1, sizeof(*curmsg))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3643 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3644 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3645 | goto out; |
| 3646 | } |
| 3647 | |
| 3648 | curmsg->id = strdup(args[1]); |
| 3649 | curmsg->id_len = strlen(curmsg->id); |
| 3650 | curmsg->event = SPOE_EV_NONE; |
| 3651 | curmsg->conf.file = strdup(file); |
| 3652 | curmsg->conf.line = linenum; |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 3653 | curmsg->nargs = 0; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3654 | LIST_INIT(&curmsg->args); |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 3655 | LIST_INIT(&curmsg->acls); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3656 | LIST_INIT(&curmsg->by_evt); |
| 3657 | LIST_INIT(&curmsg->by_grp); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3658 | LIST_ADDQ(&curmsgs, &curmsg->list); |
| 3659 | } |
| 3660 | else if (!strcmp(args[0], "args")) { |
| 3661 | int cur_arg = 1; |
| 3662 | |
| 3663 | curproxy->conf.args.ctx = ARGC_SPOE; |
| 3664 | curproxy->conf.args.file = file; |
| 3665 | curproxy->conf.args.line = linenum; |
| 3666 | while (*args[cur_arg]) { |
| 3667 | char *delim = strchr(args[cur_arg], '='); |
| 3668 | int idx = 0; |
| 3669 | |
| 3670 | if ((arg = calloc(1, sizeof(*arg))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3671 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3672 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3673 | goto out; |
| 3674 | } |
| 3675 | |
| 3676 | if (!delim) { |
| 3677 | arg->name = NULL; |
| 3678 | arg->name_len = 0; |
| 3679 | delim = args[cur_arg]; |
| 3680 | } |
| 3681 | else { |
| 3682 | arg->name = my_strndup(args[cur_arg], delim - args[cur_arg]); |
| 3683 | arg->name_len = delim - args[cur_arg]; |
| 3684 | delim++; |
| 3685 | } |
Christopher Faulet | b0b4238 | 2017-02-23 22:41:09 +0100 | [diff] [blame] | 3686 | arg->expr = sample_parse_expr((char*[]){delim, NULL}, |
| 3687 | &idx, file, linenum, &errmsg, |
| 3688 | &curproxy->conf.args); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3689 | if (arg->expr == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3690 | ha_alert("parsing [%s:%d] : '%s': %s.\n", file, linenum, args[0], errmsg); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3691 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3692 | free(arg->name); |
| 3693 | free(arg); |
| 3694 | goto out; |
| 3695 | } |
Christopher Faulet | f51f5fa | 2017-01-19 10:01:12 +0100 | [diff] [blame] | 3696 | curmsg->nargs++; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3697 | LIST_ADDQ(&curmsg->args, &arg->list); |
| 3698 | cur_arg++; |
| 3699 | } |
| 3700 | curproxy->conf.args.file = NULL; |
| 3701 | curproxy->conf.args.line = 0; |
| 3702 | } |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 3703 | else if (!strcmp(args[0], "acl")) { |
| 3704 | err = invalid_char(args[1]); |
| 3705 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3706 | ha_alert("parsing [%s:%d] : character '%c' is not permitted in acl name '%s'.\n", |
| 3707 | file, linenum, *err, args[1]); |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 3708 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3709 | goto out; |
| 3710 | } |
| 3711 | if (parse_acl((const char **)args + 1, &curmsg->acls, &errmsg, &curproxy->conf.args, file, linenum) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3712 | ha_alert("parsing [%s:%d] : error detected while parsing ACL '%s' : %s.\n", |
| 3713 | file, linenum, args[1], errmsg); |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 3714 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3715 | goto out; |
| 3716 | } |
| 3717 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3718 | else if (!strcmp(args[0], "event")) { |
| 3719 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3720 | ha_alert("parsing [%s:%d] : missing event name.\n", file, linenum); |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3721 | err_code |= ERR_ALERT | ERR_FATAL; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3722 | goto out; |
| 3723 | } |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 3724 | /* if (alertif_too_many_args(1, file, linenum, args, &err_code)) */ |
| 3725 | /* goto out; */ |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3726 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3727 | if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_CLIENT_SESS])) |
| 3728 | curmsg->event = SPOE_EV_ON_CLIENT_SESS; |
| 3729 | else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_SERVER_SESS])) |
| 3730 | curmsg->event = SPOE_EV_ON_SERVER_SESS; |
| 3731 | |
| 3732 | else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_REQ_FE])) |
| 3733 | curmsg->event = SPOE_EV_ON_TCP_REQ_FE; |
| 3734 | else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_REQ_BE])) |
| 3735 | curmsg->event = SPOE_EV_ON_TCP_REQ_BE; |
| 3736 | else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_RSP])) |
| 3737 | curmsg->event = SPOE_EV_ON_TCP_RSP; |
| 3738 | |
| 3739 | else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_REQ_FE])) |
| 3740 | curmsg->event = SPOE_EV_ON_HTTP_REQ_FE; |
| 3741 | else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_REQ_BE])) |
| 3742 | curmsg->event = SPOE_EV_ON_HTTP_REQ_BE; |
| 3743 | else if (!strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_RSP])) |
| 3744 | curmsg->event = SPOE_EV_ON_HTTP_RSP; |
| 3745 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3746 | ha_alert("parsing [%s:%d] : unkown event '%s'.\n", |
| 3747 | file, linenum, args[1]); |
Christopher Faulet | ecc537a | 2017-02-23 22:52:39 +0100 | [diff] [blame] | 3748 | err_code |= ERR_ALERT | ERR_FATAL; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3749 | goto out; |
| 3750 | } |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 3751 | |
| 3752 | if (strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0) { |
| 3753 | struct acl_cond *cond; |
| 3754 | |
| 3755 | cond = build_acl_cond(file, linenum, &curmsg->acls, |
| 3756 | curproxy, (const char **)args+2, |
| 3757 | &errmsg); |
| 3758 | if (cond == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3759 | ha_alert("parsing [%s:%d] : error detected while " |
| 3760 | "parsing an 'event %s' condition : %s.\n", |
| 3761 | file, linenum, args[1], errmsg); |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 3762 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3763 | goto out; |
| 3764 | } |
| 3765 | curmsg->cond = cond; |
| 3766 | } |
| 3767 | else if (*args[2]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3768 | ha_alert("parsing [%s:%d]: 'event %s' expects either 'if' " |
| 3769 | "or 'unless' followed by a condition but found '%s'.\n", |
| 3770 | file, linenum, args[1], args[2]); |
Christopher Faulet | 57583e4 | 2017-09-04 15:41:09 +0200 | [diff] [blame] | 3771 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3772 | goto out; |
| 3773 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3774 | } |
| 3775 | else if (!*args[0]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3776 | ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-message section.\n", |
| 3777 | file, linenum, args[0]); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3778 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3779 | goto out; |
| 3780 | } |
| 3781 | out: |
| 3782 | free(errmsg); |
| 3783 | return err_code; |
| 3784 | } |
| 3785 | |
| 3786 | /* Return -1 on error, else 0 */ |
| 3787 | static int |
| 3788 | parse_spoe_flt(char **args, int *cur_arg, struct proxy *px, |
| 3789 | struct flt_conf *fconf, char **err, void *private) |
| 3790 | { |
| 3791 | struct list backup_sections; |
| 3792 | struct spoe_config *conf; |
| 3793 | struct spoe_message *msg, *msgback; |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3794 | struct spoe_group *grp, *grpback; |
| 3795 | struct spoe_placeholder *ph, *phback; |
Christopher Faulet | 336d3ef | 2017-12-22 10:00:55 +0100 | [diff] [blame] | 3796 | struct spoe_var_placeholder *vph, *vphback; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3797 | char *file = NULL, *engine = NULL; |
| 3798 | int ret, pos = *cur_arg + 1; |
| 3799 | |
| 3800 | conf = calloc(1, sizeof(*conf)); |
| 3801 | if (conf == NULL) { |
| 3802 | memprintf(err, "%s: out of memory", args[*cur_arg]); |
| 3803 | goto error; |
| 3804 | } |
| 3805 | conf->proxy = px; |
| 3806 | |
| 3807 | while (*args[pos]) { |
| 3808 | if (!strcmp(args[pos], "config")) { |
| 3809 | if (!*args[pos+1]) { |
| 3810 | memprintf(err, "'%s' : '%s' option without value", |
| 3811 | args[*cur_arg], args[pos]); |
| 3812 | goto error; |
| 3813 | } |
| 3814 | file = args[pos+1]; |
| 3815 | pos += 2; |
| 3816 | } |
| 3817 | else if (!strcmp(args[pos], "engine")) { |
| 3818 | if (!*args[pos+1]) { |
| 3819 | memprintf(err, "'%s' : '%s' option without value", |
| 3820 | args[*cur_arg], args[pos]); |
| 3821 | goto error; |
| 3822 | } |
| 3823 | engine = args[pos+1]; |
| 3824 | pos += 2; |
| 3825 | } |
| 3826 | else { |
| 3827 | memprintf(err, "unknown keyword '%s'", args[pos]); |
| 3828 | goto error; |
| 3829 | } |
| 3830 | } |
| 3831 | if (file == NULL) { |
| 3832 | memprintf(err, "'%s' : missing config file", args[*cur_arg]); |
| 3833 | goto error; |
| 3834 | } |
| 3835 | |
| 3836 | /* backup sections and register SPOE sections */ |
| 3837 | LIST_INIT(&backup_sections); |
| 3838 | cfg_backup_sections(&backup_sections); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3839 | cfg_register_section("spoe-agent", cfg_parse_spoe_agent, NULL); |
| 3840 | cfg_register_section("spoe-group", cfg_parse_spoe_group, NULL); |
William Lallemand | d2ff56d | 2017-10-16 11:06:50 +0200 | [diff] [blame] | 3841 | cfg_register_section("spoe-message", cfg_parse_spoe_message, NULL); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3842 | |
| 3843 | /* Parse SPOE filter configuration file */ |
| 3844 | curengine = engine; |
| 3845 | curproxy = px; |
| 3846 | curagent = NULL; |
| 3847 | curmsg = NULL; |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3848 | LIST_INIT(&curmsgs); |
| 3849 | LIST_INIT(&curgrps); |
| 3850 | LIST_INIT(&curmphs); |
| 3851 | LIST_INIT(&curgphs); |
Christopher Faulet | 336d3ef | 2017-12-22 10:00:55 +0100 | [diff] [blame] | 3852 | LIST_INIT(&curvars); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3853 | ret = readcfgfile(file); |
| 3854 | curproxy = NULL; |
| 3855 | |
| 3856 | /* unregister SPOE sections and restore previous sections */ |
| 3857 | cfg_unregister_sections(); |
| 3858 | cfg_restore_sections(&backup_sections); |
| 3859 | |
| 3860 | if (ret == -1) { |
| 3861 | memprintf(err, "Could not open configuration file %s : %s", |
| 3862 | file, strerror(errno)); |
| 3863 | goto error; |
| 3864 | } |
| 3865 | if (ret & (ERR_ABORT|ERR_FATAL)) { |
| 3866 | memprintf(err, "Error(s) found in configuration file %s", file); |
| 3867 | goto error; |
| 3868 | } |
| 3869 | |
| 3870 | /* Check SPOE agent */ |
| 3871 | if (curagent == NULL) { |
| 3872 | memprintf(err, "No SPOE agent found in file %s", file); |
| 3873 | goto error; |
| 3874 | } |
| 3875 | if (curagent->b.name == NULL) { |
| 3876 | memprintf(err, "No backend declared for SPOE agent '%s' declared at %s:%d", |
| 3877 | curagent->id, curagent->conf.file, curagent->conf.line); |
| 3878 | goto error; |
| 3879 | } |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 3880 | if (curagent->timeout.hello == TICK_ETERNITY || |
| 3881 | curagent->timeout.idle == TICK_ETERNITY || |
Christopher Faulet | f7a3092 | 2016-11-10 15:04:51 +0100 | [diff] [blame] | 3882 | curagent->timeout.processing == TICK_ETERNITY) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3883 | ha_warning("Proxy '%s': missing timeouts for SPOE agent '%s' declare at %s:%d.\n" |
| 3884 | " | While not properly invalid, you will certainly encounter various problems\n" |
| 3885 | " | with such a configuration. To fix this, please ensure that all following\n" |
| 3886 | " | timeouts are set to a non-zero value: 'hello', 'idle', 'processing'.\n", |
| 3887 | px->id, curagent->id, curagent->conf.file, curagent->conf.line); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3888 | } |
| 3889 | if (curagent->var_pfx == NULL) { |
| 3890 | char *tmp = curagent->id; |
| 3891 | |
| 3892 | while (*tmp) { |
| 3893 | if (!isalnum(*tmp) && *tmp != '_' && *tmp != '.') { |
| 3894 | memprintf(err, "Invalid variable prefix '%s' for SPOE agent '%s' declared at %s:%d. " |
| 3895 | "Use 'option var-prefix' to set it. Only [a-zA-Z0-9_.] chars are supported.\n", |
| 3896 | curagent->id, curagent->id, curagent->conf.file, curagent->conf.line); |
| 3897 | goto error; |
| 3898 | } |
| 3899 | tmp++; |
| 3900 | } |
| 3901 | curagent->var_pfx = strdup(curagent->id); |
| 3902 | } |
Christopher Faulet | a1cda02 | 2016-12-21 08:58:06 +0100 | [diff] [blame] | 3903 | if (curagent->engine_id == NULL) |
| 3904 | curagent->engine_id = generate_pseudo_uuid(); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3905 | |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3906 | if (LIST_ISEMPTY(&curmphs) && LIST_ISEMPTY(&curgphs)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3907 | ha_warning("Proxy '%s': No message/group used by SPOE agent '%s' declared at %s:%d.\n", |
| 3908 | px->id, curagent->id, curagent->conf.file, curagent->conf.line); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3909 | goto finish; |
| 3910 | } |
| 3911 | |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3912 | /* Replace placeholders by the corresponding messages for the SPOE |
| 3913 | * agent */ |
| 3914 | list_for_each_entry(ph, &curmphs, list) { |
| 3915 | list_for_each_entry(msg, &curmsgs, list) { |
Christopher Faulet | a21b064 | 2017-01-09 16:56:23 +0100 | [diff] [blame] | 3916 | struct spoe_arg *arg; |
| 3917 | unsigned int where; |
| 3918 | |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3919 | if (!strcmp(msg->id, ph->id)) { |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3920 | if ((px->cap & (PR_CAP_FE|PR_CAP_BE)) == (PR_CAP_FE|PR_CAP_BE)) { |
| 3921 | if (msg->event == SPOE_EV_ON_TCP_REQ_BE) |
| 3922 | msg->event = SPOE_EV_ON_TCP_REQ_FE; |
| 3923 | if (msg->event == SPOE_EV_ON_HTTP_REQ_BE) |
| 3924 | msg->event = SPOE_EV_ON_HTTP_REQ_FE; |
| 3925 | } |
| 3926 | if (!(px->cap & PR_CAP_FE) && (msg->event == SPOE_EV_ON_CLIENT_SESS || |
| 3927 | msg->event == SPOE_EV_ON_TCP_REQ_FE || |
| 3928 | msg->event == SPOE_EV_ON_HTTP_REQ_FE)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3929 | ha_warning("Proxy '%s': frontend event used on a backend proxy at %s:%d.\n", |
| 3930 | px->id, msg->conf.file, msg->conf.line); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3931 | goto next_mph; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3932 | } |
| 3933 | if (msg->event == SPOE_EV_NONE) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3934 | ha_warning("Proxy '%s': Ignore SPOE message '%s' without event at %s:%d.\n", |
| 3935 | px->id, msg->id, msg->conf.file, msg->conf.line); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 3936 | goto next_mph; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 3937 | } |
Christopher Faulet | a21b064 | 2017-01-09 16:56:23 +0100 | [diff] [blame] | 3938 | |
| 3939 | where = 0; |
| 3940 | switch (msg->event) { |
| 3941 | case SPOE_EV_ON_CLIENT_SESS: |
| 3942 | where |= SMP_VAL_FE_CON_ACC; |
| 3943 | break; |
| 3944 | |
| 3945 | case SPOE_EV_ON_TCP_REQ_FE: |
| 3946 | where |= SMP_VAL_FE_REQ_CNT; |
| 3947 | break; |
| 3948 | |
| 3949 | case SPOE_EV_ON_HTTP_REQ_FE: |
| 3950 | where |= SMP_VAL_FE_HRQ_HDR; |
| 3951 | break; |
| 3952 | |
| 3953 | case SPOE_EV_ON_TCP_REQ_BE: |
| 3954 | if (px->cap & PR_CAP_FE) |
| 3955 | where |= SMP_VAL_FE_REQ_CNT; |
| 3956 | if (px->cap & PR_CAP_BE) |
| 3957 | where |= SMP_VAL_BE_REQ_CNT; |
| 3958 | break; |
| 3959 | |
| 3960 | case SPOE_EV_ON_HTTP_REQ_BE: |
| 3961 | if (px->cap & PR_CAP_FE) |
| 3962 | where |= SMP_VAL_FE_HRQ_HDR; |
| 3963 | if (px->cap & PR_CAP_BE) |
| 3964 | where |= SMP_VAL_BE_HRQ_HDR; |
| 3965 | break; |
| 3966 | |
| 3967 | case SPOE_EV_ON_SERVER_SESS: |
| 3968 | where |= SMP_VAL_BE_SRV_CON; |
| 3969 | break; |
| 3970 | |
| 3971 | case SPOE_EV_ON_TCP_RSP: |
| 3972 | if (px->cap & PR_CAP_FE) |
| 3973 | where |= SMP_VAL_FE_RES_CNT; |
| 3974 | if (px->cap & PR_CAP_BE) |
| 3975 | where |= SMP_VAL_BE_RES_CNT; |
| 3976 | break; |
| 3977 | |
| 3978 | case SPOE_EV_ON_HTTP_RSP: |
| 3979 | if (px->cap & PR_CAP_FE) |
| 3980 | where |= SMP_VAL_FE_HRS_HDR; |
| 3981 | if (px->cap & PR_CAP_BE) |
| 3982 | where |= SMP_VAL_BE_HRS_HDR; |
| 3983 | break; |
| 3984 | |
| 3985 | default: |
| 3986 | break; |
| 3987 | } |
| 3988 | |
| 3989 | list_for_each_entry(arg, &msg->args, list) { |
| 3990 | if (!(arg->expr->fetch->val & where)) { |
Christopher Faulet | 76c09ef | 2017-09-21 11:03:52 +0200 | [diff] [blame] | 3991 | memprintf(err, "Ignore SPOE message '%s' at %s:%d: " |
Christopher Faulet | a21b064 | 2017-01-09 16:56:23 +0100 | [diff] [blame] | 3992 | "some args extract information from '%s', " |
Christopher Faulet | 76c09ef | 2017-09-21 11:03:52 +0200 | [diff] [blame] | 3993 | "none of which is available here ('%s')", |
| 3994 | msg->id, msg->conf.file, msg->conf.line, |
Christopher Faulet | a21b064 | 2017-01-09 16:56:23 +0100 | [diff] [blame] | 3995 | sample_ckp_names(arg->expr->fetch->use), |
| 3996 | sample_ckp_names(where)); |
Christopher Faulet | 76c09ef | 2017-09-21 11:03:52 +0200 | [diff] [blame] | 3997 | goto error; |
Christopher Faulet | a21b064 | 2017-01-09 16:56:23 +0100 | [diff] [blame] | 3998 | } |
| 3999 | } |
| 4000 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4001 | msg->agent = curagent; |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 4002 | LIST_ADDQ(&curagent->events[msg->event], &msg->by_evt); |
| 4003 | goto next_mph; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4004 | } |
| 4005 | } |
| 4006 | memprintf(err, "SPOE agent '%s' try to use undefined SPOE message '%s' at %s:%d", |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 4007 | curagent->id, ph->id, curagent->conf.file, curagent->conf.line); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4008 | goto error; |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 4009 | next_mph: |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4010 | continue; |
| 4011 | } |
| 4012 | |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 4013 | /* Replace placeholders by the corresponding groups for the SPOE |
| 4014 | * agent */ |
| 4015 | list_for_each_entry(ph, &curgphs, list) { |
| 4016 | list_for_each_entry_safe(grp, grpback, &curgrps, list) { |
| 4017 | if (!strcmp(grp->id, ph->id)) { |
| 4018 | grp->agent = curagent; |
| 4019 | LIST_DEL(&grp->list); |
| 4020 | LIST_ADDQ(&curagent->groups, &grp->list); |
| 4021 | goto next_aph; |
| 4022 | } |
| 4023 | } |
| 4024 | memprintf(err, "SPOE agent '%s' try to use undefined SPOE group '%s' at %s:%d", |
| 4025 | curagent->id, ph->id, curagent->conf.file, curagent->conf.line); |
| 4026 | goto error; |
| 4027 | next_aph: |
| 4028 | continue; |
| 4029 | } |
| 4030 | |
| 4031 | /* Replace placeholders by the corresponding message for each SPOE |
| 4032 | * group of the SPOE agent */ |
| 4033 | list_for_each_entry(grp, &curagent->groups, list) { |
| 4034 | list_for_each_entry_safe(ph, phback, &grp->phs, list) { |
| 4035 | list_for_each_entry(msg, &curmsgs, list) { |
| 4036 | if (!strcmp(msg->id, ph->id)) { |
| 4037 | if (msg->group != NULL) { |
| 4038 | memprintf(err, "SPOE message '%s' already belongs to " |
| 4039 | "the SPOE group '%s' declare at %s:%d", |
| 4040 | msg->id, msg->group->id, |
| 4041 | msg->group->conf.file, |
| 4042 | msg->group->conf.line); |
| 4043 | goto error; |
| 4044 | } |
| 4045 | |
| 4046 | /* Scope for arguments are not checked for now. We will check |
| 4047 | * them only if a rule use the corresponding SPOE group. */ |
| 4048 | msg->agent = curagent; |
| 4049 | msg->group = grp; |
| 4050 | LIST_DEL(&ph->list); |
| 4051 | LIST_ADDQ(&grp->messages, &msg->by_grp); |
| 4052 | goto next_mph_grp; |
| 4053 | } |
| 4054 | } |
| 4055 | memprintf(err, "SPOE group '%s' try to use undefined SPOE message '%s' at %s:%d", |
| 4056 | grp->id, ph->id, curagent->conf.file, curagent->conf.line); |
| 4057 | goto error; |
| 4058 | next_mph_grp: |
| 4059 | continue; |
| 4060 | } |
| 4061 | } |
| 4062 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4063 | finish: |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 4064 | /* move curmsgs to the agent message list */ |
| 4065 | curmsgs.n->p = &curagent->messages; |
| 4066 | curmsgs.p->n = &curagent->messages; |
| 4067 | curagent->messages = curmsgs; |
| 4068 | LIST_INIT(&curmsgs); |
| 4069 | |
Christopher Faulet | 7ee8667 | 2017-09-19 11:08:28 +0200 | [diff] [blame] | 4070 | conf->id = strdup(engine ? engine : curagent->id); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4071 | conf->agent = curagent; |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 4072 | list_for_each_entry_safe(ph, phback, &curmphs, list) { |
| 4073 | LIST_DEL(&ph->list); |
| 4074 | spoe_release_placeholder(ph); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4075 | } |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 4076 | list_for_each_entry_safe(ph, phback, &curgphs, list) { |
| 4077 | LIST_DEL(&ph->list); |
| 4078 | spoe_release_placeholder(ph); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4079 | } |
Christopher Faulet | 336d3ef | 2017-12-22 10:00:55 +0100 | [diff] [blame] | 4080 | list_for_each_entry_safe(vph, vphback, &curvars, list) { |
| 4081 | struct arg arg; |
| 4082 | |
| 4083 | trash.len = snprintf(trash.str, trash.size, "proc.%s.%s", |
| 4084 | curagent->var_pfx, vph->name); |
| 4085 | |
| 4086 | arg.type = ARGT_STR; |
| 4087 | arg.data.str.str = trash.str; |
| 4088 | arg.data.str.len = trash.len; |
| 4089 | if (!vars_check_arg(&arg, err)) { |
| 4090 | memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)", |
| 4091 | curagent->id, curagent->var_pfx, vph->name, *err); |
| 4092 | goto error; |
| 4093 | } |
| 4094 | |
| 4095 | LIST_DEL(&vph->list); |
| 4096 | free(vph->name); |
| 4097 | free(vph); |
| 4098 | } |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 4099 | list_for_each_entry_safe(grp, grpback, &curgrps, list) { |
| 4100 | LIST_DEL(&grp->list); |
| 4101 | spoe_release_group(grp); |
| 4102 | } |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4103 | *cur_arg = pos; |
Christopher Faulet | 3b386a3 | 2017-02-23 10:17:15 +0100 | [diff] [blame] | 4104 | fconf->id = spoe_filter_id; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4105 | fconf->ops = &spoe_ops; |
| 4106 | fconf->conf = conf; |
| 4107 | return 0; |
| 4108 | |
| 4109 | error: |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 4110 | spoe_release_agent(curagent); |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 4111 | list_for_each_entry_safe(ph, phback, &curmphs, list) { |
| 4112 | LIST_DEL(&ph->list); |
| 4113 | spoe_release_placeholder(ph); |
| 4114 | } |
| 4115 | list_for_each_entry_safe(ph, phback, &curgphs, list) { |
| 4116 | LIST_DEL(&ph->list); |
| 4117 | spoe_release_placeholder(ph); |
| 4118 | } |
Christopher Faulet | 336d3ef | 2017-12-22 10:00:55 +0100 | [diff] [blame] | 4119 | list_for_each_entry_safe(vph, vphback, &curvars, list) { |
| 4120 | LIST_DEL(&vph->list); |
| 4121 | free(vph->name); |
| 4122 | free(vph); |
| 4123 | } |
Christopher Faulet | 11610f3 | 2017-09-21 10:23:10 +0200 | [diff] [blame] | 4124 | list_for_each_entry_safe(grp, grpback, &curgrps, list) { |
| 4125 | LIST_DEL(&grp->list); |
| 4126 | spoe_release_group(grp); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4127 | } |
| 4128 | list_for_each_entry_safe(msg, msgback, &curmsgs, list) { |
| 4129 | LIST_DEL(&msg->list); |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 4130 | spoe_release_message(msg); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4131 | } |
| 4132 | free(conf); |
| 4133 | return -1; |
| 4134 | } |
| 4135 | |
Christopher Faulet | 344c4ab | 2017-09-22 10:20:13 +0200 | [diff] [blame] | 4136 | /* Send message of a SPOE group. This is the action_ptr callback of a rule |
| 4137 | * associated to a "send-spoe-group" action. |
| 4138 | * |
| 4139 | * It returns ACT_RET_CONT is processing is finished without error, it returns |
| 4140 | * ACT_RET_YIELD if the action is in progress. Otherwise it returns |
| 4141 | * ACT_RET_ERR. */ |
Christopher Faulet | 76c09ef | 2017-09-21 11:03:52 +0200 | [diff] [blame] | 4142 | static enum act_return |
| 4143 | spoe_send_group(struct act_rule *rule, struct proxy *px, |
| 4144 | struct session *sess, struct stream *s, int flags) |
| 4145 | { |
| 4146 | struct filter *filter; |
| 4147 | struct spoe_agent *agent = NULL; |
| 4148 | struct spoe_group *group = NULL; |
| 4149 | struct spoe_context *ctx = NULL; |
| 4150 | int ret, dir; |
| 4151 | |
| 4152 | list_for_each_entry(filter, &s->strm_flt.filters, list) { |
| 4153 | if (filter->config == rule->arg.act.p[0]) { |
| 4154 | agent = rule->arg.act.p[2]; |
| 4155 | group = rule->arg.act.p[3]; |
| 4156 | ctx = filter->ctx; |
| 4157 | break; |
| 4158 | } |
| 4159 | } |
| 4160 | if (agent == NULL || group == NULL || ctx == NULL) |
| 4161 | return ACT_RET_ERR; |
Christopher Faulet | 344c4ab | 2017-09-22 10:20:13 +0200 | [diff] [blame] | 4162 | if (ctx->state == SPOE_CTX_ST_NONE) |
| 4163 | return ACT_RET_CONT; |
Christopher Faulet | 76c09ef | 2017-09-21 11:03:52 +0200 | [diff] [blame] | 4164 | |
Christopher Faulet | 344c4ab | 2017-09-22 10:20:13 +0200 | [diff] [blame] | 4165 | switch (rule->from) { |
| 4166 | case ACT_F_TCP_REQ_SES: dir = SMP_OPT_DIR_REQ; break; |
| 4167 | case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break; |
| 4168 | case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break; |
| 4169 | case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break; |
| 4170 | case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break; |
| 4171 | default: |
| 4172 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
| 4173 | " - internal error while execute spoe-send-group\n", |
| 4174 | (int)now.tv_sec, (int)now.tv_usec, agent->id, |
| 4175 | __FUNCTION__, s); |
| 4176 | send_log(px, LOG_ERR, "SPOE: [%s] internal error while execute spoe-send-group\n", |
| 4177 | agent->id); |
| 4178 | return ACT_RET_CONT; |
| 4179 | } |
| 4180 | |
| 4181 | ret = spoe_process_group(s, ctx, group, dir); |
| 4182 | if (ret == 1) |
| 4183 | return ACT_RET_CONT; |
| 4184 | else if (ret == 0) { |
| 4185 | if (flags & ACT_FLAG_FINAL) { |
| 4186 | SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p" |
| 4187 | " - failed to process group '%s': interrupted by caller\n", |
| 4188 | (int)now.tv_sec, (int)now.tv_usec, |
| 4189 | agent->id, __FUNCTION__, s, group->id); |
| 4190 | ctx->status_code = SPOE_CTX_ERR_INTERRUPT; |
| 4191 | spoe_handle_processing_error(s, agent, ctx, dir); |
Christopher Faulet | 6f9ea4f | 2018-01-24 16:13:48 +0100 | [diff] [blame] | 4192 | spoe_stop_processing(agent, ctx); |
Christopher Faulet | 344c4ab | 2017-09-22 10:20:13 +0200 | [diff] [blame] | 4193 | return ACT_RET_CONT; |
| 4194 | } |
| 4195 | return ACT_RET_YIELD; |
| 4196 | } |
| 4197 | else |
| 4198 | return ACT_RET_ERR; |
Christopher Faulet | 76c09ef | 2017-09-21 11:03:52 +0200 | [diff] [blame] | 4199 | } |
| 4200 | |
| 4201 | /* Check an "send-spoe-group" action. Here, we'll try to find the real SPOE |
| 4202 | * group associated to <rule>. The format of an rule using 'send-spoe-group' |
| 4203 | * action should be: |
| 4204 | * |
| 4205 | * (http|tcp)-(request|response) send-spoe-group <engine-id> <group-id> |
| 4206 | * |
| 4207 | * So, we'll loop on each configured SPOE filter for the proxy <px> to find the |
| 4208 | * SPOE engine matching <engine-id>. And then, we'll try to find the good group |
| 4209 | * matching <group-id>. Finally, we'll check all messages referenced by the SPOE |
| 4210 | * group. |
| 4211 | * |
| 4212 | * The function returns 1 in success case, otherwise, it returns 0 and err is |
| 4213 | * filled. |
| 4214 | */ |
| 4215 | static int |
| 4216 | check_send_spoe_group(struct act_rule *rule, struct proxy *px, char **err) |
| 4217 | { |
| 4218 | struct flt_conf *fconf; |
| 4219 | struct spoe_config *conf; |
| 4220 | struct spoe_agent *agent = NULL; |
| 4221 | struct spoe_group *group; |
| 4222 | struct spoe_message *msg; |
| 4223 | char *engine_id = rule->arg.act.p[0]; |
| 4224 | char *group_id = rule->arg.act.p[1]; |
| 4225 | unsigned int where = 0; |
| 4226 | |
| 4227 | switch (rule->from) { |
| 4228 | case ACT_F_TCP_REQ_SES: where = SMP_VAL_FE_SES_ACC; break; |
| 4229 | case ACT_F_TCP_REQ_CNT: where = SMP_VAL_FE_REQ_CNT; break; |
| 4230 | case ACT_F_TCP_RES_CNT: where = SMP_VAL_BE_RES_CNT; break; |
| 4231 | case ACT_F_HTTP_REQ: where = SMP_VAL_FE_HRQ_HDR; break; |
| 4232 | case ACT_F_HTTP_RES: where = SMP_VAL_BE_HRS_HDR; break; |
| 4233 | default: |
| 4234 | memprintf(err, |
| 4235 | "internal error, unexpected rule->from=%d, please report this bug!", |
| 4236 | rule->from); |
| 4237 | goto error; |
| 4238 | } |
| 4239 | |
| 4240 | /* Try to find the SPOE engine by checking all SPOE filters for proxy |
| 4241 | * <px> */ |
| 4242 | list_for_each_entry(fconf, &px->filter_configs, list) { |
| 4243 | conf = fconf->conf; |
| 4244 | |
| 4245 | /* This is not an SPOE filter */ |
| 4246 | if (fconf->id != spoe_filter_id) |
| 4247 | continue; |
| 4248 | |
| 4249 | /* This is the good engine */ |
| 4250 | if (!strcmp(conf->id, engine_id)) { |
| 4251 | agent = conf->agent; |
| 4252 | break; |
| 4253 | } |
| 4254 | } |
| 4255 | if (agent == NULL) { |
| 4256 | memprintf(err, "unable to find SPOE engine '%s' used by the send-spoe-group '%s'", |
| 4257 | engine_id, group_id); |
| 4258 | goto error; |
| 4259 | } |
| 4260 | |
| 4261 | /* Try to find the right group */ |
| 4262 | list_for_each_entry(group, &agent->groups, list) { |
| 4263 | /* This is the good group */ |
| 4264 | if (!strcmp(group->id, group_id)) |
| 4265 | break; |
| 4266 | } |
| 4267 | if (&group->list == &agent->groups) { |
| 4268 | memprintf(err, "unable to find SPOE group '%s' into SPOE engine '%s' configuration", |
| 4269 | group_id, engine_id); |
| 4270 | goto error; |
| 4271 | } |
| 4272 | |
| 4273 | /* Ok, we found the group, we need to check messages and their |
| 4274 | * arguments */ |
| 4275 | list_for_each_entry(msg, &group->messages, by_grp) { |
| 4276 | struct spoe_arg *arg; |
| 4277 | |
| 4278 | list_for_each_entry(arg, &msg->args, list) { |
| 4279 | if (!(arg->expr->fetch->val & where)) { |
| 4280 | memprintf(err, "Invalid SPOE message '%s' used by SPOE group '%s' at %s:%d: " |
| 4281 | "some args extract information from '%s'," |
| 4282 | "none of which is available here ('%s')", |
| 4283 | msg->id, group->id, msg->conf.file, msg->conf.line, |
| 4284 | sample_ckp_names(arg->expr->fetch->use), |
| 4285 | sample_ckp_names(where)); |
| 4286 | goto error; |
| 4287 | } |
| 4288 | } |
| 4289 | } |
| 4290 | |
| 4291 | free(engine_id); |
| 4292 | free(group_id); |
| 4293 | rule->arg.act.p[0] = fconf; /* Associate filter config with the rule */ |
| 4294 | rule->arg.act.p[1] = conf; /* Associate SPOE config with the rule */ |
| 4295 | rule->arg.act.p[2] = agent; /* Associate SPOE agent with the rule */ |
| 4296 | rule->arg.act.p[3] = group; /* Associate SPOE group with the rule */ |
| 4297 | return 1; |
| 4298 | |
| 4299 | error: |
| 4300 | free(engine_id); |
| 4301 | free(group_id); |
| 4302 | return 0; |
| 4303 | } |
| 4304 | |
| 4305 | /* Parse 'send-spoe-group' action following the format: |
| 4306 | * |
| 4307 | * ... send-spoe-group <engine-id> <group-id> |
| 4308 | * |
| 4309 | * It returns ACT_RET_PRS_ERR if fails and <err> is filled with an error |
| 4310 | * message. Otherwise, it returns ACT_RET_PRS_OK and parsing engine and group |
| 4311 | * ids are saved and used later, when the rule will be checked. |
| 4312 | */ |
| 4313 | static enum act_parse_ret |
| 4314 | parse_send_spoe_group(const char **args, int *orig_arg, struct proxy *px, |
| 4315 | struct act_rule *rule, char **err) |
| 4316 | { |
| 4317 | if (!*args[*orig_arg] || !*args[*orig_arg+1] || |
| 4318 | (*args[*orig_arg+2] && strcmp(args[*orig_arg+2], "if") != 0 && strcmp(args[*orig_arg+2], "unless") != 0)) { |
| 4319 | memprintf(err, "expects 2 arguments: <engine-id> <group-id>"); |
| 4320 | return ACT_RET_PRS_ERR; |
| 4321 | } |
| 4322 | rule->arg.act.p[0] = strdup(args[*orig_arg]); /* Copy the SPOE engine id */ |
| 4323 | rule->arg.act.p[1] = strdup(args[*orig_arg+1]); /* Cope the SPOE group id */ |
| 4324 | |
| 4325 | (*orig_arg) += 2; |
| 4326 | |
| 4327 | rule->action = ACT_CUSTOM; |
| 4328 | rule->action_ptr = spoe_send_group; |
| 4329 | rule->check_ptr = check_send_spoe_group; |
| 4330 | return ACT_RET_PRS_OK; |
| 4331 | } |
| 4332 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4333 | |
| 4334 | /* Declare the filter parser for "spoe" keyword */ |
| 4335 | static struct flt_kw_list flt_kws = { "SPOE", { }, { |
| 4336 | { "spoe", parse_spoe_flt, NULL }, |
| 4337 | { NULL, NULL, NULL }, |
| 4338 | } |
| 4339 | }; |
| 4340 | |
Christopher Faulet | 76c09ef | 2017-09-21 11:03:52 +0200 | [diff] [blame] | 4341 | /* Delcate the action parser for "spoe-action" keyword */ |
| 4342 | static struct action_kw_list tcp_req_action_kws = { { }, { |
| 4343 | { "send-spoe-group", parse_send_spoe_group }, |
| 4344 | { /* END */ }, |
| 4345 | } |
| 4346 | }; |
| 4347 | static struct action_kw_list tcp_res_action_kws = { { }, { |
| 4348 | { "send-spoe-group", parse_send_spoe_group }, |
| 4349 | { /* END */ }, |
| 4350 | } |
| 4351 | }; |
| 4352 | static struct action_kw_list http_req_action_kws = { { }, { |
| 4353 | { "send-spoe-group", parse_send_spoe_group }, |
| 4354 | { /* END */ }, |
| 4355 | } |
| 4356 | }; |
| 4357 | static struct action_kw_list http_res_action_kws = { { }, { |
| 4358 | { "send-spoe-group", parse_send_spoe_group }, |
| 4359 | { /* END */ }, |
| 4360 | } |
| 4361 | }; |
| 4362 | |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4363 | __attribute__((constructor)) |
| 4364 | static void __spoe_init(void) |
| 4365 | { |
| 4366 | flt_register_keywords(&flt_kws); |
Christopher Faulet | 76c09ef | 2017-09-21 11:03:52 +0200 | [diff] [blame] | 4367 | tcp_req_cont_keywords_register(&tcp_req_action_kws); |
| 4368 | tcp_res_cont_keywords_register(&tcp_res_action_kws); |
| 4369 | http_req_keywords_register(&http_req_action_kws); |
| 4370 | http_res_keywords_register(&http_res_action_kws); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4371 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 4372 | pool_head_spoe_ctx = create_pool("spoe_ctx", sizeof(struct spoe_context), MEM_F_SHARED); |
| 4373 | pool_head_spoe_appctx = create_pool("spoe_appctx", sizeof(struct spoe_appctx), MEM_F_SHARED); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4374 | } |
| 4375 | |
| 4376 | __attribute__((destructor)) |
| 4377 | static void |
| 4378 | __spoe_deinit(void) |
| 4379 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 4380 | pool_destroy(pool_head_spoe_ctx); |
| 4381 | pool_destroy(pool_head_spoe_appctx); |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 4382 | } |