blob: 3a97d8a90f886ac353d206b038d112b1b1cba00b [file] [log] [blame]
Emeric Brun2b920a12010-09-23 18:30:22 +02001/*
Emeric Brunb3971ab2015-05-12 18:49:09 +02002 * Peer synchro management.
Emeric Brun2b920a12010-09-23 18:30:22 +02003 *
4 * Copyright 2010 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
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
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <string.h>
18
19#include <sys/socket.h>
20#include <sys/stat.h>
21#include <sys/types.h>
22
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020023#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020024#include <haproxy/applet.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020025#include <haproxy/channel.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020026#include <haproxy/cli.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020027#include <haproxy/dict.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020028#include <haproxy/errors.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020029#include <haproxy/fd.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020030#include <haproxy/frontend.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020031#include <haproxy/net_helper.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020032#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020033#include <haproxy/peers.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020034#include <haproxy/proxy.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020035#include <haproxy/session-t.h>
Willy Tarreau3727a8a2020-06-04 17:37:26 +020036#include <haproxy/signal.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020037#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020038#include <haproxy/stick_table.h>
39#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020040#include <haproxy/stream_interface.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020041#include <haproxy/task.h>
42#include <haproxy/thread.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020043#include <haproxy/time.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020044#include <haproxy/tools.h>
Frédéric Lécailled8659352020-11-10 16:18:03 +010045#include <haproxy/trace.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020046
Emeric Brun2b920a12010-09-23 18:30:22 +020047
48/*******************************/
49/* Current peer learning state */
50/*******************************/
51
52/******************************/
Emeric Brunb3971ab2015-05-12 18:49:09 +020053/* Current peers section resync state */
Emeric Brun2b920a12010-09-23 18:30:22 +020054/******************************/
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010055#define PEERS_F_RESYNC_LOCAL 0x00000001 /* Learn from local finished or no more needed */
56#define PEERS_F_RESYNC_REMOTE 0x00000002 /* Learn from remote finished or no more needed */
57#define PEERS_F_RESYNC_ASSIGN 0x00000004 /* A peer was assigned to learn our lesson */
58#define PEERS_F_RESYNC_PROCESS 0x00000008 /* The assigned peer was requested for resync */
59#define PEERS_F_DONOTSTOP 0x00010000 /* Main table sync task block process during soft stop
60 to push data to new process */
Emeric Brun2b920a12010-09-23 18:30:22 +020061
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010062#define PEERS_RESYNC_STATEMASK (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE)
63#define PEERS_RESYNC_FROMLOCAL 0x00000000
64#define PEERS_RESYNC_FROMREMOTE PEERS_F_RESYNC_LOCAL
65#define PEERS_RESYNC_FINISHED (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE)
Emeric Brunb3971ab2015-05-12 18:49:09 +020066
67/***********************************/
68/* Current shared table sync state */
69/***********************************/
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010070#define SHTABLE_F_TEACH_STAGE1 0x00000001 /* Teach state 1 complete */
71#define SHTABLE_F_TEACH_STAGE2 0x00000002 /* Teach state 2 complete */
Emeric Brun2b920a12010-09-23 18:30:22 +020072
73/******************************/
74/* Remote peer teaching state */
75/******************************/
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010076#define PEER_F_TEACH_PROCESS 0x00000001 /* Teach a lesson to current peer */
77#define PEER_F_TEACH_FINISHED 0x00000008 /* Teach conclude, (wait for confirm) */
78#define PEER_F_TEACH_COMPLETE 0x00000010 /* All that we know already taught to current peer, used only for a local peer */
79#define PEER_F_LEARN_ASSIGN 0x00000100 /* Current peer was assigned for a lesson */
80#define PEER_F_LEARN_NOTUP2DATE 0x00000200 /* Learn from peer finished but peer is not up to date */
81#define PEER_F_ALIVE 0x20000000 /* Used to flag a peer a alive. */
82#define PEER_F_HEARTBEAT 0x40000000 /* Heartbeat message to send. */
83#define PEER_F_DWNGRD 0x80000000 /* When this flag is enabled, we must downgrade the supported version announced during peer sessions. */
Emeric Brun2b920a12010-09-23 18:30:22 +020084
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010085#define PEER_TEACH_RESET ~(PEER_F_TEACH_PROCESS|PEER_F_TEACH_FINISHED) /* PEER_F_TEACH_COMPLETE should never be reset */
86#define PEER_LEARN_RESET ~(PEER_F_LEARN_ASSIGN|PEER_F_LEARN_NOTUP2DATE)
Emeric Brun2b920a12010-09-23 18:30:22 +020087
Frédéric Lécaille54bff832019-03-26 10:25:20 +010088#define PEER_RESYNC_TIMEOUT 5000 /* 5 seconds */
89#define PEER_RECONNECT_TIMEOUT 5000 /* 5 seconds */
Frédéric Lécaille645635d2019-02-11 17:49:39 +010090#define PEER_HEARTBEAT_TIMEOUT 3000 /* 3 seconds */
91
Emeric Brunb3971ab2015-05-12 18:49:09 +020092/*****************************/
93/* Sync message class */
94/*****************************/
95enum {
96 PEER_MSG_CLASS_CONTROL = 0,
97 PEER_MSG_CLASS_ERROR,
98 PEER_MSG_CLASS_STICKTABLE = 10,
99 PEER_MSG_CLASS_RESERVED = 255,
100};
101
102/*****************************/
103/* control message types */
104/*****************************/
105enum {
106 PEER_MSG_CTRL_RESYNCREQ = 0,
107 PEER_MSG_CTRL_RESYNCFINISHED,
108 PEER_MSG_CTRL_RESYNCPARTIAL,
109 PEER_MSG_CTRL_RESYNCCONFIRM,
Frédéric Lécaille645635d2019-02-11 17:49:39 +0100110 PEER_MSG_CTRL_HEARTBEAT,
Emeric Brunb3971ab2015-05-12 18:49:09 +0200111};
112
113/*****************************/
114/* error message types */
115/*****************************/
116enum {
117 PEER_MSG_ERR_PROTOCOL = 0,
118 PEER_MSG_ERR_SIZELIMIT,
119};
120
Emeric Brun530ba382020-06-02 11:17:42 +0200121/* network key types;
122 * network types were directly and mistakenly
123 * mapped on sample types, to keep backward
124 * compatiblitiy we keep those values but
125 * we now use a internal/network mapping
126 * to avoid further mistakes adding or
127 * modifying internals types
128 */
129enum {
130 PEER_KT_ANY = 0, /* any type */
131 PEER_KT_RESV1, /* UNUSED */
132 PEER_KT_SINT, /* signed 64bits integer type */
133 PEER_KT_RESV3, /* UNUSED */
134 PEER_KT_IPV4, /* ipv4 type */
135 PEER_KT_IPV6, /* ipv6 type */
136 PEER_KT_STR, /* char string type */
137 PEER_KT_BIN, /* buffer type */
138 PEER_KT_TYPES /* number of types, must always be last */
139};
140
141/* Map used to retrieve network type from internal type
142 * Note: Undeclared mapping maps entry to PEER_KT_ANY == 0
143 */
144static int peer_net_key_type[SMP_TYPES] = {
145 [SMP_T_SINT] = PEER_KT_SINT,
146 [SMP_T_IPV4] = PEER_KT_IPV4,
147 [SMP_T_IPV6] = PEER_KT_IPV6,
148 [SMP_T_STR] = PEER_KT_STR,
149 [SMP_T_BIN] = PEER_KT_BIN,
150};
151
152/* Map used to retrieve internal type from external type
153 * Note: Undeclared mapping maps entry to SMP_T_ANY == 0
154 */
155static int peer_int_key_type[PEER_KT_TYPES] = {
156 [PEER_KT_SINT] = SMP_T_SINT,
157 [PEER_KT_IPV4] = SMP_T_IPV4,
158 [PEER_KT_IPV6] = SMP_T_IPV6,
159 [PEER_KT_STR] = SMP_T_STR,
160 [PEER_KT_BIN] = SMP_T_BIN,
161};
162
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100163/*
164 * Parameters used by functions to build peer protocol messages. */
165struct peer_prep_params {
166 struct {
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100167 struct peer *peer;
168 } hello;
169 struct {
170 unsigned int st1;
171 } error_status;
172 struct {
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100173 struct stksess *stksess;
174 struct shared_table *shared_table;
175 unsigned int updateid;
176 int use_identifier;
177 int use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200178 struct peer *peer;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100179 } updt;
180 struct {
181 struct shared_table *shared_table;
182 } swtch;
183 struct {
184 struct shared_table *shared_table;
185 } ack;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100186 struct {
187 unsigned char head[2];
188 } control;
189 struct {
190 unsigned char head[2];
191 } error;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100192};
Emeric Brunb3971ab2015-05-12 18:49:09 +0200193
194/*******************************/
195/* stick table sync mesg types */
196/* Note: ids >= 128 contains */
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500197/* id message contains data */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200198/*******************************/
Olivier Houchard33992262018-10-16 18:49:26 +0200199#define PEER_MSG_STKT_UPDATE 0x80
200#define PEER_MSG_STKT_INCUPDATE 0x81
201#define PEER_MSG_STKT_DEFINE 0x82
202#define PEER_MSG_STKT_SWITCH 0x83
203#define PEER_MSG_STKT_ACK 0x84
204#define PEER_MSG_STKT_UPDATE_TIMED 0x85
205#define PEER_MSG_STKT_INCUPDATE_TIMED 0x86
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +0200206/* All the stick-table message identifiers abova have the #7 bit set */
207#define PEER_MSG_STKT_BIT 7
208#define PEER_MSG_STKT_BIT_MASK (1 << PEER_MSG_STKT_BIT)
Emeric Brun2b920a12010-09-23 18:30:22 +0200209
Frédéric Lécaille39143342019-05-24 14:32:27 +0200210/* The maximum length of an encoded data length. */
211#define PEER_MSG_ENC_LENGTH_MAXLEN 5
212
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200213/* Minimum 64-bits value encoded with 2 bytes */
214#define PEER_ENC_2BYTES_MIN 0xf0 /* 0xf0 (or 240) */
215/* 3 bytes */
216#define PEER_ENC_3BYTES_MIN ((1ULL << 11) | PEER_ENC_2BYTES_MIN) /* 0x8f0 (or 2288) */
217/* 4 bytes */
218#define PEER_ENC_4BYTES_MIN ((1ULL << 18) | PEER_ENC_3BYTES_MIN) /* 0x408f0 (or 264432) */
219/* 5 bytes */
220#define PEER_ENC_5BYTES_MIN ((1ULL << 25) | PEER_ENC_4BYTES_MIN) /* 0x20408f0 (or 33818864) */
221/* 6 bytes */
222#define PEER_ENC_6BYTES_MIN ((1ULL << 32) | PEER_ENC_5BYTES_MIN) /* 0x1020408f0 (or 4328786160) */
223/* 7 bytes */
224#define PEER_ENC_7BYTES_MIN ((1ULL << 39) | PEER_ENC_6BYTES_MIN) /* 0x81020408f0 (or 554084600048) */
225/* 8 bytes */
226#define PEER_ENC_8BYTES_MIN ((1ULL << 46) | PEER_ENC_7BYTES_MIN) /* 0x4081020408f0 (or 70922828777712) */
227/* 9 bytes */
228#define PEER_ENC_9BYTES_MIN ((1ULL << 53) | PEER_ENC_8BYTES_MIN) /* 0x204081020408f0 (or 9078122083518704) */
229/* 10 bytes */
230#define PEER_ENC_10BYTES_MIN ((1ULL << 60) | PEER_ENC_9BYTES_MIN) /* 0x10204081020408f0 (or 1161999626690365680) */
231
232/* #7 bit used to detect the last byte to be encoded */
233#define PEER_ENC_STOP_BIT 7
234/* The byte minimum value with #7 bit set */
235#define PEER_ENC_STOP_BYTE (1 << PEER_ENC_STOP_BIT)
236/* The left most number of bits set for PEER_ENC_2BYTES_MIN */
237#define PEER_ENC_2BYTES_MIN_BITS 4
238
Frédéric Lécaille39143342019-05-24 14:32:27 +0200239#define PEER_MSG_HEADER_LEN 2
240
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200241#define PEER_STKT_CACHE_MAX_ENTRIES 128
242
Emeric Brun2b920a12010-09-23 18:30:22 +0200243/**********************************/
244/* Peer Session IO handler states */
245/**********************************/
246
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100247enum {
248 PEER_SESS_ST_ACCEPT = 0, /* Initial state for session create by an accept, must be zero! */
249 PEER_SESS_ST_GETVERSION, /* Validate supported protocol version */
250 PEER_SESS_ST_GETHOST, /* Validate host ID correspond to local host id */
251 PEER_SESS_ST_GETPEER, /* Validate peer ID correspond to a known remote peer id */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100252 /* after this point, data were possibly exchanged */
253 PEER_SESS_ST_SENDSUCCESS, /* Send ret code 200 (success) and wait for message */
254 PEER_SESS_ST_CONNECT, /* Initial state for session create on a connect, push presentation into buffer */
255 PEER_SESS_ST_GETSTATUS, /* Wait for the welcome message */
256 PEER_SESS_ST_WAITMSG, /* Wait for data messages */
257 PEER_SESS_ST_EXIT, /* Exit with status code */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200258 PEER_SESS_ST_ERRPROTO, /* Send error proto message before exit */
259 PEER_SESS_ST_ERRSIZE, /* Send error size message before exit */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100260 PEER_SESS_ST_END, /* Killed session */
261};
Emeric Brun2b920a12010-09-23 18:30:22 +0200262
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100263/***************************************************/
264/* Peer Session status code - part of the protocol */
265/***************************************************/
Emeric Brun2b920a12010-09-23 18:30:22 +0200266
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100267#define PEER_SESS_SC_CONNECTCODE 100 /* connect in progress */
268#define PEER_SESS_SC_CONNECTEDCODE 110 /* tcp connect success */
Emeric Brun2b920a12010-09-23 18:30:22 +0200269
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100270#define PEER_SESS_SC_SUCCESSCODE 200 /* accept or connect successful */
Emeric Brun2b920a12010-09-23 18:30:22 +0200271
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100272#define PEER_SESS_SC_TRYAGAIN 300 /* try again later */
Emeric Brun2b920a12010-09-23 18:30:22 +0200273
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100274#define PEER_SESS_SC_ERRPROTO 501 /* error protocol */
275#define PEER_SESS_SC_ERRVERSION 502 /* unknown protocol version */
276#define PEER_SESS_SC_ERRHOST 503 /* bad host name */
277#define PEER_SESS_SC_ERRPEER 504 /* unknown peer */
Emeric Brun2b920a12010-09-23 18:30:22 +0200278
279#define PEER_SESSION_PROTO_NAME "HAProxyS"
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200280#define PEER_MAJOR_VER 2
281#define PEER_MINOR_VER 1
282#define PEER_DWNGRD_MINOR_VER 0
Emeric Brun2b920a12010-09-23 18:30:22 +0200283
Willy Tarreau6254a922019-01-29 17:45:23 +0100284static size_t proto_len = sizeof(PEER_SESSION_PROTO_NAME) - 1;
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200285struct peers *cfg_peers = NULL;
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200286static void peer_session_forceshutdown(struct peer *peer);
Emeric Brun2b920a12010-09-23 18:30:22 +0200287
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200288static struct ebpt_node *dcache_tx_insert(struct dcache *dc,
289 struct dcache_tx_entry *i);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200290static inline void flush_dcache(struct peer *peer);
291
Frédéric Lécailled8659352020-11-10 16:18:03 +0100292/* trace source and events */
293static void peers_trace(enum trace_level level, uint64_t mask,
294 const struct trace_source *src,
295 const struct ist where, const struct ist func,
296 const void *a1, const void *a2, const void *a3, const void *a4);
297
298static const struct trace_event peers_trace_events[] = {
299#define PEERS_EV_UPDTMSG (1 << 0)
300 { .mask = PEERS_EV_UPDTMSG, .name = "updtmsg", .desc = "update message received" },
301};
302
303static const struct name_desc peers_trace_lockon_args[4] = {
304 /* arg1 */ { /* already used by the connection */ },
305 /* arg2 */ { .name="peers", .desc="Peers protocol" },
306 /* arg3 */ { },
307 /* arg4 */ { }
308};
309
310static const struct name_desc peers_trace_decoding[] = {
311#define PEERS_VERB_CLEAN 1
312 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
313 { /* end */ }
314};
315
316
317struct trace_source trace_peers = {
318 .name = IST("peers"),
319 .desc = "Peers protocol",
320 .arg_def = TRC_ARG1_CONN, /* TRACE()'s first argument is always a connection */
321 .default_cb = peers_trace,
322 .known_events = peers_trace_events,
323 .lockon_args = peers_trace_lockon_args,
324 .decoding = peers_trace_decoding,
325 .report_events = ~0, /* report everything by default */
326};
327
328#define TRACE_SOURCE &trace_peers
329INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
330
331static void peers_trace(enum trace_level level, uint64_t mask,
332 const struct trace_source *src,
333 const struct ist where, const struct ist func,
334 const void *a1, const void *a2, const void *a3, const void *a4)
335{
336 if (mask & PEERS_EV_UPDTMSG) {
337 if (a2) {
338 const struct peer *peer = a2;
339
340 chunk_appendf(&trace_buf, " peer=%s", peer->id);
341 }
342 if (a3) {
343 const char *p = a3;
344
345 chunk_appendf(&trace_buf, " @%p", p);
346 }
347 if (a4) {
348 const size_t *val = a4;
349
350 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*val);
351 }
352 }
353}
354
Frédéric Lécaille95679dc2019-04-15 10:25:27 +0200355static const char *statuscode_str(int statuscode)
356{
357 switch (statuscode) {
358 case PEER_SESS_SC_CONNECTCODE:
359 return "CONN";
360 case PEER_SESS_SC_CONNECTEDCODE:
361 return "HSHK";
362 case PEER_SESS_SC_SUCCESSCODE:
363 return "ESTA";
364 case PEER_SESS_SC_TRYAGAIN:
365 return "RETR";
366 case PEER_SESS_SC_ERRPROTO:
367 return "PROT";
368 case PEER_SESS_SC_ERRVERSION:
369 return "VERS";
370 case PEER_SESS_SC_ERRHOST:
371 return "NAME";
372 case PEER_SESS_SC_ERRPEER:
373 return "UNKN";
374 default:
375 return "NONE";
376 }
377}
378
Emeric Brun18928af2017-03-29 16:32:53 +0200379/* This function encode an uint64 to 'dynamic' length format.
380 The encoded value is written at address *str, and the
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500381 caller must assure that size after *str is large enough.
Emeric Brun18928af2017-03-29 16:32:53 +0200382 At return, the *str is set at the next Byte after then
383 encoded integer. The function returns then length of the
384 encoded integer in Bytes */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200385int intencode(uint64_t i, char **str) {
386 int idx = 0;
387 unsigned char *msg;
388
Emeric Brunb3971ab2015-05-12 18:49:09 +0200389 msg = (unsigned char *)*str;
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200390 if (i < PEER_ENC_2BYTES_MIN) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200391 msg[0] = (unsigned char)i;
392 *str = (char *)&msg[idx+1];
393 return (idx+1);
394 }
395
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200396 msg[idx] =(unsigned char)i | PEER_ENC_2BYTES_MIN;
397 i = (i - PEER_ENC_2BYTES_MIN) >> PEER_ENC_2BYTES_MIN_BITS;
398 while (i >= PEER_ENC_STOP_BYTE) {
399 msg[++idx] = (unsigned char)i | PEER_ENC_STOP_BYTE;
400 i = (i - PEER_ENC_STOP_BYTE) >> PEER_ENC_STOP_BIT;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200401 }
402 msg[++idx] = (unsigned char)i;
403 *str = (char *)&msg[idx+1];
404 return (idx+1);
405}
406
407
408/* This function returns the decoded integer or 0
409 if decode failed
410 *str point on the beginning of the integer to decode
411 at the end of decoding *str point on the end of the
412 encoded integer or to null if end is reached */
Emeric Brun18928af2017-03-29 16:32:53 +0200413uint64_t intdecode(char **str, char *end)
414{
Emeric Brunb3971ab2015-05-12 18:49:09 +0200415 unsigned char *msg;
Emeric Brun18928af2017-03-29 16:32:53 +0200416 uint64_t i;
417 int shift;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200418
419 if (!*str)
420 return 0;
421
422 msg = (unsigned char *)*str;
Emeric Brun18928af2017-03-29 16:32:53 +0200423 if (msg >= (unsigned char *)end)
424 goto fail;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200425
Emeric Brun18928af2017-03-29 16:32:53 +0200426 i = *(msg++);
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200427 if (i >= PEER_ENC_2BYTES_MIN) {
428 shift = PEER_ENC_2BYTES_MIN_BITS;
Emeric Brun18928af2017-03-29 16:32:53 +0200429 do {
430 if (msg >= (unsigned char *)end)
431 goto fail;
432 i += (uint64_t)*msg << shift;
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200433 shift += PEER_ENC_STOP_BIT;
434 } while (*(msg++) >= PEER_ENC_STOP_BYTE);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200435 }
Frédéric Lécaillea8725ec2019-01-22 10:31:39 +0100436 *str = (char *)msg;
437 return i;
Emeric Brun18928af2017-03-29 16:32:53 +0200438
Frédéric Lécaillea8725ec2019-01-22 10:31:39 +0100439 fail:
440 *str = NULL;
441 return 0;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200442}
Emeric Brun2b920a12010-09-23 18:30:22 +0200443
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100444/*
445 * Build a "hello" peer protocol message.
446 * Return the number of written bytes written to build this messages if succeeded,
447 * 0 if not.
448 */
449static int peer_prepare_hellomsg(char *msg, size_t size, struct peer_prep_params *p)
450{
451 int min_ver, ret;
452 struct peer *peer;
453
454 peer = p->hello.peer;
455 min_ver = (peer->flags & PEER_F_DWNGRD) ? PEER_DWNGRD_MINOR_VER : PEER_MINOR_VER;
456 /* Prepare headers */
457 ret = snprintf(msg, size, PEER_SESSION_PROTO_NAME " %u.%u\n%s\n%s %d %d\n",
458 PEER_MAJOR_VER, min_ver, peer->id, localpeer, (int)getpid(), relative_pid);
459 if (ret >= size)
460 return 0;
461
462 return ret;
463}
464
465/*
466 * Build a "handshake succeeded" status message.
467 * Return the number of written bytes written to build this messages if succeeded,
468 * 0 if not.
469 */
470static int peer_prepare_status_successmsg(char *msg, size_t size, struct peer_prep_params *p)
471{
472 int ret;
473
474 ret = snprintf(msg, size, "%d\n", PEER_SESS_SC_SUCCESSCODE);
475 if (ret >= size)
476 return 0;
477
478 return ret;
479}
480
481/*
482 * Build an error status message.
483 * Return the number of written bytes written to build this messages if succeeded,
484 * 0 if not.
485 */
486static int peer_prepare_status_errormsg(char *msg, size_t size, struct peer_prep_params *p)
487{
488 int ret;
489 unsigned int st1;
490
491 st1 = p->error_status.st1;
492 ret = snprintf(msg, size, "%d\n", st1);
493 if (ret >= size)
494 return 0;
495
496 return ret;
497}
498
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200499/* Set the stick-table UPDATE message type byte at <msg_type> address,
500 * depending on <use_identifier> and <use_timed> boolean parameters.
501 * Always successful.
502 */
503static inline void peer_set_update_msg_type(char *msg_type, int use_identifier, int use_timed)
504{
505 if (use_timed) {
506 if (use_identifier)
507 *msg_type = PEER_MSG_STKT_UPDATE_TIMED;
508 else
509 *msg_type = PEER_MSG_STKT_INCUPDATE_TIMED;
510 }
511 else {
512 if (use_identifier)
513 *msg_type = PEER_MSG_STKT_UPDATE;
514 else
515 *msg_type = PEER_MSG_STKT_INCUPDATE;
516 }
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200517}
Emeric Brun2b920a12010-09-23 18:30:22 +0200518/*
Emeric Brunb3971ab2015-05-12 18:49:09 +0200519 * This prepare the data update message on the stick session <ts>, <st> is the considered
520 * stick table.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800521 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200522 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
523 * check size)
Emeric Brun2b920a12010-09-23 18:30:22 +0200524 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100525static int peer_prepare_updatemsg(char *msg, size_t size, struct peer_prep_params *p)
Emeric Brun2b920a12010-09-23 18:30:22 +0200526{
527 uint32_t netinteger;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200528 unsigned short datalen;
529 char *cursor, *datamsg;
Emeric Brun94900952015-06-11 18:25:54 +0200530 unsigned int data_type;
531 void *data_ptr;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100532 struct stksess *ts;
533 struct shared_table *st;
534 unsigned int updateid;
535 int use_identifier;
536 int use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200537 struct peer *peer;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100538
539 ts = p->updt.stksess;
540 st = p->updt.shared_table;
541 updateid = p->updt.updateid;
542 use_identifier = p->updt.use_identifier;
543 use_timed = p->updt.use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200544 peer = p->updt.peer;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200545
Frédéric Lécaille0e8db972019-05-24 14:34:34 +0200546 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200547
Emeric Brun2b920a12010-09-23 18:30:22 +0200548 /* construct message */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200549
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500550 /* check if we need to send the update identifier */
Emeric Brun819fc6f2017-06-13 19:37:32 +0200551 if (!st->last_pushed || updateid < st->last_pushed || ((updateid - st->last_pushed) != 1)) {
Emeric Bruna6a09982015-09-22 15:34:19 +0200552 use_identifier = 1;
Emeric Brun2b920a12010-09-23 18:30:22 +0200553 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200554
555 /* encode update identifier if needed */
556 if (use_identifier) {
Emeric Brun819fc6f2017-06-13 19:37:32 +0200557 netinteger = htonl(updateid);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200558 memcpy(cursor, &netinteger, sizeof(netinteger));
559 cursor += sizeof(netinteger);
Emeric Brun2b920a12010-09-23 18:30:22 +0200560 }
561
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200562 if (use_timed) {
563 netinteger = htonl(tick_remain(now_ms, ts->expire));
564 memcpy(cursor, &netinteger, sizeof(netinteger));
565 cursor += sizeof(netinteger);
566 }
567
Emeric Brunb3971ab2015-05-12 18:49:09 +0200568 /* encode the key */
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +0200569 if (st->table->type == SMP_T_STR) {
Emeric Brun2b920a12010-09-23 18:30:22 +0200570 int stlen = strlen((char *)ts->key.key);
571
Emeric Brunb3971ab2015-05-12 18:49:09 +0200572 intencode(stlen, &cursor);
573 memcpy(cursor, ts->key.key, stlen);
574 cursor += stlen;
Emeric Brun2b920a12010-09-23 18:30:22 +0200575 }
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +0200576 else if (st->table->type == SMP_T_SINT) {
Willy Tarreau6cde5d82020-02-25 09:41:22 +0100577 netinteger = htonl(read_u32(ts->key.key));
Emeric Brunb3971ab2015-05-12 18:49:09 +0200578 memcpy(cursor, &netinteger, sizeof(netinteger));
579 cursor += sizeof(netinteger);
Emeric Brun2b920a12010-09-23 18:30:22 +0200580 }
581 else {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200582 memcpy(cursor, ts->key.key, st->table->key_size);
583 cursor += st->table->key_size;
Emeric Brun2b920a12010-09-23 18:30:22 +0200584 }
585
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100586 HA_RWLOCK_RDLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200587 /* encode values */
Emeric Brun94900952015-06-11 18:25:54 +0200588 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200589
Emeric Brun94900952015-06-11 18:25:54 +0200590 data_ptr = stktable_data_ptr(st->table, ts, data_type);
591 if (data_ptr) {
592 switch (stktable_data_types[data_type].std_type) {
593 case STD_T_SINT: {
594 int data;
595
596 data = stktable_data_cast(data_ptr, std_t_sint);
597 intencode(data, &cursor);
598 break;
599 }
600 case STD_T_UINT: {
601 unsigned int data;
602
603 data = stktable_data_cast(data_ptr, std_t_uint);
604 intencode(data, &cursor);
605 break;
606 }
607 case STD_T_ULL: {
608 unsigned long long data;
609
610 data = stktable_data_cast(data_ptr, std_t_ull);
611 intencode(data, &cursor);
612 break;
613 }
614 case STD_T_FRQP: {
615 struct freq_ctr_period *frqp;
616
617 frqp = &stktable_data_cast(data_ptr, std_t_frqp);
618 intencode((unsigned int)(now_ms - frqp->curr_tick), &cursor);
619 intencode(frqp->curr_ctr, &cursor);
620 intencode(frqp->prev_ctr, &cursor);
621 break;
622 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200623 case STD_T_DICT: {
624 struct dict_entry *de;
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200625 struct ebpt_node *cached_de;
Willy Tarreau237f8ae2019-06-06 16:40:43 +0200626 struct dcache_tx_entry cde = { };
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200627 char *beg, *end;
628 size_t value_len, data_len;
629 struct dcache *dc;
630
631 de = stktable_data_cast(data_ptr, std_t_dict);
Frédéric Lécailleaf9990f2019-11-13 17:50:34 +0100632 if (!de) {
633 /* No entry */
634 intencode(0, &cursor);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200635 break;
Frédéric Lécailleaf9990f2019-11-13 17:50:34 +0100636 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200637
638 dc = peer->dcache;
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200639 cde.entry.key = de;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200640 cached_de = dcache_tx_insert(dc, &cde);
Frédéric Lécaillefd827932019-06-07 10:34:04 +0200641 if (cached_de == &cde.entry) {
642 if (cde.id + 1 >= PEER_ENC_2BYTES_MIN)
643 break;
644 /* Encode the length of the remaining data -> 1 */
645 intencode(1, &cursor);
646 /* Encode the cache entry ID */
647 intencode(cde.id + 1, &cursor);
648 }
649 else {
650 /* Leave enough room to encode the remaining data length. */
651 end = beg = cursor + PEER_MSG_ENC_LENGTH_MAXLEN;
652 /* Encode the dictionary entry key */
653 intencode(cde.id + 1, &end);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200654 /* Encode the length of the dictionary entry data */
Frédéric Lécaillefd827932019-06-07 10:34:04 +0200655 value_len = de->len;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200656 intencode(value_len, &end);
657 /* Copy the data */
658 memcpy(end, de->value.key, value_len);
659 end += value_len;
Frédéric Lécaillefd827932019-06-07 10:34:04 +0200660 /* Encode the length of the data */
661 data_len = end - beg;
662 intencode(data_len, &cursor);
663 memmove(cursor, beg, data_len);
664 cursor += data_len;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200665 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200666 break;
667 }
Emeric Brun94900952015-06-11 18:25:54 +0200668 }
669 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200670 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100671 HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200672
673 /* Compute datalen */
674 datalen = (cursor - datamsg);
675
676 /* prepare message header */
677 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200678 peer_set_update_msg_type(&msg[1], use_identifier, use_timed);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200679 cursor = &msg[2];
680 intencode(datalen, &cursor);
681
682 /* move data after header */
683 memmove(cursor, datamsg, datalen);
684
685 /* return header size + data_len */
686 return (cursor - msg) + datalen;
687}
688
689/*
690 * This prepare the switch table message to targeted share table <st>.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800691 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200692 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
693 * check size)
694 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100695static int peer_prepare_switchmsg(char *msg, size_t size, struct peer_prep_params *params)
Emeric Brunb3971ab2015-05-12 18:49:09 +0200696{
697 int len;
698 unsigned short datalen;
Willy Tarreau83061a82018-07-13 11:56:34 +0200699 struct buffer *chunk;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200700 char *cursor, *datamsg, *chunkp, *chunkq;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200701 uint64_t data = 0;
Emeric Brun94900952015-06-11 18:25:54 +0200702 unsigned int data_type;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100703 struct shared_table *st;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200704
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100705 st = params->swtch.shared_table;
Frédéric Lécaille39143342019-05-24 14:32:27 +0200706 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200707
708 /* Encode data */
709
710 /* encode local id */
711 intencode(st->local_id, &cursor);
712
713 /* encode table name */
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100714 len = strlen(st->table->nid);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200715 intencode(len, &cursor);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100716 memcpy(cursor, st->table->nid, len);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200717 cursor += len;
718
719 /* encode table type */
720
Emeric Brun530ba382020-06-02 11:17:42 +0200721 intencode(peer_net_key_type[st->table->type], &cursor);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200722
723 /* encode table key size */
724 intencode(st->table->key_size, &cursor);
725
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200726 chunk = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200727 chunkp = chunkq = chunk->area;
Emeric Brun94900952015-06-11 18:25:54 +0200728 /* encode available known data types in table */
729 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
730 if (st->table->data_ofs[data_type]) {
731 switch (stktable_data_types[data_type].std_type) {
732 case STD_T_SINT:
733 case STD_T_UINT:
734 case STD_T_ULL:
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200735 case STD_T_DICT:
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200736 data |= 1 << data_type;
737 break;
Emeric Brun94900952015-06-11 18:25:54 +0200738 case STD_T_FRQP:
739 data |= 1 << data_type;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200740 intencode(data_type, &chunkq);
741 intencode(st->table->data_arg[data_type].u, &chunkq);
Emeric Brun94900952015-06-11 18:25:54 +0200742 break;
743 }
744 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200745 }
746 intencode(data, &cursor);
747
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200748 /* Encode stick-table entries duration. */
749 intencode(st->table->expire, &cursor);
750
751 if (chunkq > chunkp) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200752 chunk->data = chunkq - chunkp;
753 memcpy(cursor, chunk->area, chunk->data);
754 cursor += chunk->data;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200755 }
756
Emeric Brunb3971ab2015-05-12 18:49:09 +0200757 /* Compute datalen */
758 datalen = (cursor - datamsg);
Emeric Brun2b920a12010-09-23 18:30:22 +0200759
Emeric Brunb3971ab2015-05-12 18:49:09 +0200760 /* prepare message header */
761 msg[0] = PEER_MSG_CLASS_STICKTABLE;
762 msg[1] = PEER_MSG_STKT_DEFINE;
763 cursor = &msg[2];
764 intencode(datalen, &cursor);
Emeric Brun2b920a12010-09-23 18:30:22 +0200765
Emeric Brunb3971ab2015-05-12 18:49:09 +0200766 /* move data after header */
767 memmove(cursor, datamsg, datalen);
768
769 /* return header size + data_len */
770 return (cursor - msg) + datalen;
Emeric Brun2b920a12010-09-23 18:30:22 +0200771}
772
Emeric Brunb3971ab2015-05-12 18:49:09 +0200773/*
774 * This prepare the acknowledge message on the stick session <ts>, <st> is the considered
775 * stick table.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800776 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200777 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
778 * check size)
779 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100780static int peer_prepare_ackmsg(char *msg, size_t size, struct peer_prep_params *p)
Emeric Brunb3971ab2015-05-12 18:49:09 +0200781{
782 unsigned short datalen;
783 char *cursor, *datamsg;
784 uint32_t netinteger;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100785 struct shared_table *st;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200786
Frédéric Lécaille39143342019-05-24 14:32:27 +0200787 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200788
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100789 st = p->ack.shared_table;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200790 intencode(st->remote_id, &cursor);
791 netinteger = htonl(st->last_get);
792 memcpy(cursor, &netinteger, sizeof(netinteger));
793 cursor += sizeof(netinteger);
794
795 /* Compute datalen */
796 datalen = (cursor - datamsg);
797
798 /* prepare message header */
799 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Emeric Brune1ab8082015-08-21 11:48:54 +0200800 msg[1] = PEER_MSG_STKT_ACK;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200801 cursor = &msg[2];
802 intencode(datalen, &cursor);
803
804 /* move data after header */
805 memmove(cursor, datamsg, datalen);
806
807 /* return header size + data_len */
808 return (cursor - msg) + datalen;
809}
Emeric Brun2b920a12010-09-23 18:30:22 +0200810
811/*
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200812 * Function to deinit connected peer
813 */
814void __peer_session_deinit(struct peer *peer)
815{
816 struct stream_interface *si;
817 struct stream *s;
818 struct peers *peers;
819
820 if (!peer->appctx)
821 return;
822
823 si = peer->appctx->owner;
824 if (!si)
825 return;
826
827 s = si_strm(si);
828 if (!s)
829 return;
830
831 peers = strm_fe(s)->parent;
832 if (!peers)
833 return;
834
835 if (peer->appctx->st0 == PEER_SESS_ST_WAITMSG)
836 HA_ATOMIC_SUB(&connected_peers, 1);
837
838 HA_ATOMIC_SUB(&active_peers, 1);
839
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200840 flush_dcache(peer);
841
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200842 /* Re-init current table pointers to force announcement on re-connect */
843 peer->remote_table = peer->last_local_table = NULL;
844 peer->appctx = NULL;
845 if (peer->flags & PEER_F_LEARN_ASSIGN) {
846 /* unassign current peer for learning */
847 peer->flags &= ~(PEER_F_LEARN_ASSIGN);
848 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
849
850 /* reschedule a resync */
851 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000));
852 }
853 /* reset teaching and learning flags to 0 */
854 peer->flags &= PEER_TEACH_RESET;
855 peer->flags &= PEER_LEARN_RESET;
856 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
857}
858
859/*
Emeric Brun2b920a12010-09-23 18:30:22 +0200860 * Callback to release a session with a peer
861 */
Willy Tarreau00a37f02015-04-13 12:05:19 +0200862static void peer_session_release(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +0200863{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200864 struct peer *peer = appctx->ctx.peers.ptr;
Emeric Brun2b920a12010-09-23 18:30:22 +0200865
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100866 /* appctx->ctx.peers.ptr is not a peer session */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100867 if (appctx->st0 < PEER_SESS_ST_SENDSUCCESS)
Emeric Brun2b920a12010-09-23 18:30:22 +0200868 return;
869
870 /* peer session identified */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200871 if (peer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100872 HA_SPIN_LOCK(PEER_LOCK, &peer->lock);
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200873 if (peer->appctx == appctx)
874 __peer_session_deinit(peer);
Frédéric Lécaillebaeb9192020-10-14 11:50:26 +0200875 peer->flags &= ~PEER_F_ALIVE;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100876 HA_SPIN_UNLOCK(PEER_LOCK, &peer->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +0200877 }
878}
879
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200880/* Retrieve the major and minor versions of peers protocol
881 * announced by a remote peer. <str> is a null-terminated
882 * string with the following format: "<maj_ver>.<min_ver>".
883 */
884static int peer_get_version(const char *str,
885 unsigned int *maj_ver, unsigned int *min_ver)
886{
887 unsigned int majv, minv;
888 const char *pos, *saved;
889 const char *end;
890
891 saved = pos = str;
892 end = str + strlen(str);
893
894 majv = read_uint(&pos, end);
895 if (saved == pos || *pos++ != '.')
896 return -1;
897
898 saved = pos;
899 minv = read_uint(&pos, end);
900 if (saved == pos || pos != end)
901 return -1;
902
903 *maj_ver = majv;
904 *min_ver = minv;
905
906 return 0;
907}
Emeric Brun2b920a12010-09-23 18:30:22 +0200908
909/*
Frédéric Lécaillece025572019-01-21 13:38:06 +0100910 * Parse a line terminated by an optional '\r' character, followed by a mandatory
911 * '\n' character.
912 * Returns 1 if succeeded or 0 if a '\n' character could not be found, and -1 if
913 * a line could not be read because the communication channel is closed.
914 */
915static inline int peer_getline(struct appctx *appctx)
916{
917 int n;
918 struct stream_interface *si = appctx->owner;
919
920 n = co_getline(si_oc(si), trash.area, trash.size);
921 if (!n)
922 return 0;
923
924 if (n < 0 || trash.area[n - 1] != '\n') {
925 appctx->st0 = PEER_SESS_ST_END;
926 return -1;
927 }
928
929 if (n > 1 && (trash.area[n - 2] == '\r'))
930 trash.area[n - 2] = 0;
931 else
932 trash.area[n - 1] = 0;
933
934 co_skip(si_oc(si), n);
935
936 return n;
937}
938
939/*
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100940 * Send a message after having called <peer_prepare_msg> to build it.
941 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
942 * Returns -1 if there was not enough room left to send the message,
943 * any other negative returned value must be considered as an error with an appcxt st0
944 * returned value equal to PEER_SESS_ST_END.
945 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100946static inline int peer_send_msg(struct appctx *appctx,
947 int (*peer_prepare_msg)(char *, size_t, struct peer_prep_params *),
948 struct peer_prep_params *params)
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100949{
950 int ret, msglen;
951 struct stream_interface *si = appctx->owner;
952
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100953 msglen = peer_prepare_msg(trash.area, trash.size, params);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100954 if (!msglen) {
955 /* internal error: message does not fit in trash */
956 appctx->st0 = PEER_SESS_ST_END;
957 return 0;
958 }
959
960 /* message to buffer */
961 ret = ci_putblk(si_ic(si), trash.area, msglen);
962 if (ret <= 0) {
963 if (ret == -1) {
964 /* No more write possible */
965 si_rx_room_blk(si);
966 return -1;
967 }
968 appctx->st0 = PEER_SESS_ST_END;
969 }
970
971 return ret;
972}
973
974/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100975 * Send a hello message.
976 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
977 * Returns -1 if there was not enough room left to send the message,
978 * any other negative returned value must be considered as an error with an appcxt st0
979 * returned value equal to PEER_SESS_ST_END.
980 */
981static inline int peer_send_hellomsg(struct appctx *appctx, struct peer *peer)
982{
983 struct peer_prep_params p = {
984 .hello.peer = peer,
985 };
986
987 return peer_send_msg(appctx, peer_prepare_hellomsg, &p);
988}
989
990/*
991 * Send a success peer handshake status message.
992 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
993 * Returns -1 if there was not enough room left to send the message,
994 * any other negative returned value must be considered as an error with an appcxt st0
995 * returned value equal to PEER_SESS_ST_END.
996 */
997static inline int peer_send_status_successmsg(struct appctx *appctx)
998{
999 return peer_send_msg(appctx, peer_prepare_status_successmsg, NULL);
1000}
1001
1002/*
1003 * Send a peer handshake status error message.
1004 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1005 * Returns -1 if there was not enough room left to send the message,
1006 * any other negative returned value must be considered as an error with an appcxt st0
1007 * returned value equal to PEER_SESS_ST_END.
1008 */
1009static inline int peer_send_status_errormsg(struct appctx *appctx)
1010{
1011 struct peer_prep_params p = {
1012 .error_status.st1 = appctx->st1,
1013 };
1014
1015 return peer_send_msg(appctx, peer_prepare_status_errormsg, &p);
1016}
1017
1018/*
Frédéric Lécailleec44ea82019-01-22 15:54:53 +01001019 * Send a stick-table switch message.
1020 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1021 * Returns -1 if there was not enough room left to send the message,
1022 * any other negative returned value must be considered as an error with an appcxt st0
1023 * returned value equal to PEER_SESS_ST_END.
1024 */
1025static inline int peer_send_switchmsg(struct shared_table *st, struct appctx *appctx)
1026{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +01001027 struct peer_prep_params p = {
1028 .swtch.shared_table = st,
1029 };
1030
1031 return peer_send_msg(appctx, peer_prepare_switchmsg, &p);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +01001032}
1033
1034/*
1035 * Send a stick-table update acknowledgement message.
1036 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1037 * Returns -1 if there was not enough room left to send the message,
1038 * any other negative returned value must be considered as an error with an appcxt st0
1039 * returned value equal to PEER_SESS_ST_END.
1040 */
1041static inline int peer_send_ackmsg(struct shared_table *st, struct appctx *appctx)
1042{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +01001043 struct peer_prep_params p = {
1044 .ack.shared_table = st,
1045 };
1046
1047 return peer_send_msg(appctx, peer_prepare_ackmsg, &p);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +01001048}
1049
1050/*
Frédéric Lécaille87f554c2019-01-22 17:26:50 +01001051 * Send a stick-table update message.
1052 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1053 * Returns -1 if there was not enough room left to send the message,
1054 * any other negative returned value must be considered as an error with an appcxt st0
1055 * returned value equal to PEER_SESS_ST_END.
1056 */
1057static inline int peer_send_updatemsg(struct shared_table *st, struct appctx *appctx, struct stksess *ts,
1058 unsigned int updateid, int use_identifier, int use_timed)
1059{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +01001060 struct peer_prep_params p = {
Willy Tarreaua898f0c2020-07-03 19:09:29 +02001061 .updt = {
1062 .stksess = ts,
1063 .shared_table = st,
1064 .updateid = updateid,
1065 .use_identifier = use_identifier,
1066 .use_timed = use_timed,
1067 .peer = appctx->ctx.peers.ptr,
1068 },
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +01001069 };
1070
1071 return peer_send_msg(appctx, peer_prepare_updatemsg, &p);
Frédéric Lécaille87f554c2019-01-22 17:26:50 +01001072}
1073
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001074/*
1075 * Build a peer protocol control class message.
1076 * Returns the number of written bytes used to build the message if succeeded,
1077 * 0 if not.
1078 */
1079static int peer_prepare_control_msg(char *msg, size_t size, struct peer_prep_params *p)
1080{
1081 if (size < sizeof p->control.head)
1082 return 0;
1083
1084 msg[0] = p->control.head[0];
1085 msg[1] = p->control.head[1];
1086
1087 return 2;
1088}
Frédéric Lécaille6a8303d2019-01-22 22:25:17 +01001089
1090/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001091 * Send a stick-table synchronization request message.
1092 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1093 * Returns -1 if there was not enough room left to send the message,
1094 * any other negative returned value must be considered as an error with an appctx st0
1095 * returned value equal to PEER_SESS_ST_END.
1096 */
1097static inline int peer_send_resync_reqmsg(struct appctx *appctx)
1098{
1099 struct peer_prep_params p = {
1100 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCREQ, },
1101 };
1102
1103 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1104}
1105
1106/*
1107 * Send a stick-table synchronization confirmation message.
1108 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1109 * Returns -1 if there was not enough room left to send the message,
1110 * any other negative returned value must be considered as an error with an appctx st0
1111 * returned value equal to PEER_SESS_ST_END.
1112 */
1113static inline int peer_send_resync_confirmsg(struct appctx *appctx)
1114{
1115 struct peer_prep_params p = {
1116 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCCONFIRM, },
1117 };
1118
1119 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1120}
1121
1122/*
1123 * Send a stick-table synchronization finished message.
1124 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1125 * Returns -1 if there was not enough room left to send the message,
1126 * any other negative returned value must be considered as an error with an appctx st0
1127 * returned value equal to PEER_SESS_ST_END.
1128 */
Emeric Brun70de43b2020-03-16 10:51:01 +01001129static inline int peer_send_resync_finishedmsg(struct appctx *appctx, struct peers *peers)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001130{
1131 struct peer_prep_params p = {
1132 .control.head = { PEER_MSG_CLASS_CONTROL, },
1133 };
1134
Emeric Brun70de43b2020-03-16 10:51:01 +01001135 p.control.head[1] = (peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FINISHED ?
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001136 PEER_MSG_CTRL_RESYNCFINISHED : PEER_MSG_CTRL_RESYNCPARTIAL;
1137
1138 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1139}
1140
1141/*
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001142 * Send a heartbeat message.
1143 * Return 0 if the message could not be built modifying the appctx st0 to PEER_SESS_ST_END value.
1144 * Returns -1 if there was not enough room left to send the message,
1145 * any other negative returned value must be considered as an error with an appctx st0
1146 * returned value equal to PEER_SESS_ST_END.
1147 */
1148static inline int peer_send_heartbeatmsg(struct appctx *appctx)
1149{
1150 struct peer_prep_params p = {
1151 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_HEARTBEAT, },
1152 };
1153
1154 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1155}
1156
1157/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001158 * Build a peer protocol error class message.
1159 * Returns the number of written bytes used to build the message if succeeded,
1160 * 0 if not.
1161 */
1162static int peer_prepare_error_msg(char *msg, size_t size, struct peer_prep_params *p)
1163{
1164 if (size < sizeof p->error.head)
1165 return 0;
1166
1167 msg[0] = p->error.head[0];
1168 msg[1] = p->error.head[1];
1169
1170 return 2;
1171}
1172
1173/*
1174 * Send a "size limit reached" error message.
1175 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1176 * Returns -1 if there was not enough room left to send the message,
1177 * any other negative returned value must be considered as an error with an appctx st0
1178 * returned value equal to PEER_SESS_ST_END.
1179 */
1180static inline int peer_send_error_size_limitmsg(struct appctx *appctx)
1181{
1182 struct peer_prep_params p = {
1183 .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_SIZELIMIT, },
1184 };
1185
1186 return peer_send_msg(appctx, peer_prepare_error_msg, &p);
1187}
1188
1189/*
1190 * Send a "peer protocol" error message.
1191 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1192 * Returns -1 if there was not enough room left to send the message,
1193 * any other negative returned value must be considered as an error with an appctx st0
1194 * returned value equal to PEER_SESS_ST_END.
1195 */
1196static inline int peer_send_error_protomsg(struct appctx *appctx)
1197{
1198 struct peer_prep_params p = {
1199 .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_PROTOCOL, },
1200 };
1201
1202 return peer_send_msg(appctx, peer_prepare_error_msg, &p);
1203}
1204
1205/*
Frédéric Lécaille6a8303d2019-01-22 22:25:17 +01001206 * Function used to lookup for recent stick-table updates associated with
1207 * <st> shared stick-table when a lesson must be taught a peer (PEER_F_LEARN_ASSIGN flag set).
1208 */
1209static inline struct stksess *peer_teach_process_stksess_lookup(struct shared_table *st)
1210{
1211 struct eb32_node *eb;
1212
1213 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1214 if (!eb) {
1215 eb = eb32_first(&st->table->updates);
1216 if (!eb || ((int)(eb->key - st->last_pushed) <= 0)) {
1217 st->table->commitupdate = st->last_pushed = st->table->localupdate;
1218 return NULL;
1219 }
1220 }
1221
1222 if ((int)(eb->key - st->table->localupdate) > 0) {
1223 st->table->commitupdate = st->last_pushed = st->table->localupdate;
1224 return NULL;
1225 }
1226
1227 return eb32_entry(eb, struct stksess, upd);
1228}
1229
1230/*
1231 * Function used to lookup for recent stick-table updates associated with
1232 * <st> shared stick-table during teach state 1 step.
1233 */
1234static inline struct stksess *peer_teach_stage1_stksess_lookup(struct shared_table *st)
1235{
1236 struct eb32_node *eb;
1237
1238 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1239 if (!eb) {
1240 st->flags |= SHTABLE_F_TEACH_STAGE1;
1241 eb = eb32_first(&st->table->updates);
1242 if (eb)
1243 st->last_pushed = eb->key - 1;
1244 return NULL;
1245 }
1246
1247 return eb32_entry(eb, struct stksess, upd);
1248}
1249
1250/*
1251 * Function used to lookup for recent stick-table updates associated with
1252 * <st> shared stick-table during teach state 2 step.
1253 */
1254static inline struct stksess *peer_teach_stage2_stksess_lookup(struct shared_table *st)
1255{
1256 struct eb32_node *eb;
1257
1258 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1259 if (!eb || eb->key > st->teaching_origin) {
1260 st->flags |= SHTABLE_F_TEACH_STAGE2;
1261 return NULL;
1262 }
1263
1264 return eb32_entry(eb, struct stksess, upd);
1265}
1266
1267/*
1268 * Generic function to emit update messages for <st> stick-table when a lesson must
1269 * be taught to the peer <p>.
1270 * <locked> must be set to 1 if the shared table <st> is already locked when entering
1271 * this function, 0 if not.
1272 *
1273 * This function temporary unlock/lock <st> when it sends stick-table updates or
1274 * when decrementing its refcount in case of any error when it sends this updates.
1275 *
1276 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1277 * Returns -1 if there was not enough room left to send the message,
1278 * any other negative returned value must be considered as an error with an appcxt st0
1279 * returned value equal to PEER_SESS_ST_END.
1280 * If it returns 0 or -1, this function leave <st> locked if already locked when entering this function
1281 * unlocked if not already locked when entering this function.
1282 */
1283static inline int peer_send_teachmsgs(struct appctx *appctx, struct peer *p,
1284 struct stksess *(*peer_stksess_lookup)(struct shared_table *),
1285 struct shared_table *st, int locked)
1286{
1287 int ret, new_pushed, use_timed;
1288
1289 ret = 1;
1290 use_timed = 0;
1291 if (st != p->last_local_table) {
1292 ret = peer_send_switchmsg(st, appctx);
1293 if (ret <= 0)
1294 return ret;
1295
1296 p->last_local_table = st;
1297 }
1298
1299 if (peer_stksess_lookup != peer_teach_process_stksess_lookup)
1300 use_timed = !(p->flags & PEER_F_DWNGRD);
1301
1302 /* We force new pushed to 1 to force identifier in update message */
1303 new_pushed = 1;
1304
1305 if (!locked)
1306 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1307
1308 while (1) {
1309 struct stksess *ts;
1310 unsigned updateid;
1311
1312 /* push local updates */
1313 ts = peer_stksess_lookup(st);
1314 if (!ts)
1315 break;
1316
1317 updateid = ts->upd.key;
1318 ts->ref_cnt++;
1319 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1320
1321 ret = peer_send_updatemsg(st, appctx, ts, updateid, new_pushed, use_timed);
1322 if (ret <= 0) {
1323 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1324 ts->ref_cnt--;
1325 if (!locked)
1326 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1327 return ret;
1328 }
1329
1330 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1331 ts->ref_cnt--;
1332 st->last_pushed = updateid;
1333
1334 if (peer_stksess_lookup == peer_teach_process_stksess_lookup &&
1335 (int)(st->last_pushed - st->table->commitupdate) > 0)
1336 st->table->commitupdate = st->last_pushed;
1337
1338 /* identifier may not needed in next update message */
1339 new_pushed = 0;
1340 }
1341
1342 out:
1343 if (!locked)
1344 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1345 return 1;
1346}
1347
1348/*
1349 * Function to emit update messages for <st> stick-table when a lesson must
1350 * be taught to the peer <p> (PEER_F_LEARN_ASSIGN flag set).
1351 *
1352 * Note that <st> shared stick-table is locked when calling this function.
1353 *
1354 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1355 * Returns -1 if there was not enough room left to send the message,
1356 * any other negative returned value must be considered as an error with an appcxt st0
1357 * returned value equal to PEER_SESS_ST_END.
1358 */
1359static inline int peer_send_teach_process_msgs(struct appctx *appctx, struct peer *p,
1360 struct shared_table *st)
1361{
1362 return peer_send_teachmsgs(appctx, p, peer_teach_process_stksess_lookup, st, 1);
1363}
1364
1365/*
1366 * Function to emit update messages for <st> stick-table when a lesson must
1367 * be taught to the peer <p> during teach state 1 step.
1368 *
1369 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1370 * Returns -1 if there was not enough room left to send the message,
1371 * any other negative returned value must be considered as an error with an appcxt st0
1372 * returned value equal to PEER_SESS_ST_END.
1373 */
1374static inline int peer_send_teach_stage1_msgs(struct appctx *appctx, struct peer *p,
1375 struct shared_table *st)
1376{
1377 return peer_send_teachmsgs(appctx, p, peer_teach_stage1_stksess_lookup, st, 0);
1378}
1379
1380/*
1381 * Function to emit update messages for <st> stick-table when a lesson must
1382 * be taught to the peer <p> during teach state 1 step.
1383 *
1384 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1385 * Returns -1 if there was not enough room left to send the message,
1386 * any other negative returned value must be considered as an error with an appcxt st0
1387 * returned value equal to PEER_SESS_ST_END.
1388 */
1389static inline int peer_send_teach_stage2_msgs(struct appctx *appctx, struct peer *p,
1390 struct shared_table *st)
1391{
1392 return peer_send_teachmsgs(appctx, p, peer_teach_stage2_stksess_lookup, st, 0);
1393}
1394
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001395
1396/*
1397 * Function used to parse a stick-table update message after it has been received
1398 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1399 * receipt buffer with <msg_end> being position of the end of the stick-table message.
1400 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1401 * was encountered.
1402 * <exp> must be set if the stick-table entry expires.
1403 * <updt> must be set for PEER_MSG_STKT_UPDATE or PEER_MSG_STKT_UPDATE_TIMED stick-table
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001404 * messages, in this case the stick-table update message is received with a stick-table
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001405 * update ID.
1406 * <totl> is the length of the stick-table update message computed upon receipt.
1407 */
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001408static int peer_treat_updatemsg(struct appctx *appctx, struct peer *p, int updt, int exp,
1409 char **msg_cur, char *msg_end, int msg_len, int totl)
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001410{
1411 struct stream_interface *si = appctx->owner;
1412 struct shared_table *st = p->remote_table;
1413 struct stksess *ts, *newts;
1414 uint32_t update;
1415 int expire;
1416 unsigned int data_type;
1417 void *data_ptr;
1418
Frédéric Lécailled8659352020-11-10 16:18:03 +01001419 TRACE_ENTER(PEERS_EV_UPDTMSG, NULL, p);
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001420 /* Here we have data message */
1421 if (!st)
1422 goto ignore_msg;
1423
1424 expire = MS_TO_TICKS(st->table->expire);
1425
1426 if (updt) {
Frédéric Lécailled8659352020-11-10 16:18:03 +01001427 if (msg_len < sizeof(update)) {
1428 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001429 goto malformed_exit;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001430 }
Willy Tarreau1e82a142019-01-29 11:08:06 +01001431
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001432 memcpy(&update, *msg_cur, sizeof(update));
1433 *msg_cur += sizeof(update);
1434 st->last_get = htonl(update);
1435 }
1436 else {
1437 st->last_get++;
1438 }
1439
1440 if (exp) {
1441 size_t expire_sz = sizeof expire;
1442
Frédéric Lécailled8659352020-11-10 16:18:03 +01001443 if (*msg_cur + expire_sz > msg_end) {
1444 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1445 NULL, p, *msg_cur);
1446 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1447 NULL, p, msg_end, &expire_sz);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001448 goto malformed_exit;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001449 }
Willy Tarreau1e82a142019-01-29 11:08:06 +01001450
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001451 memcpy(&expire, *msg_cur, expire_sz);
1452 *msg_cur += expire_sz;
1453 expire = ntohl(expire);
1454 }
1455
1456 newts = stksess_new(st->table, NULL);
1457 if (!newts)
1458 goto ignore_msg;
1459
1460 if (st->table->type == SMP_T_STR) {
1461 unsigned int to_read, to_store;
1462
1463 to_read = intdecode(msg_cur, msg_end);
Frédéric Lécailled8659352020-11-10 16:18:03 +01001464 if (!*msg_cur) {
1465 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001466 goto malformed_free_newts;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001467 }
Willy Tarreau1e82a142019-01-29 11:08:06 +01001468
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001469 to_store = MIN(to_read, st->table->key_size - 1);
Frédéric Lécailled8659352020-11-10 16:18:03 +01001470 if (*msg_cur + to_store > msg_end) {
1471 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1472 NULL, p, *msg_cur);
1473 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1474 NULL, p, msg_end, &to_store);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001475 goto malformed_free_newts;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001476 }
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001477
1478 memcpy(newts->key.key, *msg_cur, to_store);
1479 newts->key.key[to_store] = 0;
1480 *msg_cur += to_read;
1481 }
1482 else if (st->table->type == SMP_T_SINT) {
1483 unsigned int netinteger;
1484
Frédéric Lécailled8659352020-11-10 16:18:03 +01001485 if (*msg_cur + sizeof(netinteger) > msg_end) {
1486 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1487 NULL, p, *msg_cur);
1488 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1489 NULL, p, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001490 goto malformed_free_newts;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001491 }
Willy Tarreau1e82a142019-01-29 11:08:06 +01001492
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001493 memcpy(&netinteger, *msg_cur, sizeof(netinteger));
1494 netinteger = ntohl(netinteger);
1495 memcpy(newts->key.key, &netinteger, sizeof(netinteger));
1496 *msg_cur += sizeof(netinteger);
1497 }
1498 else {
Frédéric Lécailled8659352020-11-10 16:18:03 +01001499 if (*msg_cur + st->table->key_size > msg_end) {
1500 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1501 NULL, p, *msg_cur);
1502 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1503 NULL, p, msg_end, &st->table->key_size);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001504 goto malformed_free_newts;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001505 }
Willy Tarreau1e82a142019-01-29 11:08:06 +01001506
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001507 memcpy(newts->key.key, *msg_cur, st->table->key_size);
1508 *msg_cur += st->table->key_size;
1509 }
1510
1511 /* lookup for existing entry */
1512 ts = stktable_set_entry(st->table, newts);
1513 if (ts != newts) {
1514 stksess_free(st->table, newts);
1515 newts = NULL;
1516 }
1517
1518 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
1519
1520 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001521 uint64_t decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001522
1523 if (!((1 << data_type) & st->remote_data))
1524 continue;
1525
Willy Tarreau1e82a142019-01-29 11:08:06 +01001526 decoded_int = intdecode(msg_cur, msg_end);
Frédéric Lécailled8659352020-11-10 16:18:03 +01001527 if (!*msg_cur) {
1528 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001529 goto malformed_unlock;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001530 }
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001531
Willy Tarreau1e82a142019-01-29 11:08:06 +01001532 switch (stktable_data_types[data_type].std_type) {
1533 case STD_T_SINT:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001534 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1535 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001536 stktable_data_cast(data_ptr, std_t_sint) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001537 break;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001538
Willy Tarreau1e82a142019-01-29 11:08:06 +01001539 case STD_T_UINT:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001540 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1541 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001542 stktable_data_cast(data_ptr, std_t_uint) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001543 break;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001544
Willy Tarreau1e82a142019-01-29 11:08:06 +01001545 case STD_T_ULL:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001546 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1547 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001548 stktable_data_cast(data_ptr, std_t_ull) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001549 break;
Willy Tarreau1e82a142019-01-29 11:08:06 +01001550
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001551 case STD_T_FRQP: {
1552 struct freq_ctr_period data;
1553
1554 /* First bit is reserved for the freq_ctr_period lock
1555 Note: here we're still protected by the stksess lock
1556 so we don't need to update the update the freq_ctr_period
1557 using its internal lock */
1558
Willy Tarreau1e82a142019-01-29 11:08:06 +01001559 data.curr_tick = tick_add(now_ms, -decoded_int) & ~0x1;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001560 data.curr_ctr = intdecode(msg_cur, msg_end);
Frédéric Lécailled8659352020-11-10 16:18:03 +01001561 if (!*msg_cur) {
1562 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001563 goto malformed_unlock;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001564 }
Willy Tarreau1e82a142019-01-29 11:08:06 +01001565
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001566 data.prev_ctr = intdecode(msg_cur, msg_end);
Frédéric Lécailled8659352020-11-10 16:18:03 +01001567 if (!*msg_cur) {
1568 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001569 goto malformed_unlock;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001570 }
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001571
1572 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1573 if (data_ptr)
1574 stktable_data_cast(data_ptr, std_t_frqp) = data;
1575 break;
1576 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001577 case STD_T_DICT: {
1578 struct buffer *chunk;
1579 size_t data_len, value_len;
1580 unsigned int id;
1581 struct dict_entry *de;
1582 struct dcache *dc;
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001583 char *end;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001584
Frédéric Lécailleaf9990f2019-11-13 17:50:34 +01001585 if (!decoded_int) {
1586 /* No entry. */
1587 break;
1588 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001589 data_len = decoded_int;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001590 if (*msg_cur + data_len > msg_end) {
1591 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1592 NULL, p, *msg_cur);
1593 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1594 NULL, p, msg_end, &data_len);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001595 goto malformed_unlock;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001596 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001597
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001598 /* Compute the end of the current data, <msg_end> being at the end of
1599 * the entire message.
1600 */
1601 end = *msg_cur + data_len;
1602 id = intdecode(msg_cur, end);
Frédéric Lécailled8659352020-11-10 16:18:03 +01001603 if (!*msg_cur || !id) {
1604 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1605 NULL, p, *msg_cur, &id);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001606 goto malformed_unlock;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001607 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001608
1609 dc = p->dcache;
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001610 if (*msg_cur == end) {
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001611 /* Dictionary entry key without value. */
Frédéric Lécaillef9e51be2020-11-12 19:53:11 +01001612 if (id > dc->max_entries) {
1613 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1614 NULL, p, NULL, &id);
1615 goto malformed_unlock;
1616 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001617 /* IDs sent over the network are numbered from 1. */
1618 de = dc->rx[id - 1].de;
1619 }
1620 else {
1621 chunk = get_trash_chunk();
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001622 value_len = intdecode(msg_cur, end);
1623 if (!*msg_cur || *msg_cur + value_len > end ||
Frédéric Lécailled8659352020-11-10 16:18:03 +01001624 unlikely(value_len + 1 >= chunk->size)) {
1625 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1626 NULL, p, *msg_cur, &value_len);
1627 TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG,
1628 NULL, p, end, &chunk->size);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001629 goto malformed_unlock;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001630 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001631
1632 chunk_memcpy(chunk, *msg_cur, value_len);
1633 chunk->area[chunk->data] = '\0';
Frédéric Lécaille56aec0d2019-06-06 14:14:15 +02001634 *msg_cur += value_len;
1635
Thayne McCombs92149f92020-11-20 01:28:26 -07001636 de = dict_insert(&server_key_dict, chunk->area);
1637 dict_entry_unref(&server_key_dict, dc->rx[id - 1].de);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001638 dc->rx[id - 1].de = de;
1639 }
1640 if (de) {
1641 data_ptr = stktable_data_ptr(st->table, ts, data_type);
Thayne McCombs92149f92020-11-20 01:28:26 -07001642 if (data_ptr) {
1643 HA_ATOMIC_ADD(&de->refcount, 1);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001644 stktable_data_cast(data_ptr, std_t_dict) = de;
Thayne McCombs92149f92020-11-20 01:28:26 -07001645 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001646 }
1647 break;
1648 }
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001649 }
1650 }
1651 /* Force new expiration */
1652 ts->expire = tick_add(now_ms, expire);
1653
1654 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1655 stktable_touch_remote(st->table, ts, 1);
Frédéric Lécailled8659352020-11-10 16:18:03 +01001656 TRACE_LEAVE(PEERS_EV_UPDTMSG, NULL, p);
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001657 return 1;
1658
1659 ignore_msg:
1660 /* skip consumed message */
1661 co_skip(si_oc(si), totl);
Frédéric Lécailled8659352020-11-10 16:18:03 +01001662 TRACE_DEVEL("leaving in error", PEERS_EV_UPDTMSG);
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001663 return 0;
Willy Tarreau1e82a142019-01-29 11:08:06 +01001664
1665 malformed_unlock:
1666 /* malformed message */
1667 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1668 stktable_touch_remote(st->table, ts, 1);
1669 appctx->st0 = PEER_SESS_ST_ERRPROTO;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001670 TRACE_DEVEL("leaving in error", PEERS_EV_UPDTMSG);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001671 return 0;
1672
1673 malformed_free_newts:
1674 /* malformed message */
1675 stksess_free(st->table, newts);
1676 malformed_exit:
1677 appctx->st0 = PEER_SESS_ST_ERRPROTO;
Frédéric Lécailled8659352020-11-10 16:18:03 +01001678 TRACE_DEVEL("leaving in error", PEERS_EV_UPDTMSG);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001679 return 0;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001680}
1681
Frédéric Lécaille87f554c2019-01-22 17:26:50 +01001682/*
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001683 * Function used to parse a stick-table update acknowledgement message after it
1684 * has been received by <p> peer with <msg_cur> as address of the pointer to the position in the
1685 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1686 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1687 * was encountered.
1688 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1689 */
1690static inline int peer_treat_ackmsg(struct appctx *appctx, struct peer *p,
1691 char **msg_cur, char *msg_end)
1692{
1693 /* ack message */
1694 uint32_t table_id ;
1695 uint32_t update;
1696 struct shared_table *st;
1697
1698 table_id = intdecode(msg_cur, msg_end);
1699 if (!*msg_cur || (*msg_cur + sizeof(update) > msg_end)) {
1700 /* malformed message */
1701 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1702 return 0;
1703 }
1704
1705 memcpy(&update, *msg_cur, sizeof(update));
1706 update = ntohl(update);
1707
1708 for (st = p->tables; st; st = st->next) {
1709 if (st->local_id == table_id) {
1710 st->update = update;
1711 break;
1712 }
1713 }
1714
1715 return 1;
1716}
1717
1718/*
1719 * Function used to parse a stick-table switch message after it has been received
1720 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1721 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1722 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1723 * was encountered.
1724 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1725 */
1726static inline int peer_treat_switchmsg(struct appctx *appctx, struct peer *p,
1727 char **msg_cur, char *msg_end)
1728{
1729 struct shared_table *st;
1730 int table_id;
1731
1732 table_id = intdecode(msg_cur, msg_end);
1733 if (!*msg_cur) {
1734 /* malformed message */
1735 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1736 return 0;
1737 }
1738
1739 p->remote_table = NULL;
1740 for (st = p->tables; st; st = st->next) {
1741 if (st->remote_id == table_id) {
1742 p->remote_table = st;
1743 break;
1744 }
1745 }
1746
1747 return 1;
1748}
1749
1750/*
1751 * Function used to parse a stick-table definition message after it has been received
1752 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1753 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1754 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1755 * was encountered.
1756 * <totl> is the length of the stick-table update message computed upon receipt.
1757 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1758 */
1759static inline int peer_treat_definemsg(struct appctx *appctx, struct peer *p,
1760 char **msg_cur, char *msg_end, int totl)
1761{
1762 struct stream_interface *si = appctx->owner;
1763 int table_id_len;
1764 struct shared_table *st;
1765 int table_type;
1766 int table_keylen;
1767 int table_id;
1768 uint64_t table_data;
1769
1770 table_id = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001771 if (!*msg_cur)
1772 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001773
1774 table_id_len = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001775 if (!*msg_cur)
1776 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001777
1778 p->remote_table = NULL;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001779 if (!table_id_len || (*msg_cur + table_id_len) >= msg_end)
1780 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001781
1782 for (st = p->tables; st; st = st->next) {
1783 /* Reset IDs */
1784 if (st->remote_id == table_id)
1785 st->remote_id = 0;
1786
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001787 if (!p->remote_table && (table_id_len == strlen(st->table->nid)) &&
1788 (memcmp(st->table->nid, *msg_cur, table_id_len) == 0))
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001789 p->remote_table = st;
1790 }
1791
1792 if (!p->remote_table)
1793 goto ignore_msg;
1794
1795 *msg_cur += table_id_len;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001796 if (*msg_cur >= msg_end)
1797 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001798
1799 table_type = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001800 if (!*msg_cur)
1801 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001802
1803 table_keylen = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001804 if (!*msg_cur)
1805 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001806
1807 table_data = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001808 if (!*msg_cur)
1809 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001810
Emeric Brun530ba382020-06-02 11:17:42 +02001811 if (p->remote_table->table->type != peer_int_key_type[table_type]
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001812 || p->remote_table->table->key_size != table_keylen) {
1813 p->remote_table = NULL;
1814 goto ignore_msg;
1815 }
1816
1817 p->remote_table->remote_data = table_data;
1818 p->remote_table->remote_id = table_id;
1819 return 1;
1820
1821 ignore_msg:
1822 co_skip(si_oc(si), totl);
1823 return 0;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001824
1825 malformed_exit:
1826 /* malformed message */
1827 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1828 return 0;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001829}
1830
1831/*
Willy Tarreau1dfd4f12020-11-13 14:10:20 +01001832 * Receive a stick-table message or pre-parse any other message.
1833 * The message's header will be sent into <msg_head> which must be at least
1834 * <msg_head_sz> bytes long (at least 7 to store 32-bit variable lengths).
1835 * The first two bytes are always read, and the rest is only read if the
1836 * first bytes indicate a stick-table message. If the message is a stick-table
1837 * message, the varint is decoded and the equivalent number of bytes will be
1838 * copied into the trash at trash.area. <totl> is incremented by the number of
1839 * bytes read EVEN IN CASE OF INCOMPLETE MESSAGES.
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001840 * Returns 1 if there was no error, if not, returns 0 if not enough data were available,
1841 * -1 if there was an error updating the appctx state st0 accordingly.
1842 */
1843static inline int peer_recv_msg(struct appctx *appctx, char *msg_head, size_t msg_head_sz,
1844 uint32_t *msg_len, int *totl)
1845{
1846 int reql;
1847 struct stream_interface *si = appctx->owner;
Willy Tarreau1dfd4f12020-11-13 14:10:20 +01001848 char *cur;
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001849
1850 reql = co_getblk(si_oc(si), msg_head, 2 * sizeof(char), *totl);
1851 if (reql <= 0) /* closed or EOL not found */
1852 goto incomplete;
1853
1854 *totl += reql;
1855
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +02001856 if (!(msg_head[1] & PEER_MSG_STKT_BIT_MASK))
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001857 return 1;
1858
Willy Tarreau1dfd4f12020-11-13 14:10:20 +01001859 /* This is a stick-table message, let's go on */
1860
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001861 /* Read and Decode message length */
Willy Tarreau1dfd4f12020-11-13 14:10:20 +01001862 msg_head += *totl;
1863 msg_head_sz -= *totl;
1864 reql = co_data(si_oc(si)) - *totl;
1865 if (reql > msg_head_sz)
1866 reql = msg_head_sz;
1867
1868 reql = co_getblk(si_oc(si), msg_head, reql, *totl);
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001869 if (reql <= 0) /* closed */
1870 goto incomplete;
1871
Willy Tarreau1dfd4f12020-11-13 14:10:20 +01001872 cur = msg_head;
1873 *msg_len = intdecode(&cur, cur + reql);
1874 if (!cur) {
1875 /* the number is truncated, did we read enough ? */
1876 if (reql < msg_head_sz)
1877 goto incomplete;
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001878
Willy Tarreau1dfd4f12020-11-13 14:10:20 +01001879 /* malformed message */
1880 TRACE_PROTO("malformed message: too large length encoding", PEERS_EV_UPDTMSG);
1881 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1882 return -1;
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001883 }
Willy Tarreau1dfd4f12020-11-13 14:10:20 +01001884 *totl += cur - msg_head;
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001885
1886 /* Read message content */
1887 if (*msg_len) {
1888 if (*msg_len > trash.size) {
1889 /* Status code is not success, abort */
1890 appctx->st0 = PEER_SESS_ST_ERRSIZE;
1891 return -1;
1892 }
1893
1894 reql = co_getblk(si_oc(si), trash.area, *msg_len, *totl);
1895 if (reql <= 0) /* closed */
1896 goto incomplete;
1897 *totl += reql;
1898 }
1899
1900 return 1;
1901
1902 incomplete:
Willy Tarreau345ebcf2020-11-26 17:06:04 +01001903 if (reql < 0 || (si_oc(si)->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
1904 /* there was an error or the message was truncated */
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001905 appctx->st0 = PEER_SESS_ST_END;
1906 return -1;
1907 }
1908
1909 return 0;
1910}
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001911
1912/*
1913 * Treat the awaited message with <msg_head> as header.*
1914 * Return 1 if succeeded, 0 if not.
1915 */
1916static inline int peer_treat_awaited_msg(struct appctx *appctx, struct peer *peer, unsigned char *msg_head,
1917 char **msg_cur, char *msg_end, int msg_len, int totl)
1918{
1919 struct stream_interface *si = appctx->owner;
1920 struct stream *s = si_strm(si);
1921 struct peers *peers = strm_fe(s)->parent;
1922
1923 if (msg_head[0] == PEER_MSG_CLASS_CONTROL) {
1924 if (msg_head[1] == PEER_MSG_CTRL_RESYNCREQ) {
1925 struct shared_table *st;
1926 /* Reset message: remote need resync */
1927
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001928 /* prepare tables for a global push */
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001929 for (st = peer->tables; st; st = st->next) {
1930 st->teaching_origin = st->last_pushed = st->table->update;
1931 st->flags = 0;
1932 }
1933
1934 /* reset teaching flags to 0 */
1935 peer->flags &= PEER_TEACH_RESET;
1936
1937 /* flag to start to teach lesson */
1938 peer->flags |= PEER_F_TEACH_PROCESS;
1939 }
1940 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCFINISHED) {
1941 if (peer->flags & PEER_F_LEARN_ASSIGN) {
1942 peer->flags &= ~PEER_F_LEARN_ASSIGN;
1943 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
1944 peers->flags |= (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE);
1945 }
1946 peer->confirm++;
1947 }
1948 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCPARTIAL) {
1949 if (peer->flags & PEER_F_LEARN_ASSIGN) {
1950 peer->flags &= ~PEER_F_LEARN_ASSIGN;
1951 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
1952
1953 peer->flags |= PEER_F_LEARN_NOTUP2DATE;
Frédéric Lécaille54bff832019-03-26 10:25:20 +01001954 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT));
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001955 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
1956 }
1957 peer->confirm++;
1958 }
1959 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCCONFIRM) {
1960 struct shared_table *st;
1961
1962 /* If stopping state */
1963 if (stopping) {
1964 /* Close session, push resync no more needed */
1965 peer->flags |= PEER_F_TEACH_COMPLETE;
1966 appctx->st0 = PEER_SESS_ST_END;
1967 return 0;
1968 }
1969 for (st = peer->tables; st; st = st->next) {
1970 st->update = st->last_pushed = st->teaching_origin;
1971 st->flags = 0;
1972 }
1973
1974 /* reset teaching flags to 0 */
1975 peer->flags &= PEER_TEACH_RESET;
1976 }
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001977 else if (msg_head[1] == PEER_MSG_CTRL_HEARTBEAT) {
Frédéric Lécaille54bff832019-03-26 10:25:20 +01001978 peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille33cab3c2019-11-06 11:51:26 +01001979 peer->rx_hbt++;
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001980 }
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001981 }
1982 else if (msg_head[0] == PEER_MSG_CLASS_STICKTABLE) {
1983 if (msg_head[1] == PEER_MSG_STKT_DEFINE) {
1984 if (!peer_treat_definemsg(appctx, peer, msg_cur, msg_end, totl))
1985 return 0;
1986 }
1987 else if (msg_head[1] == PEER_MSG_STKT_SWITCH) {
1988 if (!peer_treat_switchmsg(appctx, peer, msg_cur, msg_end))
1989 return 0;
1990 }
1991 else if (msg_head[1] == PEER_MSG_STKT_UPDATE ||
1992 msg_head[1] == PEER_MSG_STKT_INCUPDATE ||
1993 msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED ||
1994 msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED) {
1995 int update, expire;
1996
1997 update = msg_head[1] == PEER_MSG_STKT_UPDATE || msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED;
1998 expire = msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED || msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED;
1999 if (!peer_treat_updatemsg(appctx, peer, update, expire,
2000 msg_cur, msg_end, msg_len, totl))
2001 return 0;
2002
2003 }
2004 else if (msg_head[1] == PEER_MSG_STKT_ACK) {
2005 if (!peer_treat_ackmsg(appctx, peer, msg_cur, msg_end))
2006 return 0;
2007 }
2008 }
2009 else if (msg_head[0] == PEER_MSG_CLASS_RESERVED) {
2010 appctx->st0 = PEER_SESS_ST_ERRPROTO;
2011 return 0;
2012 }
2013
2014 return 1;
2015}
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01002016
2017
2018/*
2019 * Send any message to <peer> peer.
2020 * Returns 1 if succeeded, or -1 or 0 if failed.
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002021 * -1 means an internal error occurred, 0 is for a peer protocol error leading
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01002022 * to a peer state change (from the peer I/O handler point of view).
2023 */
2024static inline int peer_send_msgs(struct appctx *appctx, struct peer *peer)
2025{
2026 int repl;
2027 struct stream_interface *si = appctx->owner;
2028 struct stream *s = si_strm(si);
2029 struct peers *peers = strm_fe(s)->parent;
2030
2031 /* Need to request a resync */
2032 if ((peer->flags & PEER_F_LEARN_ASSIGN) &&
2033 (peers->flags & PEERS_F_RESYNC_ASSIGN) &&
2034 !(peers->flags & PEERS_F_RESYNC_PROCESS)) {
2035
2036 repl = peer_send_resync_reqmsg(appctx);
2037 if (repl <= 0)
2038 return repl;
2039
2040 peers->flags |= PEERS_F_RESYNC_PROCESS;
2041 }
2042
2043 /* Nothing to read, now we start to write */
2044 if (peer->tables) {
2045 struct shared_table *st;
2046 struct shared_table *last_local_table;
2047
2048 last_local_table = peer->last_local_table;
2049 if (!last_local_table)
2050 last_local_table = peer->tables;
2051 st = last_local_table->next;
2052
2053 while (1) {
2054 if (!st)
2055 st = peer->tables;
2056
2057 /* It remains some updates to ack */
2058 if (st->last_get != st->last_acked) {
2059 repl = peer_send_ackmsg(st, appctx);
2060 if (repl <= 0)
2061 return repl;
2062
2063 st->last_acked = st->last_get;
2064 }
2065
2066 if (!(peer->flags & PEER_F_TEACH_PROCESS)) {
2067 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
2068 if (!(peer->flags & PEER_F_LEARN_ASSIGN) &&
2069 ((int)(st->last_pushed - st->table->localupdate) < 0)) {
2070
2071 repl = peer_send_teach_process_msgs(appctx, peer, st);
2072 if (repl <= 0) {
2073 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
2074 return repl;
2075 }
2076 }
2077 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
2078 }
2079 else {
2080 if (!(st->flags & SHTABLE_F_TEACH_STAGE1)) {
2081 repl = peer_send_teach_stage1_msgs(appctx, peer, st);
2082 if (repl <= 0)
2083 return repl;
2084 }
2085
2086 if (!(st->flags & SHTABLE_F_TEACH_STAGE2)) {
2087 repl = peer_send_teach_stage2_msgs(appctx, peer, st);
2088 if (repl <= 0)
2089 return repl;
2090 }
2091 }
2092
2093 if (st == last_local_table)
2094 break;
2095 st = st->next;
2096 }
2097 }
2098
2099 if ((peer->flags & PEER_F_TEACH_PROCESS) && !(peer->flags & PEER_F_TEACH_FINISHED)) {
Emeric Brun70de43b2020-03-16 10:51:01 +01002100 repl = peer_send_resync_finishedmsg(appctx, peers);
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01002101 if (repl <= 0)
2102 return repl;
2103
2104 /* flag finished message sent */
2105 peer->flags |= PEER_F_TEACH_FINISHED;
2106 }
2107
2108 /* Confirm finished or partial messages */
2109 while (peer->confirm) {
2110 repl = peer_send_resync_confirmsg(appctx);
2111 if (repl <= 0)
2112 return repl;
2113
2114 peer->confirm--;
2115 }
2116
2117 return 1;
2118}
2119
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002120/*
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002121 * Read and parse a first line of a "hello" peer protocol message.
2122 * Returns 0 if could not read a line, -1 if there was a read error or
2123 * the line is malformed, 1 if succeeded.
2124 */
2125static inline int peer_getline_version(struct appctx *appctx,
2126 unsigned int *maj_ver, unsigned int *min_ver)
2127{
2128 int reql;
2129
2130 reql = peer_getline(appctx);
2131 if (!reql)
2132 return 0;
2133
2134 if (reql < 0)
2135 return -1;
2136
2137 /* test protocol */
2138 if (strncmp(PEER_SESSION_PROTO_NAME " ", trash.area, proto_len + 1) != 0) {
2139 appctx->st0 = PEER_SESS_ST_EXIT;
2140 appctx->st1 = PEER_SESS_SC_ERRPROTO;
2141 return -1;
2142 }
2143 if (peer_get_version(trash.area + proto_len + 1, maj_ver, min_ver) == -1 ||
2144 *maj_ver != PEER_MAJOR_VER || *min_ver > PEER_MINOR_VER) {
2145 appctx->st0 = PEER_SESS_ST_EXIT;
2146 appctx->st1 = PEER_SESS_SC_ERRVERSION;
2147 return -1;
2148 }
2149
2150 return 1;
2151}
2152
2153/*
2154 * Read and parse a second line of a "hello" peer protocol message.
2155 * Returns 0 if could not read a line, -1 if there was a read error or
2156 * the line is malformed, 1 if succeeded.
2157 */
2158static inline int peer_getline_host(struct appctx *appctx)
2159{
2160 int reql;
2161
2162 reql = peer_getline(appctx);
2163 if (!reql)
2164 return 0;
2165
2166 if (reql < 0)
2167 return -1;
2168
2169 /* test hostname match */
2170 if (strcmp(localpeer, trash.area) != 0) {
2171 appctx->st0 = PEER_SESS_ST_EXIT;
2172 appctx->st1 = PEER_SESS_SC_ERRHOST;
2173 return -1;
2174 }
2175
2176 return 1;
2177}
2178
2179/*
2180 * Read and parse a last line of a "hello" peer protocol message.
2181 * Returns 0 if could not read a character, -1 if there was a read error or
2182 * the line is malformed, 1 if succeeded.
2183 * Set <curpeer> accordingly (the remote peer sending the "hello" message).
2184 */
2185static inline int peer_getline_last(struct appctx *appctx, struct peer **curpeer)
2186{
2187 char *p;
2188 int reql;
2189 struct peer *peer;
2190 struct stream_interface *si = appctx->owner;
2191 struct stream *s = si_strm(si);
2192 struct peers *peers = strm_fe(s)->parent;
2193
2194 reql = peer_getline(appctx);
2195 if (!reql)
2196 return 0;
2197
2198 if (reql < 0)
2199 return -1;
2200
2201 /* parse line "<peer name> <pid> <relative_pid>" */
2202 p = strchr(trash.area, ' ');
2203 if (!p) {
2204 appctx->st0 = PEER_SESS_ST_EXIT;
2205 appctx->st1 = PEER_SESS_SC_ERRPROTO;
2206 return -1;
2207 }
2208 *p = 0;
2209
2210 /* lookup known peer */
2211 for (peer = peers->remote; peer; peer = peer->next) {
2212 if (strcmp(peer->id, trash.area) == 0)
2213 break;
2214 }
2215
2216 /* if unknown peer */
2217 if (!peer) {
2218 appctx->st0 = PEER_SESS_ST_EXIT;
2219 appctx->st1 = PEER_SESS_SC_ERRPEER;
2220 return -1;
2221 }
2222 *curpeer = peer;
2223
2224 return 1;
2225}
2226
2227/*
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002228 * Init <peer> peer after having accepted it at peer protocol level.
2229 */
2230static inline void init_accepted_peer(struct peer *peer, struct peers *peers)
2231{
2232 struct shared_table *st;
2233
Frédéric Lécaillebaeb9192020-10-14 11:50:26 +02002234 peer->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002235 /* Register status code */
2236 peer->statuscode = PEER_SESS_SC_SUCCESSCODE;
Frédéric Lécaille3fc0fe02020-10-08 09:46:24 +02002237 peer->last_hdshk = now_ms;
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002238
2239 /* Awake main task */
2240 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
2241
2242 /* Init confirm counter */
2243 peer->confirm = 0;
2244
2245 /* Init cursors */
2246 for (st = peer->tables; st ; st = st->next) {
2247 st->last_get = st->last_acked = 0;
2248 st->teaching_origin = st->last_pushed = st->update;
2249 }
2250
2251 /* reset teaching and learning flags to 0 */
2252 peer->flags &= PEER_TEACH_RESET;
2253 peer->flags &= PEER_LEARN_RESET;
2254
2255 /* if current peer is local */
2256 if (peer->local) {
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002257 /* if current host need resyncfrom local and no process assigned */
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002258 if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL &&
2259 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2260 /* assign local peer for a lesson, consider lesson already requested */
2261 peer->flags |= PEER_F_LEARN_ASSIGN;
2262 peers->flags |= (PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
2263 }
2264
2265 }
2266 else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
2267 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2268 /* assign peer for a lesson */
2269 peer->flags |= PEER_F_LEARN_ASSIGN;
2270 peers->flags |= PEERS_F_RESYNC_ASSIGN;
2271 }
2272}
2273
2274/*
2275 * Init <peer> peer after having connected it at peer protocol level.
2276 */
2277static inline void init_connected_peer(struct peer *peer, struct peers *peers)
2278{
2279 struct shared_table *st;
2280
Frédéric Lécaillebaeb9192020-10-14 11:50:26 +02002281 peer->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002282 /* Init cursors */
2283 for (st = peer->tables; st ; st = st->next) {
2284 st->last_get = st->last_acked = 0;
2285 st->teaching_origin = st->last_pushed = st->update;
2286 }
2287
2288 /* Init confirm counter */
2289 peer->confirm = 0;
2290
2291 /* reset teaching and learning flags to 0 */
2292 peer->flags &= PEER_TEACH_RESET;
2293 peer->flags &= PEER_LEARN_RESET;
2294
2295 /* If current peer is local */
2296 if (peer->local) {
2297 /* flag to start to teach lesson */
2298 peer->flags |= PEER_F_TEACH_PROCESS;
2299 }
2300 else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
2301 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2302 /* If peer is remote and resync from remote is needed,
2303 and no peer currently assigned */
2304
2305 /* assign peer for a lesson */
2306 peer->flags |= PEER_F_LEARN_ASSIGN;
2307 peers->flags |= PEERS_F_RESYNC_ASSIGN;
2308 }
2309}
2310
2311/*
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002312 * IO Handler to handle message exchange with a peer
Emeric Brun2b920a12010-09-23 18:30:22 +02002313 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02002314static void peer_io_handler(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +02002315{
Willy Tarreau00a37f02015-04-13 12:05:19 +02002316 struct stream_interface *si = appctx->owner;
Willy Tarreau87b09662015-04-03 00:22:06 +02002317 struct stream *s = si_strm(si);
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002318 struct peers *curpeers = strm_fe(s)->parent;
Emeric Brun80527f52017-06-19 17:46:37 +02002319 struct peer *curpeer = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002320 int reql = 0;
2321 int repl = 0;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002322 unsigned int maj_ver, min_ver;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002323 int prev_state;
Emeric Brun2b920a12010-09-23 18:30:22 +02002324
Joseph Herlant82b2f542018-11-15 12:19:14 -08002325 /* Check if the input buffer is available. */
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002326 if (si_ic(si)->buf.size == 0) {
2327 si_rx_room_blk(si);
2328 goto out;
2329 }
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002330
Emeric Brun2b920a12010-09-23 18:30:22 +02002331 while (1) {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002332 prev_state = appctx->st0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002333switchstate:
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002334 maj_ver = min_ver = (unsigned int)-1;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002335 switch(appctx->st0) {
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002336 case PEER_SESS_ST_ACCEPT:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002337 prev_state = appctx->st0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002338 appctx->ctx.peers.ptr = NULL;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002339 appctx->st0 = PEER_SESS_ST_GETVERSION;
Emeric Brun2b920a12010-09-23 18:30:22 +02002340 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002341 case PEER_SESS_ST_GETVERSION:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002342 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002343 reql = peer_getline_version(appctx, &maj_ver, &min_ver);
2344 if (reql <= 0) {
2345 if (!reql)
2346 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002347 goto switchstate;
2348 }
2349
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002350 appctx->st0 = PEER_SESS_ST_GETHOST;
Emeric Brun2b920a12010-09-23 18:30:22 +02002351 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002352 case PEER_SESS_ST_GETHOST:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002353 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002354 reql = peer_getline_host(appctx);
2355 if (reql <= 0) {
2356 if (!reql)
2357 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002358 goto switchstate;
2359 }
2360
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002361 appctx->st0 = PEER_SESS_ST_GETPEER;
Emeric Brun2b920a12010-09-23 18:30:22 +02002362 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002363 case PEER_SESS_ST_GETPEER: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002364 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002365 reql = peer_getline_last(appctx, &curpeer);
2366 if (reql <= 0) {
2367 if (!reql)
2368 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002369 goto switchstate;
2370 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002371
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002372 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Willy Tarreau9df94c22016-10-31 18:42:52 +01002373 if (curpeer->appctx && curpeer->appctx != appctx) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002374 if (curpeer->local) {
2375 /* Local connection, reply a retry */
2376 appctx->st0 = PEER_SESS_ST_EXIT;
2377 appctx->st1 = PEER_SESS_SC_TRYAGAIN;
2378 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02002379 }
Emeric Brun80527f52017-06-19 17:46:37 +02002380
2381 /* we're killing a connection, we must apply a random delay before
2382 * retrying otherwise the other end will do the same and we can loop
2383 * for a while.
2384 */
Willy Tarreau52bf8392020-03-08 00:42:37 +01002385 curpeer->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + ha_random() % 2000));
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002386 peer_session_forceshutdown(curpeer);
Frédéric Lécaillebaeb9192020-10-14 11:50:26 +02002387 curpeer->heartbeat = TICK_ETERNITY;
Frédéric Lécaille3fc0fe02020-10-08 09:46:24 +02002388 curpeer->coll++;
Emeric Brun2b920a12010-09-23 18:30:22 +02002389 }
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002390 if (maj_ver != (unsigned int)-1 && min_ver != (unsigned int)-1) {
2391 if (min_ver == PEER_DWNGRD_MINOR_VER) {
2392 curpeer->flags |= PEER_F_DWNGRD;
2393 }
2394 else {
2395 curpeer->flags &= ~PEER_F_DWNGRD;
2396 }
2397 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002398 curpeer->appctx = appctx;
Frédéric Lécaillebaeb9192020-10-14 11:50:26 +02002399 curpeer->flags |= PEER_F_ALIVE;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002400 appctx->ctx.peers.ptr = curpeer;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002401 appctx->st0 = PEER_SESS_ST_SENDSUCCESS;
Olivier Houcharded879892019-03-08 18:53:43 +01002402 _HA_ATOMIC_ADD(&active_peers, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02002403 }
Tim Duesterhus588b3142020-05-29 14:35:51 +02002404 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002405 case PEER_SESS_ST_SENDSUCCESS: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002406 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002407 if (!curpeer) {
2408 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002409 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002410 if (curpeer->appctx != appctx) {
2411 appctx->st0 = PEER_SESS_ST_END;
2412 goto switchstate;
2413 }
2414 }
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002415
2416 repl = peer_send_status_successmsg(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002417 if (repl <= 0) {
2418 if (repl == -1)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002419 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002420 goto switchstate;
2421 }
2422
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002423 init_accepted_peer(curpeer, curpeers);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002424
Emeric Brun2b920a12010-09-23 18:30:22 +02002425 /* switch to waiting message state */
Olivier Houcharded879892019-03-08 18:53:43 +01002426 _HA_ATOMIC_ADD(&connected_peers, 1);
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002427 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +02002428 goto switchstate;
2429 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002430 case PEER_SESS_ST_CONNECT: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002431 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002432 if (!curpeer) {
2433 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002434 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002435 if (curpeer->appctx != appctx) {
2436 appctx->st0 = PEER_SESS_ST_END;
2437 goto switchstate;
2438 }
2439 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002440
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002441 repl = peer_send_hellomsg(appctx, curpeer);
Emeric Brun2b920a12010-09-23 18:30:22 +02002442 if (repl <= 0) {
2443 if (repl == -1)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002444 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002445 goto switchstate;
2446 }
2447
2448 /* switch to the waiting statuscode state */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002449 appctx->st0 = PEER_SESS_ST_GETSTATUS;
Emeric Brun2b920a12010-09-23 18:30:22 +02002450 }
Tim Duesterhus588b3142020-05-29 14:35:51 +02002451 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002452 case PEER_SESS_ST_GETSTATUS: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002453 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002454 if (!curpeer) {
2455 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002456 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002457 if (curpeer->appctx != appctx) {
2458 appctx->st0 = PEER_SESS_ST_END;
2459 goto switchstate;
2460 }
2461 }
2462
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002463 if (si_ic(si)->flags & CF_WRITE_PARTIAL)
Emeric Brunb3971ab2015-05-12 18:49:09 +02002464 curpeer->statuscode = PEER_SESS_SC_CONNECTEDCODE;
Emeric Brun2b920a12010-09-23 18:30:22 +02002465
Frédéric Lécaillece025572019-01-21 13:38:06 +01002466 reql = peer_getline(appctx);
2467 if (!reql)
2468 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002469
Frédéric Lécaillece025572019-01-21 13:38:06 +01002470 if (reql < 0)
2471 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02002472
2473 /* Register status code */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002474 curpeer->statuscode = atoi(trash.area);
Frédéric Lécaille3fc0fe02020-10-08 09:46:24 +02002475 curpeer->last_hdshk = now_ms;
Emeric Brun2b920a12010-09-23 18:30:22 +02002476
2477 /* Awake main task */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002478 task_wakeup(curpeers->sync_task, TASK_WOKEN_MSG);
Emeric Brun2b920a12010-09-23 18:30:22 +02002479
2480 /* If status code is success */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002481 if (curpeer->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002482 init_connected_peer(curpeer, curpeers);
Emeric Brun2b920a12010-09-23 18:30:22 +02002483 }
2484 else {
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002485 if (curpeer->statuscode == PEER_SESS_SC_ERRVERSION)
2486 curpeer->flags |= PEER_F_DWNGRD;
Emeric Brun2b920a12010-09-23 18:30:22 +02002487 /* Status code is not success, abort */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002488 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +02002489 goto switchstate;
2490 }
Olivier Houcharded879892019-03-08 18:53:43 +01002491 _HA_ATOMIC_ADD(&connected_peers, 1);
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002492 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +02002493 }
Tim Duesterhus588b3142020-05-29 14:35:51 +02002494 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002495 case PEER_SESS_ST_WAITMSG: {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002496 uint32_t msg_len = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002497 char *msg_cur = trash.area;
2498 char *msg_end = trash.area;
Willy Tarreau1dfd4f12020-11-13 14:10:20 +01002499 unsigned char msg_head[7]; // 2 + 5 for varint32
Emeric Brun2b920a12010-09-23 18:30:22 +02002500 int totl = 0;
2501
Willy Tarreau2d372c22018-11-05 17:12:27 +01002502 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002503 if (!curpeer) {
2504 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002505 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002506 if (curpeer->appctx != appctx) {
2507 appctx->st0 = PEER_SESS_ST_END;
2508 goto switchstate;
2509 }
2510 }
2511
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002512 reql = peer_recv_msg(appctx, (char *)msg_head, sizeof msg_head, &msg_len, &totl);
2513 if (reql <= 0) {
2514 if (reql == -1)
2515 goto switchstate;
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002516 goto send_msgs;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002517 }
Willy Tarreau86a446e2013-11-25 23:02:37 +01002518
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002519 msg_end += msg_len;
Frédéric Lécaille444243c2019-01-24 15:40:11 +01002520 if (!peer_treat_awaited_msg(appctx, curpeer, msg_head, &msg_cur, msg_end, msg_len, totl))
Emeric Brun2b920a12010-09-23 18:30:22 +02002521 goto switchstate;
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002522
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002523 curpeer->flags |= PEER_F_ALIVE;
2524
Emeric Brun2b920a12010-09-23 18:30:22 +02002525 /* skip consumed message */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002526 co_skip(si_oc(si), totl);
Emeric Brun2b920a12010-09-23 18:30:22 +02002527 /* loop on that state to peek next message */
Willy Tarreau72d6c162013-04-11 16:14:13 +02002528 goto switchstate;
2529
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002530send_msgs:
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002531 if (curpeer->flags & PEER_F_HEARTBEAT) {
2532 curpeer->flags &= ~PEER_F_HEARTBEAT;
2533 repl = peer_send_heartbeatmsg(appctx);
2534 if (repl <= 0) {
2535 if (repl == -1)
2536 goto out;
2537 goto switchstate;
2538 }
Frédéric Lécaille33cab3c2019-11-06 11:51:26 +01002539 curpeer->tx_hbt++;
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002540 }
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002541 /* we get here when a peer_recv_msg() returns 0 in reql */
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01002542 repl = peer_send_msgs(appctx, curpeer);
2543 if (repl <= 0) {
2544 if (repl == -1)
2545 goto out;
2546 goto switchstate;
Emeric Brun597b26e2016-08-12 11:23:31 +02002547 }
2548
Emeric Brun2b920a12010-09-23 18:30:22 +02002549 /* noting more to do */
2550 goto out;
2551 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002552 case PEER_SESS_ST_EXIT:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002553 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002554 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002555 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002556 if (peer_send_status_errormsg(appctx) == -1)
2557 goto out;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002558 appctx->st0 = PEER_SESS_ST_END;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002559 goto switchstate;
2560 case PEER_SESS_ST_ERRSIZE: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002561 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002562 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002563 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002564 if (peer_send_error_size_limitmsg(appctx) == -1)
2565 goto out;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002566 appctx->st0 = PEER_SESS_ST_END;
2567 goto switchstate;
2568 }
2569 case PEER_SESS_ST_ERRPROTO: {
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01002570 if (curpeer)
2571 curpeer->proto_err++;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002572 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002573 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002574 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002575 if (peer_send_error_protomsg(appctx) == -1)
2576 goto out;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002577 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002578 prev_state = appctx->st0;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002579 }
Tim Duesterhus588b3142020-05-29 14:35:51 +02002580 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002581 case PEER_SESS_ST_END: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002582 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002583 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002584 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002585 if (curpeer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002586 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002587 curpeer = NULL;
2588 }
Willy Tarreau73b013b2012-05-21 16:31:45 +02002589 si_shutw(si);
2590 si_shutr(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002591 si_ic(si)->flags |= CF_READ_NULL;
Willy Tarreau828824a2015-04-19 17:20:03 +02002592 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002593 }
2594 }
2595 }
2596out:
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002597 si_oc(si)->flags |= CF_READ_DONTWAIT;
Emeric Brun80527f52017-06-19 17:46:37 +02002598
2599 if (curpeer)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002600 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +02002601 return;
2602}
2603
Willy Tarreau30576452015-04-13 13:50:30 +02002604static struct applet peer_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002605 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01002606 .name = "<PEER>", /* used for logging */
2607 .fct = peer_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07002608 .release = peer_session_release,
Willy Tarreaub24281b2011-02-13 13:16:36 +01002609};
Emeric Brun2b920a12010-09-23 18:30:22 +02002610
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002611
Emeric Brun2b920a12010-09-23 18:30:22 +02002612/*
2613 * Use this function to force a close of a peer session
2614 */
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002615static void peer_session_forceshutdown(struct peer *peer)
Emeric Brun2b920a12010-09-23 18:30:22 +02002616{
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002617 struct appctx *appctx = peer->appctx;
2618
Frédéric Lécaille5df11902017-06-13 16:39:57 +02002619 /* Note that the peer sessions which have just been created
2620 * (->st0 == PEER_SESS_ST_CONNECT) must not
2621 * be shutdown, if not, the TCP session will never be closed
2622 * and stay in CLOSE_WAIT state after having been closed by
2623 * the remote side.
2624 */
2625 if (!appctx || appctx->st0 == PEER_SESS_ST_CONNECT)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002626 return;
2627
Willy Tarreau81bc3b02016-10-31 17:37:39 +01002628 if (appctx->applet != &peer_applet)
2629 return;
2630
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002631 __peer_session_deinit(peer);
2632
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002633 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau78c0c502016-10-31 17:32:20 +01002634 appctx_wakeup(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002635}
2636
Willy Tarreau91d96282015-03-13 15:47:26 +01002637/* Pre-configures a peers frontend to accept incoming connections */
2638void peers_setup_frontend(struct proxy *fe)
2639{
2640 fe->last_change = now.tv_sec;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02002641 fe->cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002642 fe->mode = PR_MODE_PEERS;
Willy Tarreau91d96282015-03-13 15:47:26 +01002643 fe->maxconn = 0;
2644 fe->conn_retries = CONN_RETRIES;
2645 fe->timeout.client = MS_TO_TICKS(5000);
Willy Tarreaud1d48d42015-03-13 16:15:46 +01002646 fe->accept = frontend_accept;
Willy Tarreauf87ab942015-03-13 15:55:16 +01002647 fe->default_target = &peer_applet.obj_type;
Willy Tarreau91d96282015-03-13 15:47:26 +01002648 fe->options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC;
Willy Tarreau0fca4832015-05-01 19:12:05 +02002649 fe->bind_proc = 0; /* will be filled by users */
Willy Tarreau91d96282015-03-13 15:47:26 +01002650}
2651
Emeric Brun2b920a12010-09-23 18:30:22 +02002652/*
Willy Tarreaubd55e312010-11-11 10:55:09 +01002653 * Create a new peer session in assigned state (connect will start automatically)
Emeric Brun2b920a12010-09-23 18:30:22 +02002654 */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002655static struct appctx *peer_session_create(struct peers *peers, struct peer *peer)
Emeric Brun2b920a12010-09-23 18:30:22 +02002656{
Willy Tarreau04b92862017-09-15 11:01:04 +02002657 struct proxy *p = peers->peers_fe; /* attached frontend */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002658 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02002659 struct session *sess;
Willy Tarreau87b09662015-04-03 00:22:06 +02002660 struct stream *s;
Emeric Brun2b920a12010-09-23 18:30:22 +02002661
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002662 peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaillebaeb9192020-10-14 11:50:26 +02002663 peer->heartbeat = TICK_ETERNITY;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002664 peer->statuscode = PEER_SESS_SC_CONNECTCODE;
Frédéric Lécaille3fc0fe02020-10-08 09:46:24 +02002665 peer->last_hdshk = now_ms;
Willy Tarreaud990baf2015-04-05 00:32:03 +02002666 s = NULL;
2667
Emeric Brun1138fd02017-06-19 12:38:55 +02002668 appctx = appctx_new(&peer_applet, tid_bit);
Willy Tarreaud990baf2015-04-05 00:32:03 +02002669 if (!appctx)
2670 goto out_close;
2671
2672 appctx->st0 = PEER_SESS_ST_CONNECT;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002673 appctx->ctx.peers.ptr = (void *)peer;
Willy Tarreaud990baf2015-04-05 00:32:03 +02002674
Willy Tarreau04b92862017-09-15 11:01:04 +02002675 sess = session_new(p, NULL, &appctx->obj_type);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002676 if (!sess) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002677 ha_alert("out of memory in peer_session_create().\n");
Willy Tarreaud990baf2015-04-05 00:32:03 +02002678 goto out_free_appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02002679 }
2680
Christopher Faulet26256f82020-09-14 11:40:13 +02002681 if ((s = stream_new(sess, &appctx->obj_type, &BUF_NULL)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002682 ha_alert("Failed to initialize stream in peer_session_create().\n");
Willy Tarreau87787ac2017-08-28 16:22:54 +02002683 goto out_free_sess;
Willy Tarreau8baf9062015-04-05 00:46:36 +02002684 }
2685
Willy Tarreau6e2979c2015-04-27 13:21:15 +02002686 /* applet is waiting for data */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002687 si_cant_get(&s->si[0]);
Willy Tarreau6e2979c2015-04-27 13:21:15 +02002688 appctx_wakeup(appctx);
2689
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02002690 /* initiate an outgoing connection */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002691 s->target = peer_session_target(peer, s);
Willy Tarreau9b7587a2020-10-15 07:32:10 +02002692 if (!sockaddr_alloc(&s->target_addr, &peer->addr, sizeof(peer->addr)))
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002693 goto out_free_strm;
Willy Tarreau02efeda2019-07-18 17:21:24 +02002694 s->flags = SF_ASSIGNED|SF_ADDR_SET;
Willy Tarreaudbd02672017-12-06 17:39:53 +01002695 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002696
Emeric Brun2b920a12010-09-23 18:30:22 +02002697 s->do_log = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002698 s->uniq_id = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002699
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002700 s->res.flags |= CF_READ_DONTWAIT;
Willy Tarreau696a2912014-11-24 11:36:57 +01002701
Emeric Brunb3971ab2015-05-12 18:49:09 +02002702 peer->appctx = appctx;
Willy Tarreau87787ac2017-08-28 16:22:54 +02002703 task_wakeup(s->task, TASK_WOKEN_INIT);
Olivier Houcharded879892019-03-08 18:53:43 +01002704 _HA_ATOMIC_ADD(&active_peers, 1);
Willy Tarreau9df94c22016-10-31 18:42:52 +01002705 return appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02002706
2707 /* Error unrolling */
Willy Tarreau15b5e142015-04-04 14:38:25 +02002708 out_free_strm:
Emeric Brun2b920a12010-09-23 18:30:22 +02002709 LIST_DEL(&s->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002710 pool_free(pool_head_stream, s);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002711 out_free_sess:
Willy Tarreau11c36242015-04-04 15:54:03 +02002712 session_free(sess);
Willy Tarreaud990baf2015-04-05 00:32:03 +02002713 out_free_appctx:
2714 appctx_free(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002715 out_close:
Willy Tarreaub21d08e2016-10-31 17:46:57 +01002716 return NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002717}
2718
2719/*
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002720 * Task processing function to manage re-connect, peer session
2721 * tasks wakeup on local update and heartbeat.
Emeric Brun2b920a12010-09-23 18:30:22 +02002722 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002723static struct task *process_peer_sync(struct task * task, void *context, unsigned short state)
Emeric Brun2b920a12010-09-23 18:30:22 +02002724{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002725 struct peers *peers = context;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002726 struct peer *ps;
2727 struct shared_table *st;
Emeric Brun2b920a12010-09-23 18:30:22 +02002728
2729 task->expire = TICK_ETERNITY;
2730
Emeric Brunb3971ab2015-05-12 18:49:09 +02002731 if (!peers->peers_fe) {
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02002732 /* this one was never started, kill it */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002733 signal_unregister_handler(peers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002734 task_destroy(peers->sync_task);
Willy Tarreau37bb7be2015-09-21 15:24:58 +02002735 peers->sync_task = NULL;
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02002736 return NULL;
2737 }
2738
Emeric Brun80527f52017-06-19 17:46:37 +02002739 /* Acquire lock for all peers of the section */
2740 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002741 HA_SPIN_LOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002742
Emeric Brun2b920a12010-09-23 18:30:22 +02002743 if (!stopping) {
2744 /* Normal case (not soft stop)*/
Emeric Brunb3971ab2015-05-12 18:49:09 +02002745
2746 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL) &&
2747 (!nb_oldpids || tick_is_expired(peers->resync_timeout, now_ms)) &&
2748 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002749 /* Resync from local peer needed
2750 no peer was assigned for the lesson
2751 and no old local peer found
2752 or resync timeout expire */
2753
2754 /* flag no more resync from local, to try resync from remotes */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002755 peers->flags |= PEERS_F_RESYNC_LOCAL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002756
2757 /* reschedule a resync */
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002758 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT));
Emeric Brun2b920a12010-09-23 18:30:22 +02002759 }
2760
2761 /* For each session */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002762 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002763 /* For each remote peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002764 if (!ps->local) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002765 if (!ps->appctx) {
2766 /* no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002767 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002768 ((ps->statuscode == PEER_SESS_SC_CONNECTCODE ||
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002769 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002770 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002771 tick_is_expired(ps->reconnect, now_ms))) {
2772 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002773 * or previous peer connection established with success
2774 * or previous peer connection failed while connecting
Emeric Brun2b920a12010-09-23 18:30:22 +02002775 * and reconnection timer is expired */
2776
2777 /* retry a connect */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002778 ps->appctx = peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002779 }
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002780 else if (!tick_is_expired(ps->reconnect, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002781 /* If previous session failed during connection
2782 * but reconnection timer is not expired */
2783
2784 /* reschedule task for reconnect */
2785 task->expire = tick_first(task->expire, ps->reconnect);
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01002786 ps->new_conn++;
Emeric Brun2b920a12010-09-23 18:30:22 +02002787 }
2788 /* else do nothing */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002789 } /* !ps->appctx */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002790 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002791 /* current peer connection is active and established */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002792 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2793 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002794 !(ps->flags & PEER_F_LEARN_NOTUP2DATE)) {
2795 /* Resync from a remote is needed
2796 * and no peer was assigned for lesson
2797 * and current peer may be up2date */
2798
2799 /* assign peer for the lesson */
2800 ps->flags |= PEER_F_LEARN_ASSIGN;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002801 peers->flags |= PEERS_F_RESYNC_ASSIGN;
Emeric Brun2b920a12010-09-23 18:30:22 +02002802
Willy Tarreau9df94c22016-10-31 18:42:52 +01002803 /* wake up peer handler to handle a request of resync */
Willy Tarreaue5843b32015-04-27 18:40:14 +02002804 appctx_wakeup(ps->appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002805 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002806 else {
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002807 int update_to_push = 0;
2808
Emeric Brunb3971ab2015-05-12 18:49:09 +02002809 /* Awake session if there is data to push */
2810 for (st = ps->tables; st ; st = st->next) {
2811 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002812 /* wake up the peer handler to push local updates */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002813 update_to_push = 1;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002814 /* There is no need to send a heartbeat message
2815 * when some updates must be pushed. The remote
2816 * peer will consider <ps> peer as alive when it will
2817 * receive these updates.
2818 */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002819 ps->flags &= ~PEER_F_HEARTBEAT;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002820 /* Re-schedule another one later. */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002821 ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002822 /* We are going to send updates, let's ensure we will
2823 * come back to send heartbeat messages or to reconnect.
2824 */
2825 task->expire = tick_first(ps->reconnect, ps->heartbeat);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002826 appctx_wakeup(ps->appctx);
2827 break;
2828 }
2829 }
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002830 /* When there are updates to send we do not reconnect
2831 * and do not send heartbeat message either.
2832 */
2833 if (!update_to_push) {
2834 if (tick_is_expired(ps->reconnect, now_ms)) {
2835 if (ps->flags & PEER_F_ALIVE) {
2836 /* This peer was alive during a 'reconnect' period.
2837 * Flag it as not alive again for the next period.
2838 */
2839 ps->flags &= ~PEER_F_ALIVE;
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002840 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002841 }
2842 else {
Willy Tarreau52bf8392020-03-08 00:42:37 +01002843 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + ha_random() % 2000));
Frédéric Lécaillebaeb9192020-10-14 11:50:26 +02002844 ps->heartbeat = TICK_ETERNITY;
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002845 peer_session_forceshutdown(ps);
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01002846 ps->no_hbt++;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002847 }
2848 }
2849 else if (tick_is_expired(ps->heartbeat, now_ms)) {
2850 ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
2851 ps->flags |= PEER_F_HEARTBEAT;
2852 appctx_wakeup(ps->appctx);
2853 }
Frédéric Lécailleb7405c12019-03-27 14:32:39 +01002854 task->expire = tick_first(ps->reconnect, ps->heartbeat);
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002855 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002856 }
2857 /* else do nothing */
2858 } /* SUCCESSCODE */
2859 } /* !ps->peer->local */
2860 } /* for */
2861
2862 /* Resync from remotes expired: consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002863 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2864 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
2865 tick_is_expired(peers->resync_timeout, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002866 /* Resync from remote peer needed
2867 * no peer was assigned for the lesson
2868 * and resync timeout expire */
2869
2870 /* flag no more resync from remote, consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002871 peers->flags |= PEERS_F_RESYNC_REMOTE;
Emeric Brun2b920a12010-09-23 18:30:22 +02002872 }
2873
Emeric Brunb3971ab2015-05-12 18:49:09 +02002874 if ((peers->flags & PEERS_RESYNC_STATEMASK) != PEERS_RESYNC_FINISHED) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002875 /* Resync not finished*/
Frédéric Lécaille5d6e5f82017-05-29 13:47:16 +02002876 /* reschedule task to resync timeout if not expired, to ended resync if needed */
2877 if (!tick_is_expired(peers->resync_timeout, now_ms))
2878 task->expire = tick_first(task->expire, peers->resync_timeout);
Emeric Brun2b920a12010-09-23 18:30:22 +02002879 }
2880 } /* !stopping */
2881 else {
2882 /* soft stop case */
Willy Tarreau086735a2018-11-05 15:09:47 +01002883 if (state & TASK_WOKEN_SIGNAL) {
Joseph Herlant82b2f542018-11-15 12:19:14 -08002884 /* We've just received the signal */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002885 if (!(peers->flags & PEERS_F_DONOTSTOP)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002886 /* add DO NOT STOP flag if not present */
Olivier Houcharded879892019-03-08 18:53:43 +01002887 _HA_ATOMIC_ADD(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002888 peers->flags |= PEERS_F_DONOTSTOP;
2889 ps = peers->local;
2890 for (st = ps->tables; st ; st = st->next)
2891 st->table->syncing++;
Emeric Brun2b920a12010-09-23 18:30:22 +02002892 }
2893
2894 /* disconnect all connected peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002895 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun80527f52017-06-19 17:46:37 +02002896 /* we're killing a connection, we must apply a random delay before
2897 * retrying otherwise the other end will do the same and we can loop
2898 * for a while.
2899 */
Willy Tarreau52bf8392020-03-08 00:42:37 +01002900 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + ha_random() % 2000));
Willy Tarreau9df94c22016-10-31 18:42:52 +01002901 if (ps->appctx) {
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002902 peer_session_forceshutdown(ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002903 }
2904 }
2905 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002906
Emeric Brunb3971ab2015-05-12 18:49:09 +02002907 ps = peers->local;
Emeric Brun2b920a12010-09-23 18:30:22 +02002908 if (ps->flags & PEER_F_TEACH_COMPLETE) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002909 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002910 /* resync of new process was complete, current process can die now */
Olivier Houcharded879892019-03-08 18:53:43 +01002911 _HA_ATOMIC_SUB(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002912 peers->flags &= ~PEERS_F_DONOTSTOP;
2913 for (st = ps->tables; st ; st = st->next)
2914 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002915 }
2916 }
Willy Tarreau9df94c22016-10-31 18:42:52 +01002917 else if (!ps->appctx) {
2918 /* If there's no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002919 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002920 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
2921 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE ||
2922 ps->statuscode == PEER_SESS_SC_TRYAGAIN) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002923 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002924 * or previous peer connection was successfully established
2925 * or previous tcp connect succeeded but init state incomplete
Emeric Brun2b920a12010-09-23 18:30:22 +02002926 * or during previous connect, peer replies a try again statuscode */
2927
2928 /* connect to the peer */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002929 peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002930 }
2931 else {
2932 /* Other error cases */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002933 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002934 /* unable to resync new process, current process can die now */
Olivier Houcharded879892019-03-08 18:53:43 +01002935 _HA_ATOMIC_SUB(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002936 peers->flags &= ~PEERS_F_DONOTSTOP;
2937 for (st = ps->tables; st ; st = st->next)
2938 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002939 }
2940 }
2941 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002942 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE ) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002943 /* current peer connection is active and established
2944 * wake up all peer handlers to push remaining local updates */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002945 for (st = ps->tables; st ; st = st->next) {
2946 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002947 appctx_wakeup(ps->appctx);
2948 break;
2949 }
2950 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002951 }
2952 } /* stopping */
Emeric Brun80527f52017-06-19 17:46:37 +02002953
2954 /* Release lock for all peers of the section */
2955 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002956 HA_SPIN_UNLOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002957
Emeric Brun2b920a12010-09-23 18:30:22 +02002958 /* Wakeup for re-connect */
2959 return task;
2960}
2961
Emeric Brunb3971ab2015-05-12 18:49:09 +02002962
Emeric Brun2b920a12010-09-23 18:30:22 +02002963/*
Willy Tarreaud9443442018-10-15 11:18:03 +02002964 * returns 0 in case of error.
Emeric Brun2b920a12010-09-23 18:30:22 +02002965 */
Willy Tarreaud9443442018-10-15 11:18:03 +02002966int peers_init_sync(struct peers *peers)
Emeric Brun2b920a12010-09-23 18:30:22 +02002967{
Emeric Brun2b920a12010-09-23 18:30:22 +02002968 struct peer * curpeer;
Emeric Brun2b920a12010-09-23 18:30:22 +02002969
Emeric Brun2b920a12010-09-23 18:30:22 +02002970 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002971 peers->peers_fe->maxconn += 3;
2972 }
2973
Emeric Brunc60def82017-09-27 14:59:38 +02002974 peers->sync_task = task_new(MAX_THREADS_MASK);
Willy Tarreaud9443442018-10-15 11:18:03 +02002975 if (!peers->sync_task)
2976 return 0;
2977
Emeric Brunb3971ab2015-05-12 18:49:09 +02002978 peers->sync_task->process = process_peer_sync;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002979 peers->sync_task->context = (void *)peers;
2980 peers->sighandler = signal_register_task(0, peers->sync_task, 0);
2981 task_wakeup(peers->sync_task, TASK_WOKEN_INIT);
Willy Tarreaud9443442018-10-15 11:18:03 +02002982 return 1;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002983}
2984
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002985/*
2986 * Allocate a cache a dictionary entries used upon transmission.
2987 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002988static struct dcache_tx *new_dcache_tx(size_t max_entries)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002989{
2990 struct dcache_tx *d;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002991 struct ebpt_node *entries;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002992
2993 d = malloc(sizeof *d);
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002994 entries = calloc(max_entries, sizeof *entries);
2995 if (!d || !entries)
2996 goto err;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002997
2998 d->lru_key = 0;
Frédéric Lécailleb65717f2019-06-07 14:25:25 +02002999 d->prev_lookup = NULL;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003000 d->cached_entries = EB_ROOT_UNIQUE;
3001 d->entries = entries;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003002
3003 return d;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003004
3005 err:
3006 free(d);
3007 free(entries);
3008 return NULL;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003009}
3010
3011/*
3012 * Allocate a cache of dictionary entries with <name> as name and <max_entries>
3013 * as maximum of entries.
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05003014 * Return the dictionary cache if succeeded, NULL if not.
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003015 * Must be deallocated calling free_dcache().
3016 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003017static struct dcache *new_dcache(size_t max_entries)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003018{
3019 struct dcache_tx *dc_tx;
3020 struct dcache *dc;
3021 struct dcache_rx *dc_rx;
3022
3023 dc = calloc(1, sizeof *dc);
3024 dc_tx = new_dcache_tx(max_entries);
3025 dc_rx = calloc(max_entries, sizeof *dc_rx);
3026 if (!dc || !dc_tx || !dc_rx)
3027 goto err;
3028
3029 dc->tx = dc_tx;
3030 dc->rx = dc_rx;
3031 dc->max_entries = max_entries;
3032
3033 return dc;
3034
3035 err:
3036 free(dc);
3037 free(dc_tx);
3038 free(dc_rx);
3039 return NULL;
3040}
3041
3042/*
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003043 * Look for the dictionary entry with the value of <i> in <d> cache of dictionary
3044 * entries used upon transmission.
3045 * Return the entry if found, NULL if not.
3046 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003047static struct ebpt_node *dcache_tx_lookup_value(struct dcache_tx *d,
3048 struct dcache_tx_entry *i)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003049{
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003050 return ebpt_lookup(&d->cached_entries, i->entry.key);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003051}
3052
3053/*
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003054 * Flush <dc> cache.
3055 * Always succeeds.
3056 */
3057static inline void flush_dcache(struct peer *peer)
3058{
3059 int i;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003060 struct dcache *dc = peer->dcache;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003061
Frédéric Lécailleea875e62020-11-12 21:01:54 +01003062 for (i = 0; i < dc->max_entries; i++) {
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003063 ebpt_delete(&dc->tx->entries[i]);
Frédéric Lécailleea875e62020-11-12 21:01:54 +01003064 dc->tx->entries[i].key = NULL;
Thayne McCombs92149f92020-11-20 01:28:26 -07003065 dict_entry_unref(&server_key_dict, dc->rx[i].de);
3066 dc->rx[i].de = NULL;
Frédéric Lécailleea875e62020-11-12 21:01:54 +01003067 }
3068 dc->tx->prev_lookup = NULL;
3069 dc->tx->lru_key = 0;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003070
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003071 memset(dc->rx, 0, dc->max_entries * sizeof *dc->rx);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003072}
3073
3074/*
3075 * Insert a dictionary entry in <dc> cache part used upon transmission (->tx)
3076 * with information provided by <i> dictionary cache entry (especially the value
3077 * to be inserted if not already). Return <i> if already present in the cache
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003078 * or something different of <i> if not.
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003079 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003080static struct ebpt_node *dcache_tx_insert(struct dcache *dc, struct dcache_tx_entry *i)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003081{
3082 struct dcache_tx *dc_tx;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003083 struct ebpt_node *o;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003084
3085 dc_tx = dc->tx;
Frédéric Lécailleb65717f2019-06-07 14:25:25 +02003086
3087 if (dc_tx->prev_lookup && dc_tx->prev_lookup->key == i->entry.key) {
3088 o = dc_tx->prev_lookup;
3089 } else {
3090 o = dcache_tx_lookup_value(dc_tx, i);
3091 if (o) {
3092 /* Save it */
3093 dc_tx->prev_lookup = o;
3094 }
3095 }
3096
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003097 if (o) {
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003098 /* Copy the ID. */
3099 i->id = o - dc->tx->entries;
3100 return &i->entry;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003101 }
3102
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003103 /* The new entry to put in cache */
Frédéric Lécailleb65717f2019-06-07 14:25:25 +02003104 dc_tx->prev_lookup = o = &dc_tx->entries[dc_tx->lru_key];
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003105
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003106 ebpt_delete(o);
3107 o->key = i->entry.key;
3108 ebpt_insert(&dc_tx->cached_entries, o);
3109 i->id = dc_tx->lru_key;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003110
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003111 /* Update the index for the next entry to put in cache */
3112 dc_tx->lru_key = (dc_tx->lru_key + 1) & (dc->max_entries - 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02003113
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003114 return o;
3115}
Emeric Brunb3971ab2015-05-12 18:49:09 +02003116
3117/*
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003118 * Allocate a dictionary cache for each peer of <peers> section.
3119 * Return 1 if succeeded, 0 if not.
3120 */
3121int peers_alloc_dcache(struct peers *peers)
3122{
3123 struct peer *p;
3124
3125 for (p = peers->remote; p; p = p->next) {
3126 p->dcache = new_dcache(PEER_STKT_CACHE_MAX_ENTRIES);
3127 if (!p->dcache)
3128 return 0;
3129 }
3130
3131 return 1;
3132}
3133
3134/*
Emeric Brunb3971ab2015-05-12 18:49:09 +02003135 * Function used to register a table for sync on a group of peers
3136 *
3137 */
3138void peers_register_table(struct peers *peers, struct stktable *table)
3139{
3140 struct shared_table *st;
3141 struct peer * curpeer;
3142 int id = 0;
3143
3144 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Vincent Bernat02779b62016-04-03 13:48:43 +02003145 st = calloc(1,sizeof(*st));
Emeric Brunb3971ab2015-05-12 18:49:09 +02003146 st->table = table;
3147 st->next = curpeer->tables;
3148 if (curpeer->tables)
3149 id = curpeer->tables->local_id;
3150 st->local_id = id + 1;
3151
3152 curpeer->tables = st;
3153 }
3154
3155 table->sync_task = peers->sync_task;
Emeric Brun2b920a12010-09-23 18:30:22 +02003156}
3157
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003158/*
3159 * Parse the "show peers" command arguments.
3160 * Returns 0 if succeeded, 1 if not with the ->msg of the appctx set as
3161 * error message.
3162 */
3163static int cli_parse_show_peers(char **args, char *payload, struct appctx *appctx, void *private)
3164{
3165 appctx->ctx.cfgpeers.target = NULL;
3166
3167 if (*args[2]) {
3168 struct peers *p;
3169
3170 for (p = cfg_peers; p; p = p->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003171 if (strcmp(p->id, args[2]) == 0) {
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003172 appctx->ctx.cfgpeers.target = p;
3173 break;
3174 }
3175 }
3176
Willy Tarreau9d008692019-08-09 11:21:01 +02003177 if (!p)
3178 return cli_err(appctx, "No such peers\n");
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003179 }
3180
3181 return 0;
3182}
3183
3184/*
3185 * This function dumps the peer state information of <peers> "peers" section.
3186 * Returns 0 if the output buffer is full and needs to be called again, non-zero if not.
3187 * Dedicated to be called by cli_io_handler_show_peers() cli I/O handler.
3188 */
3189static int peers_dump_head(struct buffer *msg, struct stream_interface *si, struct peers *peers)
3190{
3191 struct tm tm;
3192
3193 get_localtime(peers->last_change, &tm);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003194 chunk_appendf(msg, "%p: [%02d/%s/%04d:%02d:%02d:%02d] id=%s disabled=%d flags=0x%x resync_timeout=%s task_calls=%u\n",
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003195 peers,
3196 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
3197 tm.tm_hour, tm.tm_min, tm.tm_sec,
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003198 peers->id, peers->disabled, peers->flags,
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003199 peers->resync_timeout ?
3200 tick_is_expired(peers->resync_timeout, now_ms) ? "<PAST>" :
3201 human_time(TICKS_TO_MS(peers->resync_timeout - now_ms),
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003202 TICKS_TO_MS(1000)) : "<NEVER>",
3203 peers->sync_task ? peers->sync_task->calls : 0);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003204
3205 if (ci_putchk(si_ic(si), msg) == -1) {
3206 si_rx_room_blk(si);
3207 return 0;
3208 }
3209
3210 return 1;
3211}
3212
3213/*
3214 * This function dumps <peer> state information.
3215 * Returns 0 if the output buffer is full and needs to be called again, non-zero
3216 * if not. Dedicated to be called by cli_io_handler_show_peers() cli I/O handler.
3217 */
3218static int peers_dump_peer(struct buffer *msg, struct stream_interface *si, struct peer *peer)
3219{
3220 struct connection *conn;
3221 char pn[INET6_ADDRSTRLEN];
3222 struct stream_interface *peer_si;
3223 struct stream *peer_s;
3224 struct appctx *appctx;
3225 struct shared_table *st;
3226
3227 addr_to_str(&peer->addr, pn, sizeof pn);
Frédéric Lécaille3fc0fe02020-10-08 09:46:24 +02003228 chunk_appendf(msg, " %p: id=%s(%s,%s) addr=%s:%d last_status=%s",
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003229 peer, peer->id,
3230 peer->local ? "local" : "remote",
Frédéric Lécaillee7e2b212020-10-05 12:33:07 +02003231 peer->appctx ? "active" : "inactive",
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003232 pn, get_host_port(&peer->addr),
Frédéric Lécaille3fc0fe02020-10-08 09:46:24 +02003233 statuscode_str(peer->statuscode));
3234
3235 chunk_appendf(msg, " last_hdshk=%s\n",
3236 peer->last_hdshk ? human_time(TICKS_TO_MS(now_ms - peer->last_hdshk),
3237 TICKS_TO_MS(1000)) : "<NEVER>");
3238
3239 chunk_appendf(msg, " reconnect=%s",
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003240 peer->reconnect ?
3241 tick_is_expired(peer->reconnect, now_ms) ? "<PAST>" :
3242 human_time(TICKS_TO_MS(peer->reconnect - now_ms),
Frédéric Lécaille3fc0fe02020-10-08 09:46:24 +02003243 TICKS_TO_MS(1000)) : "<NEVER>");
3244
3245 chunk_appendf(msg, " heartbeat=%s",
3246 peer->heartbeat ?
3247 tick_is_expired(peer->heartbeat, now_ms) ? "<PAST>" :
3248 human_time(TICKS_TO_MS(peer->heartbeat - now_ms),
3249 TICKS_TO_MS(1000)) : "<NEVER>");
3250
3251 chunk_appendf(msg, " confirm=%u tx_hbt=%u rx_hbt=%u no_hbt=%u new_conn=%u proto_err=%u coll=%u\n",
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01003252 peer->confirm, peer->tx_hbt, peer->rx_hbt,
Frédéric Lécaille3fc0fe02020-10-08 09:46:24 +02003253 peer->no_hbt, peer->new_conn, peer->proto_err, peer->coll);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003254
3255 chunk_appendf(&trash, " flags=0x%x", peer->flags);
3256
3257 appctx = peer->appctx;
3258 if (!appctx)
Frédéric Lécaille470502b2019-11-06 10:41:03 +01003259 goto table_info;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003260
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003261 chunk_appendf(&trash, " appctx:%p st0=%d st1=%d task_calls=%u", appctx, appctx->st0, appctx->st1,
3262 appctx->t ? appctx->t->calls : 0);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003263
3264 peer_si = peer->appctx->owner;
3265 if (!peer_si)
Frédéric Lécaille470502b2019-11-06 10:41:03 +01003266 goto table_info;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003267
3268 peer_s = si_strm(peer_si);
3269 if (!peer_s)
Frédéric Lécaille470502b2019-11-06 10:41:03 +01003270 goto table_info;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003271
3272 chunk_appendf(&trash, " state=%s", si_state_str(si_opposite(peer_si)->state));
3273
3274 conn = objt_conn(strm_orig(peer_s));
3275 if (conn)
3276 chunk_appendf(&trash, "\n xprt=%s", conn_get_xprt_name(conn));
3277
Willy Tarreau3ca14902019-07-17 14:53:15 +02003278 switch (conn && conn_get_src(conn) ? addr_to_str(conn->src, pn, sizeof(pn)) : AF_UNSPEC) {
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003279 case AF_INET:
3280 case AF_INET6:
Willy Tarreau3ca14902019-07-17 14:53:15 +02003281 chunk_appendf(&trash, " src=%s:%d", pn, get_host_port(conn->src));
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003282 break;
3283 case AF_UNIX:
3284 chunk_appendf(&trash, " src=unix:%d", strm_li(peer_s)->luid);
3285 break;
3286 }
3287
Willy Tarreau3ca14902019-07-17 14:53:15 +02003288 switch (conn && conn_get_dst(conn) ? addr_to_str(conn->dst, pn, sizeof(pn)) : AF_UNSPEC) {
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003289 case AF_INET:
3290 case AF_INET6:
Willy Tarreau3ca14902019-07-17 14:53:15 +02003291 chunk_appendf(&trash, " addr=%s:%d", pn, get_host_port(conn->dst));
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003292 break;
3293 case AF_UNIX:
3294 chunk_appendf(&trash, " addr=unix:%d", strm_li(peer_s)->luid);
3295 break;
3296 }
3297
Frédéric Lécaille470502b2019-11-06 10:41:03 +01003298 table_info:
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003299 if (peer->remote_table)
3300 chunk_appendf(&trash, "\n remote_table:%p id=%s local_id=%d remote_id=%d",
3301 peer->remote_table,
3302 peer->remote_table->table->id,
3303 peer->remote_table->local_id,
3304 peer->remote_table->remote_id);
3305
3306 if (peer->last_local_table)
3307 chunk_appendf(&trash, "\n last_local_table:%p id=%s local_id=%d remote_id=%d",
3308 peer->last_local_table,
3309 peer->last_local_table->table->id,
3310 peer->last_local_table->local_id,
3311 peer->last_local_table->remote_id);
3312
3313 if (peer->tables) {
3314 chunk_appendf(&trash, "\n shared tables:");
3315 for (st = peer->tables; st; st = st->next) {
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003316 int i, count;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003317 struct stktable *t;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003318 struct dcache *dcache;
3319
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003320 t = st->table;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003321 dcache = peer->dcache;
3322
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003323 chunk_appendf(&trash, "\n %p local_id=%d remote_id=%d "
3324 "flags=0x%x remote_data=0x%llx",
3325 st, st->local_id, st->remote_id,
3326 st->flags, (unsigned long long)st->remote_data);
3327 chunk_appendf(&trash, "\n last_acked=%u last_pushed=%u last_get=%u"
3328 " teaching_origin=%u update=%u",
3329 st->last_acked, st->last_pushed, st->last_get,
3330 st->teaching_origin, st->update);
3331 chunk_appendf(&trash, "\n table:%p id=%s update=%u localupdate=%u"
3332 " commitupdate=%u syncing=%u",
3333 t, t->id, t->update, t->localupdate, t->commitupdate, t->syncing);
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003334 chunk_appendf(&trash, "\n TX dictionary cache:");
3335 count = 0;
3336 for (i = 0; i < dcache->max_entries; i++) {
3337 struct ebpt_node *node;
3338 struct dict_entry *de;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003339
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003340 node = &dcache->tx->entries[i];
3341 if (!node->key)
3342 break;
3343
3344 if (!count++)
3345 chunk_appendf(&trash, "\n ");
3346 de = node->key;
3347 chunk_appendf(&trash, " %3u -> %s", i, (char *)de->value.key);
3348 count &= 0x3;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003349 }
3350 chunk_appendf(&trash, "\n RX dictionary cache:");
3351 count = 0;
3352 for (i = 0; i < dcache->max_entries; i++) {
3353 if (!count++)
3354 chunk_appendf(&trash, "\n ");
3355 chunk_appendf(&trash, " %3u -> %s", i,
3356 dcache->rx[i].de ?
3357 (char *)dcache->rx[i].de->value.key : "-");
3358 count &= 0x3;
3359 }
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003360 }
3361 }
3362
3363 end:
3364 chunk_appendf(&trash, "\n");
3365 if (ci_putchk(si_ic(si), msg) == -1) {
3366 si_rx_room_blk(si);
3367 return 0;
3368 }
3369
3370 return 1;
3371}
3372
3373/*
3374 * This function dumps all the peers of "peers" section.
3375 * Returns 0 if the output buffer is full and needs to be called
3376 * again, non-zero if not. It proceeds in an isolated thread, so
3377 * there is no thread safety issue here.
3378 */
3379static int cli_io_handler_show_peers(struct appctx *appctx)
3380{
3381 int show_all;
3382 int ret = 0, first_peers = 1;
3383 struct stream_interface *si = appctx->owner;
3384
3385 thread_isolate();
3386
3387 show_all = !appctx->ctx.cfgpeers.target;
3388
3389 chunk_reset(&trash);
3390
3391 while (appctx->st2 != STAT_ST_FIN) {
3392 switch (appctx->st2) {
3393 case STAT_ST_INIT:
3394 if (show_all)
3395 appctx->ctx.cfgpeers.peers = cfg_peers;
3396 else
3397 appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.target;
3398
3399 appctx->st2 = STAT_ST_LIST;
3400 /* fall through */
3401
3402 case STAT_ST_LIST:
3403 if (!appctx->ctx.cfgpeers.peers) {
3404 /* No more peers list. */
3405 appctx->st2 = STAT_ST_END;
3406 }
3407 else {
3408 if (!first_peers)
3409 chunk_appendf(&trash, "\n");
3410 else
3411 first_peers = 0;
3412 if (!peers_dump_head(&trash, si, appctx->ctx.cfgpeers.peers))
3413 goto out;
3414
3415 appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peers->remote;
3416 appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.peers->next;
3417 appctx->st2 = STAT_ST_INFO;
3418 }
3419 break;
3420
3421 case STAT_ST_INFO:
3422 if (!appctx->ctx.cfgpeers.peer) {
3423 /* End of peer list */
3424 if (show_all)
3425 appctx->st2 = STAT_ST_LIST;
3426 else
3427 appctx->st2 = STAT_ST_END;
3428 }
3429 else {
3430 if (!peers_dump_peer(&trash, si, appctx->ctx.cfgpeers.peer))
3431 goto out;
3432
3433 appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peer->next;
3434 }
3435 break;
3436
3437 case STAT_ST_END:
3438 appctx->st2 = STAT_ST_FIN;
3439 break;
3440 }
3441 }
3442 ret = 1;
3443 out:
3444 thread_release();
3445 return ret;
3446}
3447
3448/*
3449 * CLI keywords.
3450 */
3451static struct cli_kw_list cli_kws = {{ }, {
3452 { { "show", "peers", NULL }, "show peers [peers section]: dump some information about all the peers or this peers section", cli_parse_show_peers, cli_io_handler_show_peers, },
3453 {},
3454}};
3455
3456/* Register cli keywords */
3457INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
3458