blob: 026f25680f8660c6b58fe651e7d423b1d63c6b12 [file] [log] [blame]
Christopher Faulet010fded2016-11-03 22:49:37 +01001/*
2 * A Random IP reputation service acting as a Stream Processing Offload Agent
3 *
4 * This is a very simple service that implement a "random" ip reputation
5 * service. It will return random scores for all checked IP addresses. It only
6 * shows you how to implement a ip reputation service or such kind of services
7 * using the SPOE.
8 *
9 * Copyright 2016 HAProxy Technologies, Christopher Faulet <cfaulet@haproxy.com>
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 *
16 */
Christopher Fauletf95b1112016-12-21 08:58:16 +010017#include <unistd.h>
Christopher Faulet010fded2016-11-03 22:49:37 +010018#include <stdlib.h>
19#include <string.h>
20#include <stdbool.h>
Christopher Fauletf95b1112016-12-21 08:58:16 +010021#include <errno.h>
22#include <stdio.h>
Christopher Faulet010fded2016-11-03 22:49:37 +010023#include <signal.h>
Eric Salama8a9c6c22017-11-10 11:02:23 +010024#include <arpa/inet.h>
Christopher Faulet010fded2016-11-03 22:49:37 +010025#include <netinet/in.h>
Eric Salama8a9c6c22017-11-10 11:02:23 +010026#include <netinet/tcp.h>
Christopher Fauletf95b1112016-12-21 08:58:16 +010027#include <sys/socket.h>
28#include <err.h>
29#include <ctype.h>
30
31#include <pthread.h>
32
33#include <event2/util.h>
34#include <event2/event.h>
35#include <event2/event_struct.h>
36#include <event2/thread.h>
Christopher Faulet010fded2016-11-03 22:49:37 +010037
Eric Salama8a9c6c22017-11-10 11:02:23 +010038#include <mini-clist.h>
39#include <spoe_types.h>
40#include <spop_functions.h>
Christopher Fauletf95b1112016-12-21 08:58:16 +010041
42#define DEFAULT_PORT 12345
43#define CONNECTION_BACKLOG 10
44#define NUM_WORKERS 10
45#define MAX_FRAME_SIZE 16384
46#define SPOP_VERSION "1.0"
Christopher Faulet010fded2016-11-03 22:49:37 +010047
48#define SLEN(str) (sizeof(str)-1)
49
Christopher Fauletf95b1112016-12-21 08:58:16 +010050#define LOG(worker, fmt, args...) \
51 do { \
52 struct timeval now; \
53 \
54 gettimeofday(&now, NULL); \
55 fprintf(stderr, "%ld.%06ld [%02d] " fmt "\n", \
56 now.tv_sec, now.tv_usec, (worker)->id, ##args); \
Christopher Faulet010fded2016-11-03 22:49:37 +010057 } while (0)
58
Christopher Fauletf95b1112016-12-21 08:58:16 +010059#define DEBUG(x...) \
Christopher Faulet010fded2016-11-03 22:49:37 +010060 do { \
61 if (debug) \
62 LOG(x); \
63 } while (0)
64
Christopher Faulet010fded2016-11-03 22:49:37 +010065
Christopher Fauletf95b1112016-12-21 08:58:16 +010066enum spoa_state {
67 SPOA_ST_CONNECTING = 0,
68 SPOA_ST_PROCESSING,
69 SPOA_ST_DISCONNECTING,
70};
71
72enum spoa_frame_type {
73 SPOA_FRM_T_UNKNOWN = 0,
74 SPOA_FRM_T_HAPROXY,
75 SPOA_FRM_T_AGENT,
76};
Christopher Faulet010fded2016-11-03 22:49:37 +010077
Christopher Fauletf95b1112016-12-21 08:58:16 +010078struct spoe_engine {
79 char *id;
80
81 struct list processing_frames;
82 struct list outgoing_frames;
83
84 struct list clients;
85 struct list list;
86};
87
88struct spoe_frame {
89 enum spoa_frame_type type;
90 char *buf;
91 unsigned int offset;
92 unsigned int len;
93
94 unsigned int stream_id;
95 unsigned int frame_id;
Christopher Faulet85010352017-02-02 10:14:36 +010096 unsigned int flags;
97 bool hcheck; /* true is the CONNECT frame is a healthcheck */
98 bool fragmented; /* true if the frame is fragmented */
99 int ip_score; /* -1 if unset, else between 0 and 100 */
Christopher Fauletf95b1112016-12-21 08:58:16 +0100100
101 struct event process_frame_event;
102 struct worker *worker;
103 struct spoe_engine *engine;
104 struct client *client;
105 struct list list;
106
Christopher Faulet85010352017-02-02 10:14:36 +0100107 char *frag_buf; /* used to accumulate payload of a fragmented frame */
108 unsigned int frag_len;
109
Christopher Fauletf95b1112016-12-21 08:58:16 +0100110 char data[0];
111};
112
113struct client {
114 int fd;
115 unsigned long id;
116 enum spoa_state state;
117
118 struct event read_frame_event;
119 struct event write_frame_event;
120
121 struct spoe_frame *incoming_frame;
122 struct spoe_frame *outgoing_frame;
123
124 struct list processing_frames;
125 struct list outgoing_frames;
126
127 unsigned int max_frame_size;
128 int status_code;
129
130 char *engine_id;
131 struct spoe_engine *engine;
132 bool pipelining;
133 bool async;
Christopher Faulet85010352017-02-02 10:14:36 +0100134 bool fragmentation;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100135
136 struct worker *worker;
137 struct list by_worker;
138 struct list by_engine;
Christopher Faulet010fded2016-11-03 22:49:37 +0100139};
140
141struct worker {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100142 pthread_t thread;
143 int id;
144 struct event_base *base;
145 struct event *monitor_event;
146
147 struct list engines;
148
149 unsigned int nbclients;
150 struct list clients;
151
152 struct list frames;
Christopher Faulet0b89f722018-01-23 14:46:51 +0100153 unsigned int nbframes;
Christopher Faulet010fded2016-11-03 22:49:37 +0100154};
155
Christopher Fauletf95b1112016-12-21 08:58:16 +0100156
Christopher Fauletf95b1112016-12-21 08:58:16 +0100157/* Globals */
158static struct worker *workers = NULL;
159static struct worker null_worker = { .id = 0 };
160static unsigned long clicount = 0;
161static int server_port = DEFAULT_PORT;
162static int num_workers = NUM_WORKERS;
163static unsigned int max_frame_size = MAX_FRAME_SIZE;
164struct timeval processing_delay = {0, 0};
165static bool debug = false;
166static bool pipelining = false;
167static bool async = false;
Christopher Faulet85010352017-02-02 10:14:36 +0100168static bool fragmentation = false;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100169
170
171static const char *spoe_frm_err_reasons[SPOE_FRM_ERRS] = {
Christopher Faulet85010352017-02-02 10:14:36 +0100172 [SPOE_FRM_ERR_NONE] = "normal",
173 [SPOE_FRM_ERR_IO] = "I/O error",
174 [SPOE_FRM_ERR_TOUT] = "a timeout occurred",
175 [SPOE_FRM_ERR_TOO_BIG] = "frame is too big",
176 [SPOE_FRM_ERR_INVALID] = "invalid frame received",
177 [SPOE_FRM_ERR_NO_VSN] = "version value not found",
178 [SPOE_FRM_ERR_NO_FRAME_SIZE] = "max-frame-size value not found",
179 [SPOE_FRM_ERR_NO_CAP] = "capabilities value not found",
180 [SPOE_FRM_ERR_BAD_VSN] = "unsupported version",
181 [SPOE_FRM_ERR_BAD_FRAME_SIZE] = "max-frame-size too big or too small",
182 [SPOE_FRM_ERR_FRAG_NOT_SUPPORTED] = "fragmentation not supported",
183 [SPOE_FRM_ERR_INTERLACED_FRAMES] = "invalid interlaced frames",
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100184 [SPOE_FRM_ERR_FRAMEID_NOTFOUND] = "frame-id not found",
Christopher Faulet85010352017-02-02 10:14:36 +0100185 [SPOE_FRM_ERR_RES] = "resource allocation error",
186 [SPOE_FRM_ERR_UNKNOWN] = "an unknown error occurred",
Christopher Fauletf95b1112016-12-21 08:58:16 +0100187};
188
189static void signal_cb(evutil_socket_t, short, void *);
190static void accept_cb(evutil_socket_t, short, void *);
191static void worker_monitor_cb(evutil_socket_t, short, void *);
192static void process_frame_cb(evutil_socket_t, short, void *);
193static void read_frame_cb(evutil_socket_t, short, void *);
194static void write_frame_cb(evutil_socket_t, short, void *);
195
196static void use_spoe_engine(struct client *);
197static void unuse_spoe_engine(struct client *);
198static void release_frame(struct spoe_frame *);
199static void release_client(struct client *);
Christopher Faulet010fded2016-11-03 22:49:37 +0100200
201static void
Christopher Fauletf95b1112016-12-21 08:58:16 +0100202check_ipv4_reputation(struct spoe_frame *frame, struct in_addr *ipv4)
Christopher Faulet010fded2016-11-03 22:49:37 +0100203{
204 char str[INET_ADDRSTRLEN];
205
206 if (inet_ntop(AF_INET, ipv4, str, INET_ADDRSTRLEN) == NULL)
207 return;
208
Christopher Fauletf95b1112016-12-21 08:58:16 +0100209 frame->ip_score = random() % 100;
Christopher Faulet010fded2016-11-03 22:49:37 +0100210
Christopher Fauletf95b1112016-12-21 08:58:16 +0100211 DEBUG(frame->worker, "IP score for %.*s is %d",
212 INET_ADDRSTRLEN, str, frame->ip_score);
Christopher Faulet010fded2016-11-03 22:49:37 +0100213}
214
215static void
Christopher Fauletf95b1112016-12-21 08:58:16 +0100216check_ipv6_reputation(struct spoe_frame *frame, struct in6_addr *ipv6)
Christopher Faulet010fded2016-11-03 22:49:37 +0100217{
218 char str[INET6_ADDRSTRLEN];
219
220 if (inet_ntop(AF_INET6, ipv6, str, INET6_ADDRSTRLEN) == NULL)
221 return;
222
Christopher Fauletf95b1112016-12-21 08:58:16 +0100223 frame->ip_score = random() % 100;
Christopher Faulet010fded2016-11-03 22:49:37 +0100224
Christopher Fauletf95b1112016-12-21 08:58:16 +0100225 DEBUG(frame->worker, "IP score for %.*s is %d",
226 INET6_ADDRSTRLEN, str, frame->ip_score);
Christopher Faulet010fded2016-11-03 22:49:37 +0100227}
228
Christopher Faulet010fded2016-11-03 22:49:37 +0100229
230/* Check the protocol version. It returns -1 if an error occurred, the number of
231 * read bytes otherwise. */
232static int
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100233check_proto_version(struct spoe_frame *frame, char **buf, char *end)
Christopher Faulet010fded2016-11-03 22:49:37 +0100234{
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100235 char *str, *p = *buf;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100236 uint64_t sz;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100237 int ret;
Christopher Faulet010fded2016-11-03 22:49:37 +0100238
239 /* Get the list of all supported versions by HAProxy */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100240 if ((*p++ & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR)
Christopher Faulet010fded2016-11-03 22:49:37 +0100241 return -1;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100242 ret = spoe_decode_buffer(&p, end, &str, &sz);
243 if (ret == -1 || !str)
Christopher Faulet010fded2016-11-03 22:49:37 +0100244 return -1;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100245
246 DEBUG(frame->worker, "<%lu> Supported versions : %.*s",
247 frame->client->id, (int)sz, str);
Christopher Faulet010fded2016-11-03 22:49:37 +0100248
249 /* TODO: Find the right verion in supported ones */
250
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100251 ret = (p - *buf);
252 *buf = p;
253 return ret;
Christopher Faulet010fded2016-11-03 22:49:37 +0100254}
255
256/* Check max frame size value. It returns -1 if an error occurred, the number of
257 * read bytes otherwise. */
258static int
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100259check_max_frame_size(struct spoe_frame *frame, char **buf, char *end)
Christopher Faulet010fded2016-11-03 22:49:37 +0100260{
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100261 char *p = *buf;
Christopher Faulet010fded2016-11-03 22:49:37 +0100262 uint64_t sz;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100263 int type, ret;
Christopher Faulet010fded2016-11-03 22:49:37 +0100264
265 /* Get the max-frame-size value of HAProxy */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100266 type = *p++;
Christopher Faulet010fded2016-11-03 22:49:37 +0100267 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT32 &&
268 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT64 &&
269 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT32 &&
Christopher Fauletf95b1112016-12-21 08:58:16 +0100270 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT64)
Christopher Faulet010fded2016-11-03 22:49:37 +0100271 return -1;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200272 if (decode_varint(&p, end, &sz) == -1)
Christopher Faulet010fded2016-11-03 22:49:37 +0100273 return -1;
Christopher Faulet010fded2016-11-03 22:49:37 +0100274
275 /* Keep the lower value */
Christopher Fauletf95b1112016-12-21 08:58:16 +0100276 if (sz < frame->client->max_frame_size)
277 frame->client->max_frame_size = sz;
278
279 DEBUG(frame->worker, "<%lu> HAProxy maximum frame size : %u",
280 frame->client->id, (unsigned int)sz);
Christopher Faulet010fded2016-11-03 22:49:37 +0100281
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100282 ret = (p - *buf);
283 *buf = p;
284 return ret;
Christopher Faulet010fded2016-11-03 22:49:37 +0100285}
286
Christopher Fauletba7bc162016-11-07 21:07:38 +0100287/* Check healthcheck value. It returns -1 if an error occurred, the number of
288 * read bytes otherwise. */
289static int
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100290check_healthcheck(struct spoe_frame *frame, char **buf, char *end)
Christopher Fauletba7bc162016-11-07 21:07:38 +0100291{
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100292 char *p = *buf;
293 int type, ret;
Christopher Fauletba7bc162016-11-07 21:07:38 +0100294
Christopher Fauletf95b1112016-12-21 08:58:16 +0100295 /* Get the "healthcheck" value */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100296 type = *p++;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100297 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_BOOL)
298 return -1;
299 frame->hcheck = ((type & SPOE_DATA_FL_TRUE) == SPOE_DATA_FL_TRUE);
300
301 DEBUG(frame->worker, "<%lu> HELLO healthcheck : %s",
302 frame->client->id, (frame->hcheck ? "true" : "false"));
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100303
304 ret = (p - *buf);
305 *buf = p;
306 return ret;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100307}
308
309/* Check capabilities value. It returns -1 if an error occurred, the number of
310 * read bytes otherwise. */
311static int
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100312check_capabilities(struct spoe_frame *frame, char **buf, char *end)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100313{
314 struct client *client = frame->client;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100315 char *str, *p = *buf;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100316 uint64_t sz;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100317 int ret;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100318
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100319 if ((*p++ & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR)
Christopher Fauletba7bc162016-11-07 21:07:38 +0100320 return -1;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100321 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
322 return -1;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100323 if (str == NULL) /* this is not an error */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100324 goto end;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100325
326 DEBUG(frame->worker, "<%lu> HAProxy capabilities : %.*s",
327 client->id, (int)sz, str);
328
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100329 while (sz) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100330 char *delim;
331
332 /* Skip leading spaces */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100333 for (; isspace(*str) && sz; sz--);
Christopher Fauletf95b1112016-12-21 08:58:16 +0100334
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100335 if (sz >= 10 && !strncmp(str, "pipelining", 10)) {
336 str += 10; sz -= 10;
337 if (!sz || isspace(*str) || *str == ',') {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100338 DEBUG(frame->worker,
339 "<%lu> HAProxy supports frame pipelining",
340 client->id);
341 client->pipelining = true;
342 }
Christopher Fauletf95b1112016-12-21 08:58:16 +0100343 }
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100344 else if (sz >= 5 && !strncmp(str, "async", 5)) {
345 str += 5; sz -= 5;
346 if (!sz || isspace(*str) || *str == ',') {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100347 DEBUG(frame->worker,
348 "<%lu> HAProxy supports asynchronous frame",
349 client->id);
350 client->async = true;
351 }
352 }
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100353 else if (sz >= 13 && !strncmp(str, "fragmentation", 13)) {
354 str += 13; sz -= 13;
355 if (!sz || isspace(*str) || *str == ',') {
Christopher Faulet85010352017-02-02 10:14:36 +0100356 DEBUG(frame->worker,
357 "<%lu> HAProxy supports fragmented frame",
358 client->id);
359 client->fragmentation = true;
360 }
361 }
Christopher Fauletf95b1112016-12-21 08:58:16 +0100362
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100363 if (!sz || (delim = memchr(str, ',', sz)) == NULL)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100364 break;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100365 delim++;
366 sz -= (delim - str);
367 str = delim;
Christopher Fauletba7bc162016-11-07 21:07:38 +0100368 }
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100369 end:
370 ret = (p - *buf);
371 *buf = p;
372 return ret;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100373}
374
375/* Check engine-id value. It returns -1 if an error occurred, the number of
376 * read bytes otherwise. */
377static int
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100378check_engine_id(struct spoe_frame *frame, char **buf, char *end)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100379{
380 struct client *client = frame->client;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100381 char *str, *p = *buf;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100382 uint64_t sz;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100383 int ret;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100384
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100385 if ((*p++ & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100386 return -1;
387
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100388 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
389 return -1;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100390 if (str == NULL) /* this is not an error */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100391 goto end;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100392
393 if (client->engine != NULL)
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100394 goto end;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100395
396 DEBUG(frame->worker, "<%lu> HAProxy engine id : %.*s",
397 client->id, (int)sz, str);
398
399 client->engine_id = strndup(str, (int)sz);
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100400 end:
401 ret = (p - *buf);
402 *buf = p;
403 return ret;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100404}
405
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100406static int
407acc_payload(struct spoe_frame *frame)
408{
409 struct client *client = frame->client;
410 char *buf;
411 size_t len = frame->len - frame->offset;
412 int ret = frame->offset;
413
414 /* No need to accumulation payload */
415 if (frame->fragmented == false)
416 return ret;
417
418 buf = realloc(frame->frag_buf, frame->frag_len + len);
419 if (buf == NULL) {
420 client->status_code = SPOE_FRM_ERR_RES;
421 return -1;
422 }
423 memcpy(buf + frame->frag_len, frame->buf + frame->offset, len);
424 frame->frag_buf = buf;
425 frame->frag_len += len;
426
427 if (!(frame->flags & SPOE_FRM_FL_FIN)) {
428 /* Wait for next parts */
429 frame->buf = (char *)(frame->data);
430 frame->offset = 0;
431 frame->len = 0;
432 frame->flags = 0;
433 return 1;
434 }
435
436 frame->buf = frame->frag_buf;
437 frame->len = frame->frag_len;
438 frame->offset = 0;
439 return ret;
440}
441
Christopher Fauletf95b1112016-12-21 08:58:16 +0100442/* Check disconnect status code. It returns -1 if an error occurred, the number
443 * of read bytes otherwise. */
444static int
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100445check_discon_status_code(struct spoe_frame *frame, char **buf, char *end)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100446{
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100447 char *p = *buf;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100448 uint64_t sz;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100449 int type, ret;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100450
451 /* Get the "status-code" value */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100452 type = *p++;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100453 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT32 &&
454 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT64 &&
455 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT32 &&
456 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT64)
457 return -1;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200458 if (decode_varint(&p, end, &sz) == -1)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100459 return -1;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100460
461 frame->client->status_code = (unsigned int)sz;
462
463 DEBUG(frame->worker, "<%lu> Disconnect status code : %u",
464 frame->client->id, frame->client->status_code);
465
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100466 ret = (p - *buf);
467 *buf = p;
468 return ret;
Christopher Fauletba7bc162016-11-07 21:07:38 +0100469}
470
Christopher Fauletf95b1112016-12-21 08:58:16 +0100471/* Check the disconnect message. It returns -1 if an error occurred, the number
472 * of read bytes otherwise. */
473static int
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100474check_discon_message(struct spoe_frame *frame, char **buf, char *end)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100475{
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100476 char *str, *p = *buf;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100477 uint64_t sz;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100478 int ret;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100479
480 /* Get the "message" value */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100481 if ((*p++ & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100482 return -1;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100483 ret = spoe_decode_buffer(&p, end, &str, &sz);
484 if (ret == -1 || !str)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100485 return -1;
486
487 DEBUG(frame->worker, "<%lu> Disconnect message : %.*s",
488 frame->client->id, (int)sz, str);
489
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100490 ret = (p - *buf);
491 *buf = p;
492 return ret;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100493}
Christopher Fauletba7bc162016-11-07 21:07:38 +0100494
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100495
496
Christopher Faulet010fded2016-11-03 22:49:37 +0100497/* Decode a HELLO frame received from HAProxy. It returns -1 if an error
Christopher Fauletf95b1112016-12-21 08:58:16 +0100498 * occurred, otherwise the number of read bytes. HELLO frame cannot be
499 * ignored and having another frame than a HELLO frame is an error. */
Christopher Faulet010fded2016-11-03 22:49:37 +0100500static int
Christopher Fauletf95b1112016-12-21 08:58:16 +0100501handle_hahello(struct spoe_frame *frame)
Christopher Faulet010fded2016-11-03 22:49:37 +0100502{
Christopher Fauletf95b1112016-12-21 08:58:16 +0100503 struct client *client = frame->client;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100504 char *p, *end;
505
506 p = frame->buf;
507 end = frame->buf + frame->len;
Christopher Faulet010fded2016-11-03 22:49:37 +0100508
Christopher Fauletf95b1112016-12-21 08:58:16 +0100509 /* Check frame type: we really want a HELLO frame */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100510 if (*p++ != SPOE_FRM_T_HAPROXY_HELLO)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100511 goto error;
512
513 DEBUG(frame->worker, "<%lu> Decode HAProxy HELLO frame", client->id);
Christopher Faulet010fded2016-11-03 22:49:37 +0100514
Christopher Faulet85010352017-02-02 10:14:36 +0100515 /* Retrieve flags */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100516 memcpy((char *)&(frame->flags), p, 4);
517 p += 4;
Christopher Faulet010fded2016-11-03 22:49:37 +0100518
Christopher Faulet85010352017-02-02 10:14:36 +0100519 /* Fragmentation is not supported for HELLO frame */
520 if (!(frame->flags & SPOE_FRM_FL_FIN)) {
521 client->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
522 goto error;
523 }
524
Christopher Faulet010fded2016-11-03 22:49:37 +0100525 /* stream-id and frame-id must be cleared */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100526 if (*p != 0 || *(p+1) != 0) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100527 client->status_code = SPOE_FRM_ERR_INVALID;
Christopher Faulet010fded2016-11-03 22:49:37 +0100528 goto error;
529 }
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100530 p += 2;
Christopher Faulet010fded2016-11-03 22:49:37 +0100531
532 /* Loop on K/V items */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100533 while (p < end) {
Christopher Faulet010fded2016-11-03 22:49:37 +0100534 char *str;
535 uint64_t sz;
536
537 /* Decode the item name */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100538 spoe_decode_buffer(&p, end, &str, &sz);
539 if (!str) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100540 client->status_code = SPOE_FRM_ERR_INVALID;
Christopher Faulet010fded2016-11-03 22:49:37 +0100541 goto error;
542 }
543
544 /* Check "supported-versions" K/V item */
545 if (!memcmp(str, "supported-versions", sz)) {
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100546 if (check_proto_version(frame, &p, end) == -1) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100547 client->status_code = SPOE_FRM_ERR_INVALID;
Christopher Faulet010fded2016-11-03 22:49:37 +0100548 goto error;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100549 }
Christopher Faulet010fded2016-11-03 22:49:37 +0100550 }
Christopher Fauletf95b1112016-12-21 08:58:16 +0100551 /* Check "max-frame-size" K/V item */
Christopher Faulet010fded2016-11-03 22:49:37 +0100552 else if (!memcmp(str, "max-frame-size", sz)) {
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100553 if (check_max_frame_size(frame, &p, end) == -1) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100554 client->status_code = SPOE_FRM_ERR_INVALID;
Christopher Faulet010fded2016-11-03 22:49:37 +0100555 goto error;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100556 }
Christopher Faulet010fded2016-11-03 22:49:37 +0100557 }
Christopher Fauletf95b1112016-12-21 08:58:16 +0100558 /* Check "healthcheck" K/V item */
Christopher Fauletba7bc162016-11-07 21:07:38 +0100559 else if (!memcmp(str, "healthcheck", sz)) {
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100560 if (check_healthcheck(frame, &p, end) == -1) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100561 client->status_code = SPOE_FRM_ERR_INVALID;
562 goto error;
563 }
Christopher Fauletf95b1112016-12-21 08:58:16 +0100564 }
565 /* Check "capabilities" K/V item */
566 else if (!memcmp(str, "capabilities", sz)) {
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100567 if (check_capabilities(frame, &p, end) == -1) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100568 client->status_code = SPOE_FRM_ERR_INVALID;
569 goto error;
570 }
Christopher Fauletf95b1112016-12-21 08:58:16 +0100571 }
572 /* Check "engine-id" K/V item */
573 else if (!memcmp(str, "engine-id", sz)) {
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100574 if (check_engine_id(frame, &p, end) == -1) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100575 client->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletba7bc162016-11-07 21:07:38 +0100576 goto error;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100577 }
Christopher Fauletba7bc162016-11-07 21:07:38 +0100578 }
Christopher Faulet010fded2016-11-03 22:49:37 +0100579 else {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100580 DEBUG(frame->worker, "<%lu> Skip K/V item : key=%.*s",
581 client->id, (int)sz, str);
582
Christopher Faulet010fded2016-11-03 22:49:37 +0100583 /* Silently ignore unknown item */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100584 if (spoe_skip_data(&p, end) == -1) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100585 client->status_code = SPOE_FRM_ERR_INVALID;
Christopher Faulet010fded2016-11-03 22:49:37 +0100586 goto error;
587 }
Christopher Faulet010fded2016-11-03 22:49:37 +0100588 }
589 }
590
Christopher Fauletf95b1112016-12-21 08:58:16 +0100591 if (async == false || client->engine_id == NULL)
592 client->async = false;
593 if (pipelining == false)
594 client->pipelining = false;
595
596 if (client->async == true)
597 use_spoe_engine(client);
598
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100599 return (p - frame->buf);
Christopher Fauletf95b1112016-12-21 08:58:16 +0100600 error:
Christopher Faulet010fded2016-11-03 22:49:37 +0100601 return -1;
602}
603
604/* Decode a DISCONNECT frame received from HAProxy. It returns -1 if an error
Christopher Fauletf95b1112016-12-21 08:58:16 +0100605 * occurred, otherwise the number of read bytes. DISCONNECT frame cannot be
606 * ignored and having another frame than a DISCONNECT frame is an error.*/
Christopher Faulet010fded2016-11-03 22:49:37 +0100607static int
Christopher Fauletf95b1112016-12-21 08:58:16 +0100608handle_hadiscon(struct spoe_frame *frame)
Christopher Faulet010fded2016-11-03 22:49:37 +0100609{
Christopher Fauletf95b1112016-12-21 08:58:16 +0100610 struct client *client = frame->client;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100611 char *p, *end;
612
613 p = frame->buf;
614 end = frame->buf + frame->len;
Christopher Faulet010fded2016-11-03 22:49:37 +0100615
Christopher Fauletf95b1112016-12-21 08:58:16 +0100616 /* Check frame type: we really want a DISCONNECT frame */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100617 if (*p++ != SPOE_FRM_T_HAPROXY_DISCON)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100618 goto error;
619
620 DEBUG(frame->worker, "<%lu> Decode HAProxy DISCONNECT frame", client->id);
Christopher Faulet010fded2016-11-03 22:49:37 +0100621
Christopher Faulet85010352017-02-02 10:14:36 +0100622 /* Retrieve flags */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100623 memcpy((char *)&(frame->flags), p, 4);
624 p += 4;
Christopher Faulet010fded2016-11-03 22:49:37 +0100625
Christopher Faulet85010352017-02-02 10:14:36 +0100626 /* Fragmentation is not supported for DISCONNECT frame */
627 if (!(frame->flags & SPOE_FRM_FL_FIN)) {
628 client->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
629 goto error;
630 }
631
Christopher Faulet010fded2016-11-03 22:49:37 +0100632 /* stream-id and frame-id must be cleared */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100633 if (*p != 0 || *(p+1) != 0) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100634 client->status_code = SPOE_FRM_ERR_INVALID;
Christopher Faulet010fded2016-11-03 22:49:37 +0100635 goto error;
636 }
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100637 p += 2;
Christopher Faulet010fded2016-11-03 22:49:37 +0100638
Christopher Fauletf95b1112016-12-21 08:58:16 +0100639 client->status_code = SPOE_FRM_ERR_NONE;
640
Christopher Faulet010fded2016-11-03 22:49:37 +0100641 /* Loop on K/V items */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100642 while (p < end) {
Christopher Faulet010fded2016-11-03 22:49:37 +0100643 char *str;
644 uint64_t sz;
645
646 /* Decode item key */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100647 spoe_decode_buffer(&p, end, &str, &sz);
648 if (!str) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100649 client->status_code = SPOE_FRM_ERR_INVALID;
Christopher Faulet010fded2016-11-03 22:49:37 +0100650 goto error;
651 }
Christopher Fauletf95b1112016-12-21 08:58:16 +0100652
653 /* Check "status-code" K/V item */
654 if (!memcmp(str, "status-code", sz)) {
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100655 if (check_discon_status_code(frame, &p, end) == -1) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100656 client->status_code = SPOE_FRM_ERR_INVALID;
657 goto error;
658 }
Christopher Fauletf95b1112016-12-21 08:58:16 +0100659 }
660 /* Check "message" K/V item */
661 else if (!memcmp(str, "message", sz)) {
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100662 if (check_discon_message(frame, &p, end) == -1) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100663 client->status_code = SPOE_FRM_ERR_INVALID;
664 goto error;
665 }
Christopher Fauletf95b1112016-12-21 08:58:16 +0100666 }
667 else {
668 DEBUG(frame->worker, "<%lu> Skip K/V item : key=%.*s",
669 client->id, (int)sz, str);
670
671 /* Silently ignore unknown item */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100672 if (spoe_skip_data(&p, end) == -1) {
Christopher Fauletf95b1112016-12-21 08:58:16 +0100673 client->status_code = SPOE_FRM_ERR_INVALID;
674 goto error;
675 }
Christopher Faulet010fded2016-11-03 22:49:37 +0100676 }
Christopher Faulet010fded2016-11-03 22:49:37 +0100677 }
678
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100679 return (p - frame->buf);
Christopher Fauletf95b1112016-12-21 08:58:16 +0100680 error:
Christopher Faulet010fded2016-11-03 22:49:37 +0100681 return -1;
682}
683
684/* Decode a NOTIFY frame received from HAProxy. It returns -1 if an error
Christopher Faulet85010352017-02-02 10:14:36 +0100685 * occurred, 0 if it must be must be ignored, otherwise the number of read
686 * bytes. */
Christopher Faulet010fded2016-11-03 22:49:37 +0100687static int
Christopher Fauletf95b1112016-12-21 08:58:16 +0100688handle_hanotify(struct spoe_frame *frame)
Christopher Faulet010fded2016-11-03 22:49:37 +0100689{
Christopher Fauletf95b1112016-12-21 08:58:16 +0100690 struct client *client = frame->client;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100691 char *p, *end;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100692 uint64_t stream_id, frame_id;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100693
694 p = frame->buf;
695 end = frame->buf + frame->len;
Christopher Faulet010fded2016-11-03 22:49:37 +0100696
697 /* Check frame type */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100698 if (*p++ != SPOE_FRM_T_HAPROXY_NOTIFY)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100699 goto ignore;
700
701 DEBUG(frame->worker, "<%lu> Decode HAProxy NOTIFY frame", client->id);
Christopher Faulet010fded2016-11-03 22:49:37 +0100702
Christopher Faulet85010352017-02-02 10:14:36 +0100703 /* Retrieve flags */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100704 memcpy((char *)&(frame->flags), p, 4);
705 p += 4;
Christopher Faulet010fded2016-11-03 22:49:37 +0100706
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100707 /* Fragmentation is not supported */
Christopher Faulet85010352017-02-02 10:14:36 +0100708 if (!(frame->flags & SPOE_FRM_FL_FIN) && fragmentation == false) {
709 client->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
710 goto error;
711 }
712
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100713 /* Read the stream-id and frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200714 if (decode_varint(&p, end, &stream_id) == -1)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100715 goto ignore;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200716 if (decode_varint(&p, end, &frame_id) == -1)
Christopher Fauletf95b1112016-12-21 08:58:16 +0100717 goto ignore;
Christopher Faulet010fded2016-11-03 22:49:37 +0100718
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100719 frame->stream_id = (unsigned int)stream_id;
720 frame->frame_id = (unsigned int)frame_id;
Christopher Faulet010fded2016-11-03 22:49:37 +0100721
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100722 DEBUG(frame->worker, "<%lu> STREAM-ID=%u - FRAME-ID=%u"
723 " - %s frame received"
724 " - frag_len=%u - len=%u - offset=%ld",
725 client->id, frame->stream_id, frame->frame_id,
726 (frame->flags & SPOE_FRM_FL_FIN) ? "unfragmented" : "fragmented",
727 frame->frag_len, frame->len, p - frame->buf);
728
729 frame->fragmented = !(frame->flags & SPOE_FRM_FL_FIN);
730 frame->offset = (p - frame->buf);
731 return acc_payload(frame);
732
733 ignore:
734 return 0;
735
736 error:
737 return -1;
738}
739
740/* Decode next part of a fragmented frame received from HAProxy. It returns -1
741 * if an error occurred, 0 if it must be must be ignored, otherwise the number
742 * of read bytes. */
743static int
744handle_hafrag(struct spoe_frame *frame)
745{
746 struct client *client = frame->client;
747 char *p, *end;
748 uint64_t stream_id, frame_id;
749
750 p = frame->buf;
751 end = frame->buf + frame->len;
752
753 /* Check frame type */
754 if (*p++ != SPOE_FRM_T_UNSET)
755 goto ignore;
756
757 DEBUG(frame->worker, "<%lu> Decode Next part of a fragmented frame", client->id);
758
759 /* Fragmentation is not supported */
760 if (fragmentation == false) {
761 client->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
762 goto error;
Christopher Faulet85010352017-02-02 10:14:36 +0100763 }
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100764
765 /* Retrieve flags */
766 memcpy((char *)&(frame->flags), p, 4);
767 p+= 4;
768
769 /* Read the stream-id and frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200770 if (decode_varint(&p, end, &stream_id) == -1)
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100771 goto ignore;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200772 if (decode_varint(&p, end, &frame_id) == -1)
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100773 goto ignore;
Christopher Faulet010fded2016-11-03 22:49:37 +0100774
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100775 if (frame->fragmented == false ||
776 frame->stream_id != (unsigned int)stream_id ||
777 frame->frame_id != (unsigned int)frame_id) {
778 client->status_code = SPOE_FRM_ERR_INTERLACED_FRAMES;
779 goto error;
780 }
781
782 if (frame->flags & SPOE_FRM_FL_ABRT) {
Christopher Faulet85010352017-02-02 10:14:36 +0100783 DEBUG(frame->worker, "<%lu> STREAM-ID=%u - FRAME-ID=%u"
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100784 " - Abort processing of a fragmented frame"
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100785 " - frag_len=%u - len=%u - offset=%ld",
Christopher Faulet85010352017-02-02 10:14:36 +0100786 client->id, frame->stream_id, frame->frame_id,
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100787 frame->frag_len, frame->len, p - frame->buf);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100788 goto ignore;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100789 }
Christopher Faulet010fded2016-11-03 22:49:37 +0100790
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100791 DEBUG(frame->worker, "<%lu> STREAM-ID=%u - FRAME-ID=%u"
792 " - %s fragment of a fragmented frame received"
793 " - frag_len=%u - len=%u - offset=%ld",
794 client->id, frame->stream_id, frame->frame_id,
795 (frame->flags & SPOE_FRM_FL_FIN) ? "last" : "next",
796 frame->frag_len, frame->len, p - frame->buf);
797
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100798 frame->offset = (p - frame->buf);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100799 return acc_payload(frame);
Christopher Faulet010fded2016-11-03 22:49:37 +0100800
Christopher Fauletf95b1112016-12-21 08:58:16 +0100801 ignore:
Christopher Faulet85010352017-02-02 10:14:36 +0100802 return 0;
803
804 error:
Christopher Fauletf95b1112016-12-21 08:58:16 +0100805 return -1;
806}
Christopher Faulet010fded2016-11-03 22:49:37 +0100807
Christopher Fauletf95b1112016-12-21 08:58:16 +0100808/* Encode a HELLO frame to send it to HAProxy. It returns the number of written
809 * bytes. */
810static int
811prepare_agenthello(struct spoe_frame *frame)
812{
813 struct client *client = frame->client;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100814 char *p, *end;
Christopher Faulet85010352017-02-02 10:14:36 +0100815 char capabilities[64];
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100816 int n;
Christopher Faulet85010352017-02-02 10:14:36 +0100817 unsigned int flags = SPOE_FRM_FL_FIN;
Christopher Faulet010fded2016-11-03 22:49:37 +0100818
Christopher Fauletf95b1112016-12-21 08:58:16 +0100819 DEBUG(frame->worker, "<%lu> Encode Agent HELLO frame", client->id);
820 frame->type = SPOA_FRM_T_AGENT;
Christopher Faulet010fded2016-11-03 22:49:37 +0100821
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100822 p = frame->buf;
823 end = frame->buf+max_frame_size;
824
Christopher Faulet010fded2016-11-03 22:49:37 +0100825 /* Frame Type */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100826 *p++ = SPOE_FRM_T_AGENT_HELLO;
Christopher Faulet010fded2016-11-03 22:49:37 +0100827
Christopher Faulet85010352017-02-02 10:14:36 +0100828 /* Set flags */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100829 memcpy(p, (char *)&flags, 4);
830 p += 4;
Christopher Faulet010fded2016-11-03 22:49:37 +0100831
832 /* No stream-id and frame-id for HELLO frames */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100833 *p++ = 0;
834 *p++ = 0;
Christopher Faulet010fded2016-11-03 22:49:37 +0100835
836 /* "version" K/V item */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100837 spoe_encode_buffer("version", 7, &p, end);
838 *p++ = SPOE_DATA_T_STR;
839 spoe_encode_buffer(SPOP_VERSION, SLEN(SPOP_VERSION), &p, end);
Christopher Fauletf95b1112016-12-21 08:58:16 +0100840 DEBUG(frame->worker, "<%lu> Agent version : %s",
841 client->id, SPOP_VERSION);
842
Christopher Faulet010fded2016-11-03 22:49:37 +0100843
844 /* "max-frame-size" K/V item */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100845 spoe_encode_buffer("max-frame-size", 14, &p ,end);
846 *p++ = SPOE_DATA_T_UINT32;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200847 encode_varint(client->max_frame_size, &p, end);
Christopher Fauletf95b1112016-12-21 08:58:16 +0100848 DEBUG(frame->worker, "<%lu> Agent maximum frame size : %u",
849 client->id, client->max_frame_size);
Christopher Faulet010fded2016-11-03 22:49:37 +0100850
851 /* "capabilities" K/V item */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100852 spoe_encode_buffer("capabilities", 12, &p, end);
853 *p++ = SPOE_DATA_T_STR;
Christopher Faulet85010352017-02-02 10:14:36 +0100854
855 memset(capabilities, 0, sizeof(capabilities));
856 n = 0;
857
858 /* 1. Fragmentation capability ? */
859 if (fragmentation == true) {
860 memcpy(capabilities, "fragmentation", 13);
861 n += 13;
862 }
863 /* 2. Pipelining capability ? */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100864 if (client->pipelining == true) {
865 if (n) capabilities[n++] = ',';
866 memcpy(capabilities + n, "pipelining", 10);
Christopher Faulet85010352017-02-02 10:14:36 +0100867 n += 10;
868 }
869 /* 3. Async capability ? */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100870 if (client->async == true) {
871 if (n) capabilities[n++] = ',';
872 memcpy(capabilities + n, "async", 5);
Christopher Faulet85010352017-02-02 10:14:36 +0100873 n += 5;
874 }
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100875 spoe_encode_buffer(capabilities, n, &p, end);
Christopher Faulet010fded2016-11-03 22:49:37 +0100876
Christopher Faulet85010352017-02-02 10:14:36 +0100877 DEBUG(frame->worker, "<%lu> Agent capabilities : %.*s",
878 client->id, n, capabilities);
Christopher Fauletf95b1112016-12-21 08:58:16 +0100879
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100880 frame->len = (p - frame->buf);
881 return frame->len;
Christopher Faulet010fded2016-11-03 22:49:37 +0100882}
883
Christopher Fauletf95b1112016-12-21 08:58:16 +0100884/* Encode a DISCONNECT frame to send it to HAProxy. It returns the number of
885 * written bytes. */
Christopher Faulet010fded2016-11-03 22:49:37 +0100886static int
Christopher Fauletf95b1112016-12-21 08:58:16 +0100887prepare_agentdicon(struct spoe_frame *frame)
Christopher Faulet010fded2016-11-03 22:49:37 +0100888{
Christopher Fauletf95b1112016-12-21 08:58:16 +0100889 struct client *client = frame->client;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100890 char *p, *end;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100891 const char *reason;
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100892 int rlen;
Christopher Faulet85010352017-02-02 10:14:36 +0100893 unsigned int flags = SPOE_FRM_FL_FIN;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100894
895 DEBUG(frame->worker, "<%lu> Encode Agent DISCONNECT frame", client->id);
896 frame->type = SPOA_FRM_T_AGENT;
897
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100898 p = frame->buf;
899 end = frame->buf+max_frame_size;
900
Christopher Fauletf95b1112016-12-21 08:58:16 +0100901 if (client->status_code >= SPOE_FRM_ERRS)
902 client->status_code = SPOE_FRM_ERR_UNKNOWN;
903 reason = spoe_frm_err_reasons[client->status_code];
904 rlen = strlen(reason);
Christopher Faulet010fded2016-11-03 22:49:37 +0100905
906 /* Frame type */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100907 *p++ = SPOE_FRM_T_AGENT_DISCON;
Christopher Faulet010fded2016-11-03 22:49:37 +0100908
Christopher Faulet85010352017-02-02 10:14:36 +0100909 /* Set flags */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100910 memcpy(p, (char *)&flags, 4);
911 p += 4;
Christopher Faulet010fded2016-11-03 22:49:37 +0100912
Christopher Fauletf95b1112016-12-21 08:58:16 +0100913 /* No stream-id and frame-id for DISCONNECT frames */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100914 *p++ = 0;
915 *p++ = 0;
Christopher Fauletf95b1112016-12-21 08:58:16 +0100916
917 /* There are 2 mandatory items: "status-code" and "message" */
918
919 /* "status-code" K/V item */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100920 spoe_encode_buffer("status-code", 11, &p, end);
921 *p++ = SPOE_DATA_T_UINT32;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200922 encode_varint(client->status_code, &p, end);
Christopher Fauletf95b1112016-12-21 08:58:16 +0100923 DEBUG(frame->worker, "<%lu> Disconnect status code : %u",
924 client->id, client->status_code);
Christopher Faulet010fded2016-11-03 22:49:37 +0100925
Christopher Fauletf95b1112016-12-21 08:58:16 +0100926 /* "message" K/V item */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100927 spoe_encode_buffer("message", 7, &p, end);
928 *p++ = SPOE_DATA_T_STR;
929 spoe_encode_buffer(reason, rlen, &p, end);
Christopher Fauletf95b1112016-12-21 08:58:16 +0100930 DEBUG(frame->worker, "<%lu> Disconnect message : %s",
931 client->id, reason);
Christopher Faulet010fded2016-11-03 22:49:37 +0100932
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100933 frame->len = (p - frame->buf);
934 return frame->len;
Christopher Faulet010fded2016-11-03 22:49:37 +0100935}
936
Christopher Fauletf95b1112016-12-21 08:58:16 +0100937/* Encode a ACK frame to send it to HAProxy. It returns the number of written
938 * bytes. */
Christopher Faulet010fded2016-11-03 22:49:37 +0100939static int
Christopher Fauletf95b1112016-12-21 08:58:16 +0100940prepare_agentack(struct spoe_frame *frame)
Christopher Faulet010fded2016-11-03 22:49:37 +0100941{
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100942 char *p, *end;
Christopher Faulet85010352017-02-02 10:14:36 +0100943 unsigned int flags = SPOE_FRM_FL_FIN;
Christopher Faulet010fded2016-11-03 22:49:37 +0100944
Christopher Fauletf95b1112016-12-21 08:58:16 +0100945 /* Be careful here, in async mode, frame->client can be NULL */
946
947 DEBUG(frame->worker, "Encode Agent ACK frame");
948 frame->type = SPOA_FRM_T_AGENT;
Christopher Faulet010fded2016-11-03 22:49:37 +0100949
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100950 p = frame->buf;
951 end = frame->buf+max_frame_size;
952
Christopher Faulet010fded2016-11-03 22:49:37 +0100953 /* Frame type */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100954 *p++ = SPOE_FRM_T_AGENT_ACK;
Christopher Faulet010fded2016-11-03 22:49:37 +0100955
Christopher Faulet85010352017-02-02 10:14:36 +0100956 /* Set flags */
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100957 memcpy(p, (char *)&flags, 4);
958 p += 4;
Christopher Faulet010fded2016-11-03 22:49:37 +0100959
Christopher Fauletf95b1112016-12-21 08:58:16 +0100960 /* Set stream-id and frame-id for ACK frames */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200961 encode_varint(frame->stream_id, &p, end);
962 encode_varint(frame->frame_id, &p, end);
Christopher Faulet010fded2016-11-03 22:49:37 +0100963
Christopher Fauletf95b1112016-12-21 08:58:16 +0100964 DEBUG(frame->worker, "STREAM-ID=%u - FRAME-ID=%u",
965 frame->stream_id, frame->frame_id);
Christopher Faulet010fded2016-11-03 22:49:37 +0100966
Christopher Faulet4ff3e572017-02-24 14:31:11 +0100967 frame->len = (p - frame->buf);
968 return frame->len;
Christopher Faulet010fded2016-11-03 22:49:37 +0100969}
970
971static int
Christopher Fauletf95b1112016-12-21 08:58:16 +0100972create_server_socket(void)
Christopher Faulet010fded2016-11-03 22:49:37 +0100973{
Christopher Fauletf95b1112016-12-21 08:58:16 +0100974 struct sockaddr_in listen_addr;
975 int fd, yes = 1;
976
977 fd = socket(AF_INET, SOCK_STREAM, 0);
978 if (fd < 0) {
979 LOG(&null_worker, "Failed to create service socket : %m");
980 return -1;
Christopher Faulet010fded2016-11-03 22:49:37 +0100981 }
Christopher Fauletf95b1112016-12-21 08:58:16 +0100982
983 memset(&listen_addr, 0, sizeof(listen_addr));
984 listen_addr.sin_family = AF_INET;
985 listen_addr.sin_addr.s_addr = INADDR_ANY;
986 listen_addr.sin_port = htons(server_port);
987
988 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes)) < 0 ||
989 setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &yes, sizeof(yes)) < 0) {
990 LOG(&null_worker, "Failed to set option on server socket : %m");
991 return -1;
Christopher Faulet010fded2016-11-03 22:49:37 +0100992 }
Christopher Fauletf95b1112016-12-21 08:58:16 +0100993
994 if (bind(fd, (struct sockaddr *) &listen_addr, sizeof(listen_addr)) < 0) {
995 LOG(&null_worker, "Failed to bind server socket : %m");
996 return -1;
Christopher Faulet010fded2016-11-03 22:49:37 +0100997 }
Christopher Fauletf95b1112016-12-21 08:58:16 +0100998
999 if (listen(fd, CONNECTION_BACKLOG) < 0) {
1000 LOG(&null_worker, "Failed to listen on server socket : %m");
1001 return -1;
Christopher Faulet010fded2016-11-03 22:49:37 +01001002 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001003
1004 return fd;
Christopher Faulet010fded2016-11-03 22:49:37 +01001005}
1006
Christopher Fauletf95b1112016-12-21 08:58:16 +01001007static void
1008release_frame(struct spoe_frame *frame)
1009{
1010 struct worker *worker;
1011
1012 if (frame == NULL)
1013 return;
1014
1015 if (event_pending(&frame->process_frame_event, EV_TIMEOUT, NULL))
1016 event_del(&frame->process_frame_event);
1017
1018 worker = frame->worker;
1019 LIST_DEL(&frame->list);
Christopher Faulet85010352017-02-02 10:14:36 +01001020 if (frame->frag_buf)
1021 free(frame->frag_buf);
Christopher Fauletf95b1112016-12-21 08:58:16 +01001022 memset(frame, 0, sizeof(*frame)+max_frame_size+4);
1023 LIST_ADDQ(&worker->frames, &frame->list);
1024}
1025
1026static void
1027release_client(struct client *c)
Christopher Faulet010fded2016-11-03 22:49:37 +01001028{
Christopher Fauletf95b1112016-12-21 08:58:16 +01001029 struct spoe_frame *frame, *back;
1030
1031 if (c == NULL)
1032 return;
1033
1034 DEBUG(c->worker, "<%lu> Release client", c->id);
1035
1036 LIST_DEL(&c->by_worker);
1037 c->worker->nbclients--;
1038
1039 unuse_spoe_engine(c);
1040 free(c->engine_id);
1041
1042 if (event_pending(&c->read_frame_event, EV_READ, NULL))
1043 event_del(&c->read_frame_event);
1044 if (event_pending(&c->write_frame_event, EV_WRITE, NULL))
1045 event_del(&c->write_frame_event);
1046
1047 release_frame(c->incoming_frame);
1048 release_frame(c->outgoing_frame);
1049 list_for_each_entry_safe(frame, back, &c->processing_frames, list) {
1050 release_frame(frame);
Christopher Faulet010fded2016-11-03 22:49:37 +01001051 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001052 list_for_each_entry_safe(frame, back, &c->outgoing_frames, list) {
1053 release_frame(frame);
Christopher Faulet010fded2016-11-03 22:49:37 +01001054 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001055
1056 if (c->fd >= 0)
1057 close(c->fd);
1058
1059 free(c);
1060}
1061
1062static void
1063reset_frame(struct spoe_frame *frame)
1064{
1065 if (frame == NULL)
1066 return;
1067
Christopher Faulet85010352017-02-02 10:14:36 +01001068 if (frame->frag_buf)
1069 free(frame->frag_buf);
1070
1071 frame->type = SPOA_FRM_T_UNKNOWN;
1072 frame->buf = (char *)(frame->data);
1073 frame->offset = 0;
1074 frame->len = 0;
1075 frame->stream_id = 0;
1076 frame->frame_id = 0;
1077 frame->flags = 0;
1078 frame->hcheck = false;
1079 frame->fragmented = false;
1080 frame->ip_score = -1;
1081 frame->frag_buf = NULL;
1082 frame->frag_len = 0;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001083 LIST_INIT(&frame->list);
1084}
1085
1086static void
1087use_spoe_engine(struct client *client)
1088{
1089 struct spoe_engine *eng;
1090
1091 if (client->engine_id == NULL)
1092 return;
1093
1094 list_for_each_entry(eng, &client->worker->engines, list) {
1095 if (!strcmp(eng->id, client->engine_id))
1096 goto end;
1097 }
1098
1099 if ((eng = malloc(sizeof(*eng))) == NULL) {
1100 client->async = false;
1101 return;
1102 }
1103
1104 eng->id = strdup(client->engine_id);
1105 LIST_INIT(&eng->clients);
1106 LIST_INIT(&eng->processing_frames);
1107 LIST_INIT(&eng->outgoing_frames);
1108 LIST_ADDQ(&client->worker->engines, &eng->list);
1109 LOG(client->worker, "Add new SPOE engine '%s'", eng->id);
1110
1111 end:
1112 client->engine = eng;
1113 LIST_ADDQ(&eng->clients, &client->by_engine);
1114}
1115
1116static void
1117unuse_spoe_engine(struct client *client)
1118{
1119 struct spoe_engine *eng;
1120 struct spoe_frame *frame, *back;
1121
1122 if (client == NULL || client->engine == NULL)
1123 return;
1124
1125 eng = client->engine;
1126 client->engine = NULL;
1127 LIST_DEL(&client->by_engine);
1128 if (!LIST_ISEMPTY(&eng->clients))
1129 return;
1130
1131 LOG(client->worker, "Remove SPOE engine '%s'", eng->id);
1132 LIST_DEL(&eng->list);
1133
1134 list_for_each_entry_safe(frame, back, &eng->processing_frames, list) {
1135 release_frame(frame);
1136 }
1137 list_for_each_entry_safe(frame, back, &eng->outgoing_frames, list) {
1138 release_frame(frame);
1139 }
1140 free(eng->id);
1141 free(eng);
1142}
1143
1144
1145static struct spoe_frame *
1146acquire_incoming_frame(struct client *client)
1147{
1148 struct spoe_frame *frame;
1149
1150 frame = client->incoming_frame;
1151 if (frame != NULL)
1152 return frame;
1153
1154 if (LIST_ISEMPTY(&client->worker->frames)) {
1155 if ((frame = calloc(1, sizeof(*frame)+max_frame_size+4)) == NULL) {
1156 LOG(client->worker, "Failed to allocate new frame : %m");
1157 return NULL;
1158 }
Christopher Faulet010fded2016-11-03 22:49:37 +01001159 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001160 else {
1161 frame = LIST_NEXT(&client->worker->frames, typeof(frame), list);
1162 LIST_DEL(&frame->list);
Christopher Faulet010fded2016-11-03 22:49:37 +01001163 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001164
1165 reset_frame(frame);
1166 frame->worker = client->worker;
1167 frame->engine = client->engine;
1168 frame->client = client;
1169
1170 if (event_assign(&frame->process_frame_event, client->worker->base, -1,
1171 EV_TIMEOUT|EV_PERSIST, process_frame_cb, frame) < 0) {
1172 LOG(client->worker, "Failed to create frame event");
1173 return NULL;
Christopher Faulet010fded2016-11-03 22:49:37 +01001174 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001175
1176 client->incoming_frame = frame;
1177 return frame;
Christopher Faulet010fded2016-11-03 22:49:37 +01001178}
1179
Christopher Fauletf95b1112016-12-21 08:58:16 +01001180static struct spoe_frame *
1181acquire_outgoing_frame(struct client *client)
Christopher Faulet010fded2016-11-03 22:49:37 +01001182{
Christopher Fauletf95b1112016-12-21 08:58:16 +01001183 struct spoe_engine *engine = client->engine;
1184 struct spoe_frame *frame = NULL;
Christopher Faulet010fded2016-11-03 22:49:37 +01001185
Christopher Fauletf95b1112016-12-21 08:58:16 +01001186 if (client->outgoing_frame != NULL)
1187 frame = client->outgoing_frame;
1188 else if (!LIST_ISEMPTY(&client->outgoing_frames)) {
1189 frame = LIST_NEXT(&client->outgoing_frames, typeof(frame), list);
1190 LIST_DEL(&frame->list);
1191 client->outgoing_frame = frame;
1192 }
1193 else if (engine!= NULL && !LIST_ISEMPTY(&engine->outgoing_frames)) {
1194 frame = LIST_NEXT(&engine->outgoing_frames, typeof(frame), list);
1195 LIST_DEL(&frame->list);
1196 client->outgoing_frame = frame;
1197 }
1198 return frame;
1199}
1200
1201static void
1202write_frame(struct client *client, struct spoe_frame *frame)
1203{
1204 uint32_t netint;
1205
1206 LIST_DEL(&frame->list);
1207
1208 frame->buf = (char *)(frame->data);
1209 frame->offset = 0;
1210 netint = htonl(frame->len);
1211 memcpy(frame->buf, &netint, 4);
Christopher Faulet010fded2016-11-03 22:49:37 +01001212
Christopher Fauletf95b1112016-12-21 08:58:16 +01001213 if (client != NULL) { /* HELLO or DISCONNECT frames */
1214 event_add(&client->write_frame_event, NULL);
Christopher Faulet010fded2016-11-03 22:49:37 +01001215
Christopher Fauletf95b1112016-12-21 08:58:16 +01001216 /* Try to process the frame as soon as possible, and always
1217 * attach it to the client */
1218 if (client->async || client->pipelining) {
1219 if (client->outgoing_frame == NULL)
1220 client->outgoing_frame = frame;
1221 else
1222 LIST_ADD(&client->outgoing_frames, &frame->list);
1223 }
1224 else {
1225 client->outgoing_frame = frame;
1226 event_del(&client->read_frame_event);
Christopher Faulet010fded2016-11-03 22:49:37 +01001227 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001228 }
1229 else { /* for all other frames */
1230 if (frame->client == NULL) { /* async mode ! */
1231 LIST_ADDQ(&frame->engine->outgoing_frames, &frame->list);
1232 list_for_each_entry(client, &frame->engine->clients, by_engine)
1233 event_add(&client->write_frame_event, NULL);
1234 }
1235 else if (frame->client->pipelining) {
1236 LIST_ADDQ(&frame->client->outgoing_frames, &frame->list);
1237 event_add(&frame->client->write_frame_event, NULL);
1238 }
1239 else {
1240 frame->client->outgoing_frame = frame;
1241 event_add(&frame->client->write_frame_event, NULL);
1242 event_del(&frame->client->read_frame_event);
1243 }
1244 }
1245}
Christopher Faulet010fded2016-11-03 22:49:37 +01001246
Christopher Fauletf95b1112016-12-21 08:58:16 +01001247static void
1248process_incoming_frame(struct spoe_frame *frame)
1249{
1250 struct client *client = frame->client;
Christopher Faulet010fded2016-11-03 22:49:37 +01001251
Christopher Fauletf95b1112016-12-21 08:58:16 +01001252 if (event_add(&frame->process_frame_event, &processing_delay) < 0) {
1253 LOG(client->worker, "Failed to process incoming frame");
1254 release_frame(frame);
1255 return;
1256 }
1257
1258 if (client->async) {
1259 frame->client = NULL;
1260 LIST_ADDQ(&frame->engine->processing_frames, &frame->list);
1261 }
1262 else if (client->pipelining)
1263 LIST_ADDQ(&client->processing_frames, &frame->list);
1264 else
1265 event_del(&client->read_frame_event);
1266}
1267
1268static void
1269signal_cb(evutil_socket_t sig, short events, void *user_data)
1270{
1271 struct event_base *base = user_data;
1272 int i;
1273
1274 DEBUG(&null_worker, "Stopping the server");
1275
1276 event_base_loopbreak(base);
1277 DEBUG(&null_worker, "Main event loop stopped");
1278
1279 for (i = 0; i < num_workers; i++) {
1280 event_base_loopbreak(workers[i].base);
1281 DEBUG(&null_worker, "Event loop stopped for worker %02d",
1282 workers[i].id);
1283 }
1284}
1285
1286static void
1287worker_monitor_cb(evutil_socket_t fd, short events, void *arg)
1288{
1289 struct worker *worker = arg;
1290
Christopher Faulet0b89f722018-01-23 14:46:51 +01001291 LOG(worker, "%u clients connected (%u frames)", worker->nbclients, worker->nbframes);
Christopher Fauletf95b1112016-12-21 08:58:16 +01001292}
1293
1294static void
1295process_frame_cb(evutil_socket_t fd, short events, void *arg)
1296{
1297 struct spoe_frame *frame = arg;
Christopher Faulet4ff3e572017-02-24 14:31:11 +01001298 char *p, *end;
1299 int ret;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001300
1301 DEBUG(frame->worker,
Christopher Faulet85010352017-02-02 10:14:36 +01001302 "Process frame messages : STREAM-ID=%u - FRAME-ID=%u - length=%u bytes",
1303 frame->stream_id, frame->frame_id, frame->len - frame->offset);
Christopher Fauletf95b1112016-12-21 08:58:16 +01001304
Christopher Faulet4ff3e572017-02-24 14:31:11 +01001305 p = frame->buf + frame->offset;
1306 end = frame->buf + frame->len;
1307
Christopher Fauletf95b1112016-12-21 08:58:16 +01001308 /* Loop on messages */
Christopher Faulet4ff3e572017-02-24 14:31:11 +01001309 while (p < end) {
Christopher Fauletf95b1112016-12-21 08:58:16 +01001310 char *str;
1311 uint64_t sz;
Christopher Faulet4ff3e572017-02-24 14:31:11 +01001312 int nbargs;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001313
1314 /* Decode the message name */
Christopher Faulet4ff3e572017-02-24 14:31:11 +01001315 spoe_decode_buffer(&p, end, &str, &sz);
1316 if (!str)
Christopher Fauletf95b1112016-12-21 08:58:16 +01001317 goto stop_processing;
1318
1319 DEBUG(frame->worker, "Process SPOE Message '%.*s'", (int)sz, str);
1320
Christopher Faulet4ff3e572017-02-24 14:31:11 +01001321 nbargs = *p++; /* Get the number of arguments */
1322 frame->offset = (p - frame->buf); /* Save index to handle errors and skip args */
Christopher Fauletf95b1112016-12-21 08:58:16 +01001323 if (!memcmp(str, "check-client-ip", sz)) {
Willy Tarreau75f42462017-11-14 15:01:22 +01001324 union spoe_data data;
1325 enum spoe_data_type type;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001326
1327 if (nbargs != 1)
1328 goto skip_message;
1329
Christopher Faulet4ff3e572017-02-24 14:31:11 +01001330 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
Christopher Fauletf95b1112016-12-21 08:58:16 +01001331 goto stop_processing;
Willy Tarreau75f42462017-11-14 15:01:22 +01001332 if (spoe_decode_data(&p, end, &data, &type) == -1)
Christopher Fauletf95b1112016-12-21 08:58:16 +01001333 goto skip_message;
Christopher Faulet0b89f722018-01-23 14:46:51 +01001334 frame->worker->nbframes++;
Willy Tarreau75f42462017-11-14 15:01:22 +01001335 if (type == SPOE_DATA_T_IPV4)
1336 check_ipv4_reputation(frame, &data.ipv4);
1337 if (type == SPOE_DATA_T_IPV6)
1338 check_ipv6_reputation(frame, &data.ipv6);
Christopher Fauletf95b1112016-12-21 08:58:16 +01001339 }
1340 else {
1341 skip_message:
Christopher Faulet4ff3e572017-02-24 14:31:11 +01001342 p = frame->buf + frame->offset; /* Restore index */
Christopher Fauletf95b1112016-12-21 08:58:16 +01001343
1344 while (nbargs-- > 0) {
1345 /* Silently ignore argument: its name and its value */
Christopher Faulet4ff3e572017-02-24 14:31:11 +01001346 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
Christopher Fauletf95b1112016-12-21 08:58:16 +01001347 goto stop_processing;
Christopher Faulet4ff3e572017-02-24 14:31:11 +01001348 if (spoe_skip_data(&p, end) == -1)
Christopher Fauletf95b1112016-12-21 08:58:16 +01001349 goto stop_processing;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001350 }
1351 }
1352 }
1353
1354 stop_processing:
1355 /* Prepare agent ACK frame */
Christopher Faulet85010352017-02-02 10:14:36 +01001356 frame->buf = (char *)(frame->data) + 4;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001357 frame->offset = 0;
Christopher Faulet85010352017-02-02 10:14:36 +01001358 frame->len = 0;
1359 frame->flags = 0;
Christopher Faulet4ff3e572017-02-24 14:31:11 +01001360
1361 ret = prepare_agentack(frame);
Christopher Faulet94bb4c62017-09-26 11:49:23 +02001362 p = frame->buf + ret;
1363 end = frame->buf+max_frame_size;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001364
1365 if (frame->ip_score != -1) {
1366 DEBUG(frame->worker, "Add action : set variable ip_scode=%u",
1367 frame->ip_score);
1368
Christopher Faulet4ff3e572017-02-24 14:31:11 +01001369 *p++ = SPOE_ACT_T_SET_VAR; /* Action type */
1370 *p++ = 3; /* Number of args */
1371 *p++ = SPOE_SCOPE_SESS; /* Arg 1: the scope */
1372 spoe_encode_buffer("ip_score", 8, &p, end); /* Arg 2: variable name */
1373 *p++ = SPOE_DATA_T_UINT32;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +02001374 encode_varint(frame->ip_score, &p, end); /* Arg 3: variable value */
Christopher Faulet4ff3e572017-02-24 14:31:11 +01001375 frame->len = (p - frame->buf);
Christopher Fauletf95b1112016-12-21 08:58:16 +01001376 }
1377 write_frame(NULL, frame);
1378}
1379
1380static void
1381read_frame_cb(evutil_socket_t fd, short events, void *arg)
1382{
1383 struct client *client = arg;
1384 struct spoe_frame *frame;
1385 uint32_t netint;
1386 int n;
1387
1388 DEBUG(client->worker, "<%lu> %s", client->id, __FUNCTION__);
1389 if ((frame = acquire_incoming_frame(client)) == NULL)
1390 goto close;
1391
1392 frame->type = SPOA_FRM_T_HAPROXY;
1393 if (frame->buf == (char *)(frame->data)) {
1394 /* Read the frame length: frame->buf points on length part (frame->data) */
1395 n = read(client->fd, frame->buf+frame->offset, 4-frame->offset);
1396 if (n <= 0) {
1397 if (n < 0)
1398 LOG(client->worker, "Failed to read frame length : %m");
Christopher Fauletba7bc162016-11-07 21:07:38 +01001399 goto close;
Christopher Faulet010fded2016-11-03 22:49:37 +01001400 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001401 frame->offset += n;
1402 if (frame->offset != 4)
1403 return;
1404 memcpy(&netint, frame->buf, 4);
1405 frame->buf += 4;
1406 frame->offset = 0;
1407 frame->len = ntohl(netint);
1408 }
Christopher Faulet010fded2016-11-03 22:49:37 +01001409
Christopher Fauletf95b1112016-12-21 08:58:16 +01001410 /* Read the frame: frame->buf points on frame part (frame->data+4)*/
1411 n = read(client->fd, frame->buf + frame->offset,
1412 frame->len - frame->offset);
1413 if (n <= 0) {
1414 if (n < 0) {
1415 LOG(client->worker, "Frame to read frame : %m");
Christopher Faulet010fded2016-11-03 22:49:37 +01001416 goto close;
1417 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001418 return;
1419 }
1420 frame->offset += n;
1421 if (frame->offset != frame->len)
1422 return;
1423 frame->offset = 0;
1424
1425 DEBUG(client->worker, "<%lu> New Frame of %u bytes received",
1426 client->id, frame->len);
1427
1428 switch (client->state) {
1429 case SPOA_ST_CONNECTING:
1430 if (handle_hahello(frame) < 0) {
1431 LOG(client->worker, "Failed to decode HELLO frame");
1432 goto disconnect;
1433 }
1434 prepare_agenthello(frame);
1435 goto write_frame;
1436
1437 case SPOA_ST_PROCESSING:
Christopher Faulet85010352017-02-02 10:14:36 +01001438 if (frame->buf[0] == SPOE_FRM_T_HAPROXY_DISCON) {
Christopher Fauletf95b1112016-12-21 08:58:16 +01001439 client->state = SPOA_ST_DISCONNECTING;
1440 goto disconnecting;
1441 }
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001442 if (frame->buf[0] == SPOE_FRM_T_UNSET)
1443 n = handle_hafrag(frame);
1444 else
1445 n = handle_hanotify(frame);
1446
Christopher Fauletf95b1112016-12-21 08:58:16 +01001447 if (n < 0) {
Christopher Faulet85010352017-02-02 10:14:36 +01001448 LOG(client->worker, "Failed to decode frame: %s",
1449 spoe_frm_err_reasons[client->status_code]);
1450 goto disconnect;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001451 }
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001452 else if (n == 0) {
Christopher Faulet85010352017-02-02 10:14:36 +01001453 LOG(client->worker, "Ignore invalid/unknown/aborted frame");
1454 goto ignore_frame;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001455 }
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001456 else if (n == 1)
1457 goto noop;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001458 else
1459 goto process_frame;
1460
1461 case SPOA_ST_DISCONNECTING:
1462 disconnecting:
1463 if (handle_hadiscon(frame) < 0) {
1464 LOG(client->worker, "Failed to decode DISCONNECT frame");
1465 goto disconnect;
1466 }
1467 if (client->status_code != SPOE_FRM_ERR_NONE)
1468 LOG(client->worker, "<%lu> Peer closed connection: %s",
1469 client->id, spoe_frm_err_reasons[client->status_code]);
1470 client->status_code = SPOE_FRM_ERR_NONE;
1471 goto disconnect;
1472 }
1473
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001474 noop:
1475 return;
1476
Christopher Fauletf95b1112016-12-21 08:58:16 +01001477 ignore_frame:
1478 reset_frame(frame);
1479 return;
1480
1481 process_frame:
1482 process_incoming_frame(frame);
1483 client->incoming_frame = NULL;
1484 return;
1485
1486 write_frame:
1487 write_frame(client, frame);
1488 client->incoming_frame = NULL;
1489 return;
1490
1491 disconnect:
1492 client->state = SPOA_ST_DISCONNECTING;
1493 if (prepare_agentdicon(frame) < 0) {
1494 LOG(client->worker, "Failed to encode DISCONNECT frame");
1495 goto close;
1496 }
1497 goto write_frame;
1498
1499 close:
1500 release_client(client);
1501}
1502
1503static void
1504write_frame_cb(evutil_socket_t fd, short events, void *arg)
1505{
1506 struct client *client = arg;
1507 struct spoe_frame *frame;
1508 int n;
1509
1510 DEBUG(client->worker, "<%lu> %s", client->id, __FUNCTION__);
1511 if ((frame = acquire_outgoing_frame(client)) == NULL) {
1512 event_del(&client->write_frame_event);
1513 return;
1514 }
1515
1516 if (frame->buf == (char *)(frame->data)) {
1517 /* Write the frame length: frame->buf points on length part (frame->data) */
1518 n = write(client->fd, frame->buf+frame->offset, 4-frame->offset);
1519 if (n <= 0) {
1520 if (n < 0)
1521 LOG(client->worker, "Failed to write frame length : %m");
Christopher Faulet010fded2016-11-03 22:49:37 +01001522 goto close;
1523 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001524 frame->offset += n;
1525 if (frame->offset != 4)
1526 return;
1527 frame->buf += 4;
1528 frame->offset = 0;
1529 }
1530
1531 /* Write the frame: frame->buf points on frame part (frame->data+4)*/
1532 n = write(client->fd, frame->buf + frame->offset,
1533 frame->len - frame->offset);
1534 if (n <= 0) {
1535 if (n < 0) {
1536 LOG(client->worker, "Failed to write frame : %m");
Christopher Faulet010fded2016-11-03 22:49:37 +01001537 goto close;
1538 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001539 return;
1540 }
1541 frame->offset += n;
1542 if (frame->offset != frame->len)
1543 return;
1544
1545 DEBUG(client->worker, "<%lu> Frame of %u bytes send",
1546 client->id, frame->len);
1547
1548 switch (client->state) {
1549 case SPOA_ST_CONNECTING:
1550 if (frame->hcheck == true) {
1551 DEBUG(client->worker,
1552 "<%lu> Close client after healthcheck",
1553 client->id);
1554 goto close;
1555 }
1556 client->state = SPOA_ST_PROCESSING;
1557 break;
1558
1559 case SPOA_ST_PROCESSING:
1560 break;
1561
1562 case SPOA_ST_DISCONNECTING:
1563 goto close;
1564 }
1565
1566 release_frame(frame);
1567 client->outgoing_frame = NULL;
1568 if (!client->async && !client->pipelining) {
1569 event_del(&client->write_frame_event);
1570 event_add(&client->read_frame_event, NULL);
1571 }
1572 return;
1573
1574 close:
1575 release_client(client);
1576}
1577
1578static void
1579accept_cb(int listener, short event, void *arg)
1580{
1581 struct worker *worker;
1582 struct client *client;
1583 int fd;
1584
1585 worker = &workers[clicount++ % num_workers];
1586
1587 if ((fd = accept(listener, NULL, NULL)) < 0) {
1588 if (errno != EAGAIN && errno != EWOULDBLOCK)
1589 LOG(worker, "Failed to accept client connection : %m");
1590 return;
1591 }
1592
1593 DEBUG(&null_worker,
1594 "<%lu> New Client connection accepted and assigned to worker %02d",
1595 clicount, worker->id);
1596
1597 if (evutil_make_socket_nonblocking(fd) < 0) {
1598 LOG(&null_worker, "Failed to set client socket to non-blocking : %m");
1599 close(fd);
1600 return;
1601 }
1602
1603 if ((client = calloc(1, sizeof(*client))) == NULL) {
1604 LOG(&null_worker, "Failed to allocate memory for client state : %m");
1605 close(fd);
1606 return;
1607 }
1608
1609 client->id = clicount;
1610 client->fd = fd;
1611 client->worker = worker;
1612 client->state = SPOA_ST_CONNECTING;
1613 client->status_code = SPOE_FRM_ERR_NONE;
1614 client->max_frame_size = max_frame_size;
1615 client->engine = NULL;
1616 client->pipelining = false;
1617 client->async = false;
1618 client->incoming_frame = NULL;
1619 client->outgoing_frame = NULL;
1620 LIST_INIT(&client->processing_frames);
1621 LIST_INIT(&client->outgoing_frames);
1622
1623 LIST_ADDQ(&worker->clients, &client->by_worker);
1624
1625 worker->nbclients++;
1626
1627 if (event_assign(&client->read_frame_event, worker->base, fd,
1628 EV_READ|EV_PERSIST, read_frame_cb, client) < 0 ||
1629 event_assign(&client->write_frame_event, worker->base, fd,
1630 EV_WRITE|EV_PERSIST, write_frame_cb, client) < 0) {
1631 LOG(&null_worker, "Failed to create client events");
1632 release_client(client);
1633 return;
1634 }
1635 event_add(&client->read_frame_event, NULL);
1636}
1637
1638static void *
1639worker_function(void *data)
1640{
1641 struct client *client, *cback;
1642 struct spoe_frame *frame, *fback;
1643 struct worker *worker = data;
1644
1645 DEBUG(worker, "Worker ready to process client messages");
1646 event_base_dispatch(worker->base);
Christopher Faulet010fded2016-11-03 22:49:37 +01001647
Christopher Fauletf95b1112016-12-21 08:58:16 +01001648 list_for_each_entry_safe(client, cback, &worker->clients, by_worker) {
1649 release_client(client);
Christopher Faulet010fded2016-11-03 22:49:37 +01001650 }
1651
Christopher Fauletf95b1112016-12-21 08:58:16 +01001652 list_for_each_entry_safe(frame, fback, &worker->frames, list) {
1653 LIST_DEL(&frame->list);
1654 free(frame);
1655 }
1656
1657 event_free(worker->monitor_event);
1658 event_base_free(worker->base);
1659 DEBUG(worker, "Worker is stopped");
1660 pthread_exit(&null_worker);
1661}
1662
1663
1664static int
1665parse_processing_delay(const char *str)
1666{
1667 unsigned long value;
1668
1669 value = 0;
1670 while (1) {
1671 unsigned int j;
1672
1673 j = *str - '0';
1674 if (j > 9)
1675 break;
1676 str++;
1677 value *= 10;
1678 value += j;
1679 }
1680
1681 switch (*str) {
1682 case '\0': /* no unit = millisecond */
1683 value *= 1000;
1684 break;
1685 case 's': /* second */
1686 value *= 1000000;
1687 str++;
1688 break;
1689 case 'm': /* millisecond : "ms" */
1690 if (str[1] != 's')
1691 return -1;
1692 value *= 1000;
1693 str += 2;
1694 break;
1695 case 'u': /* microsecond : "us" */
1696 if (str[1] != 's')
1697 return -1;
1698 str += 2;
1699 break;
1700 default:
1701 return -1;
1702 }
1703 if (*str)
1704 return -1;
1705
1706 processing_delay.tv_sec = (time_t)(value / 1000000);
1707 processing_delay.tv_usec = (suseconds_t)(value % 1000000);
1708 return 0;
Christopher Faulet010fded2016-11-03 22:49:37 +01001709}
1710
Christopher Fauletf95b1112016-12-21 08:58:16 +01001711
Christopher Faulet010fded2016-11-03 22:49:37 +01001712static void
1713usage(char *prog)
1714{
Christopher Fauletf95b1112016-12-21 08:58:16 +01001715 fprintf(stderr,
1716 "Usage : %s [OPTION]...\n"
1717 " -h Print this message\n"
1718 " -d Enable the debug mode\n"
1719 " -m <max-frame-size> Specify the maximum frame size (default : %u)\n"
1720 " -p <port> Specify the port to listen on (default : %d)\n"
1721 " -n <num-workers> Specify the number of workers (default : %d)\n"
1722 " -c <capability> Enable the support of the specified capability\n"
1723 " -t <time> Set a delay to process a message (default: 0)\n"
1724 " The value is specified in milliseconds by default,\n"
1725 " but can be in any other unit if the number is suffixed\n"
1726 " by a unit (us, ms, s)\n"
1727 "\n"
Christopher Faulet85010352017-02-02 10:14:36 +01001728 " Supported capabilities: fragmentation, pipelining, async\n",
Christopher Fauletf95b1112016-12-21 08:58:16 +01001729 prog, MAX_FRAME_SIZE, DEFAULT_PORT, NUM_WORKERS);
Christopher Faulet010fded2016-11-03 22:49:37 +01001730}
1731
1732int
1733main(int argc, char **argv)
1734{
Christopher Fauletf95b1112016-12-21 08:58:16 +01001735 struct event_base *base = NULL;
1736 struct event *signal_event = NULL, *accept_event = NULL;
1737 int opt, i, fd = -1;
Christopher Faulet010fded2016-11-03 22:49:37 +01001738
Christopher Fauletf95b1112016-12-21 08:58:16 +01001739 // TODO: add '-t <processing-time>' option
1740 while ((opt = getopt(argc, argv, "hdm:n:p:c:t:")) != -1) {
Christopher Faulet010fded2016-11-03 22:49:37 +01001741 switch (opt) {
1742 case 'h':
1743 usage(argv[0]);
1744 return EXIT_SUCCESS;
1745 case 'd':
1746 debug = true;
1747 break;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001748 case 'm':
1749 max_frame_size = atoi(optarg);
1750 break;
Christopher Faulet010fded2016-11-03 22:49:37 +01001751 case 'n':
Christopher Fauletf95b1112016-12-21 08:58:16 +01001752 num_workers = atoi(optarg);
Christopher Faulet010fded2016-11-03 22:49:37 +01001753 break;
1754 case 'p':
Christopher Fauletf95b1112016-12-21 08:58:16 +01001755 server_port = atoi(optarg);
Christopher Faulet010fded2016-11-03 22:49:37 +01001756 break;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001757 case 'c':
1758 if (!strcmp(optarg, "pipelining"))
1759 pipelining = true;
1760 else if (!strcmp(optarg, "async"))
1761 async = true;
Christopher Faulet85010352017-02-02 10:14:36 +01001762 else if (!strcmp(optarg, "fragmentation"))
1763 fragmentation = true;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001764 else
1765 fprintf(stderr, "WARNING: unsupported capability '%s'\n", optarg);
1766 break;
1767 case 't':
1768 if (!parse_processing_delay(optarg))
1769 break;
1770 fprintf(stderr, "%s: failed to parse time '%s'.\n", argv[0], optarg);
1771 fprintf(stderr, "Try '%s -h' for more information.\n", argv[0]);
1772 return EXIT_FAILURE;
Christopher Faulet010fded2016-11-03 22:49:37 +01001773 default:
1774 usage(argv[0]);
1775 return EXIT_FAILURE;
1776 }
1777 }
1778
Christopher Fauletf95b1112016-12-21 08:58:16 +01001779 if (num_workers <= 0) {
1780 LOG(&null_worker, "%s : Invalid number of workers '%d'\n",
1781 argv[0], num_workers);
Christopher Faulet010fded2016-11-03 22:49:37 +01001782 goto error;
1783 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001784
1785 if (server_port <= 0) {
1786 LOG(&null_worker, "%s : Invalid port '%d'\n",
1787 argv[0], server_port);
Christopher Faulet010fded2016-11-03 22:49:37 +01001788 goto error;
1789 }
1790
Christopher Fauletf95b1112016-12-21 08:58:16 +01001791
1792 if (evthread_use_pthreads() < 0) {
1793 LOG(&null_worker, "No pthreads support for libevent");
Christopher Faulet010fded2016-11-03 22:49:37 +01001794 goto error;
1795 }
1796
Christopher Fauletf95b1112016-12-21 08:58:16 +01001797 if ((base = event_base_new()) == NULL) {
1798 LOG(&null_worker, "Failed to initialize libevent : %m");
1799 goto error;
1800 }
Christopher Faulet010fded2016-11-03 22:49:37 +01001801
Christopher Fauletf95b1112016-12-21 08:58:16 +01001802 signal(SIGPIPE, SIG_IGN);
Christopher Faulet010fded2016-11-03 22:49:37 +01001803
Christopher Fauletf95b1112016-12-21 08:58:16 +01001804 if ((fd = create_server_socket()) < 0) {
1805 LOG(&null_worker, "Failed to create server socket");
1806 goto error;
1807 }
1808 if (evutil_make_socket_nonblocking(fd) < 0) {
1809 LOG(&null_worker, "Failed to set server socket to non-blocking");
Christopher Faulet010fded2016-11-03 22:49:37 +01001810 goto error;
1811 }
1812
Christopher Fauletf95b1112016-12-21 08:58:16 +01001813 if ((workers = calloc(num_workers, sizeof(*workers))) == NULL) {
1814 LOG(&null_worker, "Failed to set allocate memory for workers");
Christopher Faulet010fded2016-11-03 22:49:37 +01001815 goto error;
1816 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001817
1818 for (i = 0; i < num_workers; ++i) {
1819 struct worker *w = &workers[i];
Christopher Faulet010fded2016-11-03 22:49:37 +01001820
Christopher Fauletf95b1112016-12-21 08:58:16 +01001821 w->id = i+1;
1822 w->nbclients = 0;
Christopher Faulet0b89f722018-01-23 14:46:51 +01001823 w->nbframes = 0;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001824 LIST_INIT(&w->engines);
1825 LIST_INIT(&w->clients);
1826 LIST_INIT(&w->frames);
1827
1828 if ((w->base = event_base_new()) == NULL) {
1829 LOG(&null_worker,
1830 "Failed to initialize libevent for worker %02d : %m",
1831 w->id);
1832 goto error;
1833 }
Christopher Faulet010fded2016-11-03 22:49:37 +01001834
Christopher Fauletf95b1112016-12-21 08:58:16 +01001835 w->monitor_event = event_new(w->base, fd, EV_PERSIST,
1836 worker_monitor_cb, (void *)w);
1837 if (w->monitor_event == NULL ||
1838 event_add(w->monitor_event, (struct timeval[]){{5,0}}) < 0) {
1839 LOG(&null_worker,
1840 "Failed to create monitor event for worker %02d",
1841 w->id);
Christopher Faulet010fded2016-11-03 22:49:37 +01001842 goto error;
1843 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001844
1845 if (pthread_create(&w->thread, NULL, worker_function, (void *)w)) {
1846 LOG(&null_worker,
1847 "Failed to start thread for worker %02d : %m",
1848 w->id);
1849 }
1850 DEBUG(&null_worker, "Worker %02d initialized", w->id);
1851 }
1852
1853 accept_event = event_new(base, fd, EV_READ|EV_PERSIST, accept_cb,
1854 (void *)base);
1855 if (accept_event == NULL || event_add(accept_event, NULL) < 0) {
1856 LOG(&null_worker, "Failed to create accept event : %m");
1857 }
1858
1859 signal_event = evsignal_new(base, SIGINT, signal_cb, (void *)base);
1860 if (signal_event == NULL || event_add(signal_event, NULL) < 0) {
1861 LOG(&null_worker, "Failed to create signal event : %m");
Christopher Faulet010fded2016-11-03 22:49:37 +01001862 }
1863
Christopher Fauletf95b1112016-12-21 08:58:16 +01001864 DEBUG(&null_worker,
1865 "Server is ready"
Christopher Faulet85010352017-02-02 10:14:36 +01001866 " [fragmentation=%s - pipelining=%s - async=%s - debug=%s - max-frame-size=%u]",
1867 (fragmentation?"true":"false"), (pipelining?"true":"false"), (async?"true":"false"),
Christopher Fauletf95b1112016-12-21 08:58:16 +01001868 (debug?"true":"false"), max_frame_size);
1869 event_base_dispatch(base);
1870
1871 for (i = 0; i < num_workers; i++) {
1872 struct worker *w = &workers[i];
1873
1874 pthread_join(w->thread, NULL);
1875 DEBUG(&null_worker, "Worker %02d terminated", w->id);
Christopher Faulet010fded2016-11-03 22:49:37 +01001876 }
Christopher Fauletf95b1112016-12-21 08:58:16 +01001877
1878 free(workers);
1879 event_free(signal_event);
1880 event_free(accept_event);
1881 event_base_free(base);
1882 close(fd);
Christopher Faulet010fded2016-11-03 22:49:37 +01001883 return EXIT_SUCCESS;
Christopher Fauletf95b1112016-12-21 08:58:16 +01001884
1885 error:
1886 if (workers != NULL)
1887 free(workers);
1888 if (signal_event != NULL)
1889 event_free(signal_event);
1890 if (accept_event != NULL)
1891 event_free(accept_event);
1892 if (base != NULL)
1893 event_base_free(base);
1894 if (fd != -1)
1895 close(fd);
Christopher Faulet010fded2016-11-03 22:49:37 +01001896 return EXIT_FAILURE;
1897}