blob: c5d8095915bdcd72eb1d5bc744e6c05c65794f86 [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 Tarreau3f0f82e2020-06-04 19:42:41 +020023#include <haproxy/applet.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020024#include <haproxy/api.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 Tarreau762d7a52020-06-04 11:23:07 +020028#include <haproxy/frontend.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020029#include <haproxy/net_helper.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020030#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020031#include <haproxy/peers.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020032#include <haproxy/task.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020033#include <haproxy/session-t.h>
Willy Tarreau3727a8a2020-06-04 17:37:26 +020034#include <haproxy/signal.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020035#include <haproxy/stats-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020036#include <haproxy/stream_interface.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020037#include <haproxy/time.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020038#include <haproxy/tools.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +020039#include <haproxy/thread.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020040
Willy Tarreau0f6ffd62020-06-03 19:33:00 +020041#include <haproxy/fd.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020042#include <proto/log.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020043#include <proto/proxy.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020044#include <proto/stream.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020045#include <haproxy/stick_table.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020046
47
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écaille95679dc2019-04-15 10:25:27 +0200292static const char *statuscode_str(int statuscode)
293{
294 switch (statuscode) {
295 case PEER_SESS_SC_CONNECTCODE:
296 return "CONN";
297 case PEER_SESS_SC_CONNECTEDCODE:
298 return "HSHK";
299 case PEER_SESS_SC_SUCCESSCODE:
300 return "ESTA";
301 case PEER_SESS_SC_TRYAGAIN:
302 return "RETR";
303 case PEER_SESS_SC_ERRPROTO:
304 return "PROT";
305 case PEER_SESS_SC_ERRVERSION:
306 return "VERS";
307 case PEER_SESS_SC_ERRHOST:
308 return "NAME";
309 case PEER_SESS_SC_ERRPEER:
310 return "UNKN";
311 default:
312 return "NONE";
313 }
314}
315
Emeric Brun18928af2017-03-29 16:32:53 +0200316/* This function encode an uint64 to 'dynamic' length format.
317 The encoded value is written at address *str, and the
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500318 caller must assure that size after *str is large enough.
Emeric Brun18928af2017-03-29 16:32:53 +0200319 At return, the *str is set at the next Byte after then
320 encoded integer. The function returns then length of the
321 encoded integer in Bytes */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200322int intencode(uint64_t i, char **str) {
323 int idx = 0;
324 unsigned char *msg;
325
Emeric Brunb3971ab2015-05-12 18:49:09 +0200326 msg = (unsigned char *)*str;
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200327 if (i < PEER_ENC_2BYTES_MIN) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200328 msg[0] = (unsigned char)i;
329 *str = (char *)&msg[idx+1];
330 return (idx+1);
331 }
332
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200333 msg[idx] =(unsigned char)i | PEER_ENC_2BYTES_MIN;
334 i = (i - PEER_ENC_2BYTES_MIN) >> PEER_ENC_2BYTES_MIN_BITS;
335 while (i >= PEER_ENC_STOP_BYTE) {
336 msg[++idx] = (unsigned char)i | PEER_ENC_STOP_BYTE;
337 i = (i - PEER_ENC_STOP_BYTE) >> PEER_ENC_STOP_BIT;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200338 }
339 msg[++idx] = (unsigned char)i;
340 *str = (char *)&msg[idx+1];
341 return (idx+1);
342}
343
344
345/* This function returns the decoded integer or 0
346 if decode failed
347 *str point on the beginning of the integer to decode
348 at the end of decoding *str point on the end of the
349 encoded integer or to null if end is reached */
Emeric Brun18928af2017-03-29 16:32:53 +0200350uint64_t intdecode(char **str, char *end)
351{
Emeric Brunb3971ab2015-05-12 18:49:09 +0200352 unsigned char *msg;
Emeric Brun18928af2017-03-29 16:32:53 +0200353 uint64_t i;
354 int shift;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200355
356 if (!*str)
357 return 0;
358
359 msg = (unsigned char *)*str;
Emeric Brun18928af2017-03-29 16:32:53 +0200360 if (msg >= (unsigned char *)end)
361 goto fail;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200362
Emeric Brun18928af2017-03-29 16:32:53 +0200363 i = *(msg++);
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200364 if (i >= PEER_ENC_2BYTES_MIN) {
365 shift = PEER_ENC_2BYTES_MIN_BITS;
Emeric Brun18928af2017-03-29 16:32:53 +0200366 do {
367 if (msg >= (unsigned char *)end)
368 goto fail;
369 i += (uint64_t)*msg << shift;
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200370 shift += PEER_ENC_STOP_BIT;
371 } while (*(msg++) >= PEER_ENC_STOP_BYTE);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200372 }
Frédéric Lécaillea8725ec2019-01-22 10:31:39 +0100373 *str = (char *)msg;
374 return i;
Emeric Brun18928af2017-03-29 16:32:53 +0200375
Frédéric Lécaillea8725ec2019-01-22 10:31:39 +0100376 fail:
377 *str = NULL;
378 return 0;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200379}
Emeric Brun2b920a12010-09-23 18:30:22 +0200380
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100381/*
382 * Build a "hello" peer protocol message.
383 * Return the number of written bytes written to build this messages if succeeded,
384 * 0 if not.
385 */
386static int peer_prepare_hellomsg(char *msg, size_t size, struct peer_prep_params *p)
387{
388 int min_ver, ret;
389 struct peer *peer;
390
391 peer = p->hello.peer;
392 min_ver = (peer->flags & PEER_F_DWNGRD) ? PEER_DWNGRD_MINOR_VER : PEER_MINOR_VER;
393 /* Prepare headers */
394 ret = snprintf(msg, size, PEER_SESSION_PROTO_NAME " %u.%u\n%s\n%s %d %d\n",
395 PEER_MAJOR_VER, min_ver, peer->id, localpeer, (int)getpid(), relative_pid);
396 if (ret >= size)
397 return 0;
398
399 return ret;
400}
401
402/*
403 * Build a "handshake succeeded" status message.
404 * Return the number of written bytes written to build this messages if succeeded,
405 * 0 if not.
406 */
407static int peer_prepare_status_successmsg(char *msg, size_t size, struct peer_prep_params *p)
408{
409 int ret;
410
411 ret = snprintf(msg, size, "%d\n", PEER_SESS_SC_SUCCESSCODE);
412 if (ret >= size)
413 return 0;
414
415 return ret;
416}
417
418/*
419 * Build an error status message.
420 * Return the number of written bytes written to build this messages if succeeded,
421 * 0 if not.
422 */
423static int peer_prepare_status_errormsg(char *msg, size_t size, struct peer_prep_params *p)
424{
425 int ret;
426 unsigned int st1;
427
428 st1 = p->error_status.st1;
429 ret = snprintf(msg, size, "%d\n", st1);
430 if (ret >= size)
431 return 0;
432
433 return ret;
434}
435
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200436/* Set the stick-table UPDATE message type byte at <msg_type> address,
437 * depending on <use_identifier> and <use_timed> boolean parameters.
438 * Always successful.
439 */
440static inline void peer_set_update_msg_type(char *msg_type, int use_identifier, int use_timed)
441{
442 if (use_timed) {
443 if (use_identifier)
444 *msg_type = PEER_MSG_STKT_UPDATE_TIMED;
445 else
446 *msg_type = PEER_MSG_STKT_INCUPDATE_TIMED;
447 }
448 else {
449 if (use_identifier)
450 *msg_type = PEER_MSG_STKT_UPDATE;
451 else
452 *msg_type = PEER_MSG_STKT_INCUPDATE;
453 }
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200454}
Emeric Brun2b920a12010-09-23 18:30:22 +0200455/*
Emeric Brunb3971ab2015-05-12 18:49:09 +0200456 * This prepare the data update message on the stick session <ts>, <st> is the considered
457 * stick table.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800458 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200459 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
460 * check size)
Emeric Brun2b920a12010-09-23 18:30:22 +0200461 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100462static int peer_prepare_updatemsg(char *msg, size_t size, struct peer_prep_params *p)
Emeric Brun2b920a12010-09-23 18:30:22 +0200463{
464 uint32_t netinteger;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200465 unsigned short datalen;
466 char *cursor, *datamsg;
Emeric Brun94900952015-06-11 18:25:54 +0200467 unsigned int data_type;
468 void *data_ptr;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100469 struct stksess *ts;
470 struct shared_table *st;
471 unsigned int updateid;
472 int use_identifier;
473 int use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200474 struct peer *peer;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100475
476 ts = p->updt.stksess;
477 st = p->updt.shared_table;
478 updateid = p->updt.updateid;
479 use_identifier = p->updt.use_identifier;
480 use_timed = p->updt.use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200481 peer = p->updt.peer;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200482
Frédéric Lécaille0e8db972019-05-24 14:34:34 +0200483 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200484
Emeric Brun2b920a12010-09-23 18:30:22 +0200485 /* construct message */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200486
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500487 /* check if we need to send the update identifier */
Emeric Brun819fc6f2017-06-13 19:37:32 +0200488 if (!st->last_pushed || updateid < st->last_pushed || ((updateid - st->last_pushed) != 1)) {
Emeric Bruna6a09982015-09-22 15:34:19 +0200489 use_identifier = 1;
Emeric Brun2b920a12010-09-23 18:30:22 +0200490 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200491
492 /* encode update identifier if needed */
493 if (use_identifier) {
Emeric Brun819fc6f2017-06-13 19:37:32 +0200494 netinteger = htonl(updateid);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200495 memcpy(cursor, &netinteger, sizeof(netinteger));
496 cursor += sizeof(netinteger);
Emeric Brun2b920a12010-09-23 18:30:22 +0200497 }
498
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200499 if (use_timed) {
500 netinteger = htonl(tick_remain(now_ms, ts->expire));
501 memcpy(cursor, &netinteger, sizeof(netinteger));
502 cursor += sizeof(netinteger);
503 }
504
Emeric Brunb3971ab2015-05-12 18:49:09 +0200505 /* encode the key */
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +0200506 if (st->table->type == SMP_T_STR) {
Emeric Brun2b920a12010-09-23 18:30:22 +0200507 int stlen = strlen((char *)ts->key.key);
508
Emeric Brunb3971ab2015-05-12 18:49:09 +0200509 intencode(stlen, &cursor);
510 memcpy(cursor, ts->key.key, stlen);
511 cursor += stlen;
Emeric Brun2b920a12010-09-23 18:30:22 +0200512 }
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +0200513 else if (st->table->type == SMP_T_SINT) {
Willy Tarreau6cde5d82020-02-25 09:41:22 +0100514 netinteger = htonl(read_u32(ts->key.key));
Emeric Brunb3971ab2015-05-12 18:49:09 +0200515 memcpy(cursor, &netinteger, sizeof(netinteger));
516 cursor += sizeof(netinteger);
Emeric Brun2b920a12010-09-23 18:30:22 +0200517 }
518 else {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200519 memcpy(cursor, ts->key.key, st->table->key_size);
520 cursor += st->table->key_size;
Emeric Brun2b920a12010-09-23 18:30:22 +0200521 }
522
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100523 HA_RWLOCK_RDLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200524 /* encode values */
Emeric Brun94900952015-06-11 18:25:54 +0200525 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200526
Emeric Brun94900952015-06-11 18:25:54 +0200527 data_ptr = stktable_data_ptr(st->table, ts, data_type);
528 if (data_ptr) {
529 switch (stktable_data_types[data_type].std_type) {
530 case STD_T_SINT: {
531 int data;
532
533 data = stktable_data_cast(data_ptr, std_t_sint);
534 intencode(data, &cursor);
535 break;
536 }
537 case STD_T_UINT: {
538 unsigned int data;
539
540 data = stktable_data_cast(data_ptr, std_t_uint);
541 intencode(data, &cursor);
542 break;
543 }
544 case STD_T_ULL: {
545 unsigned long long data;
546
547 data = stktable_data_cast(data_ptr, std_t_ull);
548 intencode(data, &cursor);
549 break;
550 }
551 case STD_T_FRQP: {
552 struct freq_ctr_period *frqp;
553
554 frqp = &stktable_data_cast(data_ptr, std_t_frqp);
555 intencode((unsigned int)(now_ms - frqp->curr_tick), &cursor);
556 intencode(frqp->curr_ctr, &cursor);
557 intencode(frqp->prev_ctr, &cursor);
558 break;
559 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200560 case STD_T_DICT: {
561 struct dict_entry *de;
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200562 struct ebpt_node *cached_de;
Willy Tarreau237f8ae2019-06-06 16:40:43 +0200563 struct dcache_tx_entry cde = { };
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200564 char *beg, *end;
565 size_t value_len, data_len;
566 struct dcache *dc;
567
568 de = stktable_data_cast(data_ptr, std_t_dict);
Frédéric Lécailleaf9990f2019-11-13 17:50:34 +0100569 if (!de) {
570 /* No entry */
571 intencode(0, &cursor);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200572 break;
Frédéric Lécailleaf9990f2019-11-13 17:50:34 +0100573 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200574
575 dc = peer->dcache;
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200576 cde.entry.key = de;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200577 cached_de = dcache_tx_insert(dc, &cde);
Frédéric Lécaillefd827932019-06-07 10:34:04 +0200578 if (cached_de == &cde.entry) {
579 if (cde.id + 1 >= PEER_ENC_2BYTES_MIN)
580 break;
581 /* Encode the length of the remaining data -> 1 */
582 intencode(1, &cursor);
583 /* Encode the cache entry ID */
584 intencode(cde.id + 1, &cursor);
585 }
586 else {
587 /* Leave enough room to encode the remaining data length. */
588 end = beg = cursor + PEER_MSG_ENC_LENGTH_MAXLEN;
589 /* Encode the dictionary entry key */
590 intencode(cde.id + 1, &end);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200591 /* Encode the length of the dictionary entry data */
Frédéric Lécaillefd827932019-06-07 10:34:04 +0200592 value_len = de->len;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200593 intencode(value_len, &end);
594 /* Copy the data */
595 memcpy(end, de->value.key, value_len);
596 end += value_len;
Frédéric Lécaillefd827932019-06-07 10:34:04 +0200597 /* Encode the length of the data */
598 data_len = end - beg;
599 intencode(data_len, &cursor);
600 memmove(cursor, beg, data_len);
601 cursor += data_len;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200602 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200603 break;
604 }
Emeric Brun94900952015-06-11 18:25:54 +0200605 }
606 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200607 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100608 HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200609
610 /* Compute datalen */
611 datalen = (cursor - datamsg);
612
613 /* prepare message header */
614 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200615 peer_set_update_msg_type(&msg[1], use_identifier, use_timed);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200616 cursor = &msg[2];
617 intencode(datalen, &cursor);
618
619 /* move data after header */
620 memmove(cursor, datamsg, datalen);
621
622 /* return header size + data_len */
623 return (cursor - msg) + datalen;
624}
625
626/*
627 * This prepare the switch table message to targeted share table <st>.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800628 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200629 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
630 * check size)
631 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100632static int peer_prepare_switchmsg(char *msg, size_t size, struct peer_prep_params *params)
Emeric Brunb3971ab2015-05-12 18:49:09 +0200633{
634 int len;
635 unsigned short datalen;
Willy Tarreau83061a82018-07-13 11:56:34 +0200636 struct buffer *chunk;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200637 char *cursor, *datamsg, *chunkp, *chunkq;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200638 uint64_t data = 0;
Emeric Brun94900952015-06-11 18:25:54 +0200639 unsigned int data_type;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100640 struct shared_table *st;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200641
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100642 st = params->swtch.shared_table;
Frédéric Lécaille39143342019-05-24 14:32:27 +0200643 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200644
645 /* Encode data */
646
647 /* encode local id */
648 intencode(st->local_id, &cursor);
649
650 /* encode table name */
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100651 len = strlen(st->table->nid);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200652 intencode(len, &cursor);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100653 memcpy(cursor, st->table->nid, len);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200654 cursor += len;
655
656 /* encode table type */
657
Emeric Brun530ba382020-06-02 11:17:42 +0200658 intencode(peer_net_key_type[st->table->type], &cursor);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200659
660 /* encode table key size */
661 intencode(st->table->key_size, &cursor);
662
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200663 chunk = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200664 chunkp = chunkq = chunk->area;
Emeric Brun94900952015-06-11 18:25:54 +0200665 /* encode available known data types in table */
666 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
667 if (st->table->data_ofs[data_type]) {
668 switch (stktable_data_types[data_type].std_type) {
669 case STD_T_SINT:
670 case STD_T_UINT:
671 case STD_T_ULL:
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200672 case STD_T_DICT:
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200673 data |= 1 << data_type;
674 break;
Emeric Brun94900952015-06-11 18:25:54 +0200675 case STD_T_FRQP:
676 data |= 1 << data_type;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200677 intencode(data_type, &chunkq);
678 intencode(st->table->data_arg[data_type].u, &chunkq);
Emeric Brun94900952015-06-11 18:25:54 +0200679 break;
680 }
681 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200682 }
683 intencode(data, &cursor);
684
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200685 /* Encode stick-table entries duration. */
686 intencode(st->table->expire, &cursor);
687
688 if (chunkq > chunkp) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200689 chunk->data = chunkq - chunkp;
690 memcpy(cursor, chunk->area, chunk->data);
691 cursor += chunk->data;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200692 }
693
Emeric Brunb3971ab2015-05-12 18:49:09 +0200694 /* Compute datalen */
695 datalen = (cursor - datamsg);
Emeric Brun2b920a12010-09-23 18:30:22 +0200696
Emeric Brunb3971ab2015-05-12 18:49:09 +0200697 /* prepare message header */
698 msg[0] = PEER_MSG_CLASS_STICKTABLE;
699 msg[1] = PEER_MSG_STKT_DEFINE;
700 cursor = &msg[2];
701 intencode(datalen, &cursor);
Emeric Brun2b920a12010-09-23 18:30:22 +0200702
Emeric Brunb3971ab2015-05-12 18:49:09 +0200703 /* move data after header */
704 memmove(cursor, datamsg, datalen);
705
706 /* return header size + data_len */
707 return (cursor - msg) + datalen;
Emeric Brun2b920a12010-09-23 18:30:22 +0200708}
709
Emeric Brunb3971ab2015-05-12 18:49:09 +0200710/*
711 * This prepare the acknowledge message on the stick session <ts>, <st> is the considered
712 * stick table.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800713 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200714 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
715 * check size)
716 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100717static int peer_prepare_ackmsg(char *msg, size_t size, struct peer_prep_params *p)
Emeric Brunb3971ab2015-05-12 18:49:09 +0200718{
719 unsigned short datalen;
720 char *cursor, *datamsg;
721 uint32_t netinteger;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100722 struct shared_table *st;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200723
Frédéric Lécaille39143342019-05-24 14:32:27 +0200724 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200725
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100726 st = p->ack.shared_table;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200727 intencode(st->remote_id, &cursor);
728 netinteger = htonl(st->last_get);
729 memcpy(cursor, &netinteger, sizeof(netinteger));
730 cursor += sizeof(netinteger);
731
732 /* Compute datalen */
733 datalen = (cursor - datamsg);
734
735 /* prepare message header */
736 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Emeric Brune1ab8082015-08-21 11:48:54 +0200737 msg[1] = PEER_MSG_STKT_ACK;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200738 cursor = &msg[2];
739 intencode(datalen, &cursor);
740
741 /* move data after header */
742 memmove(cursor, datamsg, datalen);
743
744 /* return header size + data_len */
745 return (cursor - msg) + datalen;
746}
Emeric Brun2b920a12010-09-23 18:30:22 +0200747
748/*
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200749 * Function to deinit connected peer
750 */
751void __peer_session_deinit(struct peer *peer)
752{
753 struct stream_interface *si;
754 struct stream *s;
755 struct peers *peers;
756
757 if (!peer->appctx)
758 return;
759
760 si = peer->appctx->owner;
761 if (!si)
762 return;
763
764 s = si_strm(si);
765 if (!s)
766 return;
767
768 peers = strm_fe(s)->parent;
769 if (!peers)
770 return;
771
772 if (peer->appctx->st0 == PEER_SESS_ST_WAITMSG)
773 HA_ATOMIC_SUB(&connected_peers, 1);
774
775 HA_ATOMIC_SUB(&active_peers, 1);
776
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200777 flush_dcache(peer);
778
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200779 /* Re-init current table pointers to force announcement on re-connect */
780 peer->remote_table = peer->last_local_table = NULL;
781 peer->appctx = NULL;
782 if (peer->flags & PEER_F_LEARN_ASSIGN) {
783 /* unassign current peer for learning */
784 peer->flags &= ~(PEER_F_LEARN_ASSIGN);
785 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
786
787 /* reschedule a resync */
788 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000));
789 }
790 /* reset teaching and learning flags to 0 */
791 peer->flags &= PEER_TEACH_RESET;
792 peer->flags &= PEER_LEARN_RESET;
Frédéric Lécaille3585cab2019-11-20 11:17:30 +0100793 /* set this peer as dead from heartbeat point of view */
794 peer->flags &= ~PEER_F_ALIVE;
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200795 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
796}
797
798/*
Emeric Brun2b920a12010-09-23 18:30:22 +0200799 * Callback to release a session with a peer
800 */
Willy Tarreau00a37f02015-04-13 12:05:19 +0200801static void peer_session_release(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +0200802{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200803 struct peer *peer = appctx->ctx.peers.ptr;
Emeric Brun2b920a12010-09-23 18:30:22 +0200804
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100805 /* appctx->ctx.peers.ptr is not a peer session */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100806 if (appctx->st0 < PEER_SESS_ST_SENDSUCCESS)
Emeric Brun2b920a12010-09-23 18:30:22 +0200807 return;
808
809 /* peer session identified */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200810 if (peer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100811 HA_SPIN_LOCK(PEER_LOCK, &peer->lock);
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200812 if (peer->appctx == appctx)
813 __peer_session_deinit(peer);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100814 HA_SPIN_UNLOCK(PEER_LOCK, &peer->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +0200815 }
816}
817
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200818/* Retrieve the major and minor versions of peers protocol
819 * announced by a remote peer. <str> is a null-terminated
820 * string with the following format: "<maj_ver>.<min_ver>".
821 */
822static int peer_get_version(const char *str,
823 unsigned int *maj_ver, unsigned int *min_ver)
824{
825 unsigned int majv, minv;
826 const char *pos, *saved;
827 const char *end;
828
829 saved = pos = str;
830 end = str + strlen(str);
831
832 majv = read_uint(&pos, end);
833 if (saved == pos || *pos++ != '.')
834 return -1;
835
836 saved = pos;
837 minv = read_uint(&pos, end);
838 if (saved == pos || pos != end)
839 return -1;
840
841 *maj_ver = majv;
842 *min_ver = minv;
843
844 return 0;
845}
Emeric Brun2b920a12010-09-23 18:30:22 +0200846
847/*
Frédéric Lécaillece025572019-01-21 13:38:06 +0100848 * Parse a line terminated by an optional '\r' character, followed by a mandatory
849 * '\n' character.
850 * Returns 1 if succeeded or 0 if a '\n' character could not be found, and -1 if
851 * a line could not be read because the communication channel is closed.
852 */
853static inline int peer_getline(struct appctx *appctx)
854{
855 int n;
856 struct stream_interface *si = appctx->owner;
857
858 n = co_getline(si_oc(si), trash.area, trash.size);
859 if (!n)
860 return 0;
861
862 if (n < 0 || trash.area[n - 1] != '\n') {
863 appctx->st0 = PEER_SESS_ST_END;
864 return -1;
865 }
866
867 if (n > 1 && (trash.area[n - 2] == '\r'))
868 trash.area[n - 2] = 0;
869 else
870 trash.area[n - 1] = 0;
871
872 co_skip(si_oc(si), n);
873
874 return n;
875}
876
877/*
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100878 * Send a message after having called <peer_prepare_msg> to build it.
879 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
880 * Returns -1 if there was not enough room left to send the message,
881 * any other negative returned value must be considered as an error with an appcxt st0
882 * returned value equal to PEER_SESS_ST_END.
883 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100884static inline int peer_send_msg(struct appctx *appctx,
885 int (*peer_prepare_msg)(char *, size_t, struct peer_prep_params *),
886 struct peer_prep_params *params)
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100887{
888 int ret, msglen;
889 struct stream_interface *si = appctx->owner;
890
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100891 msglen = peer_prepare_msg(trash.area, trash.size, params);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100892 if (!msglen) {
893 /* internal error: message does not fit in trash */
894 appctx->st0 = PEER_SESS_ST_END;
895 return 0;
896 }
897
898 /* message to buffer */
899 ret = ci_putblk(si_ic(si), trash.area, msglen);
900 if (ret <= 0) {
901 if (ret == -1) {
902 /* No more write possible */
903 si_rx_room_blk(si);
904 return -1;
905 }
906 appctx->st0 = PEER_SESS_ST_END;
907 }
908
909 return ret;
910}
911
912/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100913 * Send a hello message.
914 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
915 * Returns -1 if there was not enough room left to send the message,
916 * any other negative returned value must be considered as an error with an appcxt st0
917 * returned value equal to PEER_SESS_ST_END.
918 */
919static inline int peer_send_hellomsg(struct appctx *appctx, struct peer *peer)
920{
921 struct peer_prep_params p = {
922 .hello.peer = peer,
923 };
924
925 return peer_send_msg(appctx, peer_prepare_hellomsg, &p);
926}
927
928/*
929 * Send a success peer handshake status message.
930 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
931 * Returns -1 if there was not enough room left to send the message,
932 * any other negative returned value must be considered as an error with an appcxt st0
933 * returned value equal to PEER_SESS_ST_END.
934 */
935static inline int peer_send_status_successmsg(struct appctx *appctx)
936{
937 return peer_send_msg(appctx, peer_prepare_status_successmsg, NULL);
938}
939
940/*
941 * Send a peer handshake status error message.
942 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
943 * Returns -1 if there was not enough room left to send the message,
944 * any other negative returned value must be considered as an error with an appcxt st0
945 * returned value equal to PEER_SESS_ST_END.
946 */
947static inline int peer_send_status_errormsg(struct appctx *appctx)
948{
949 struct peer_prep_params p = {
950 .error_status.st1 = appctx->st1,
951 };
952
953 return peer_send_msg(appctx, peer_prepare_status_errormsg, &p);
954}
955
956/*
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100957 * Send a stick-table switch message.
958 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
959 * Returns -1 if there was not enough room left to send the message,
960 * any other negative returned value must be considered as an error with an appcxt st0
961 * returned value equal to PEER_SESS_ST_END.
962 */
963static inline int peer_send_switchmsg(struct shared_table *st, struct appctx *appctx)
964{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100965 struct peer_prep_params p = {
966 .swtch.shared_table = st,
967 };
968
969 return peer_send_msg(appctx, peer_prepare_switchmsg, &p);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100970}
971
972/*
973 * Send a stick-table update acknowledgement message.
974 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
975 * Returns -1 if there was not enough room left to send the message,
976 * any other negative returned value must be considered as an error with an appcxt st0
977 * returned value equal to PEER_SESS_ST_END.
978 */
979static inline int peer_send_ackmsg(struct shared_table *st, struct appctx *appctx)
980{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100981 struct peer_prep_params p = {
982 .ack.shared_table = st,
983 };
984
985 return peer_send_msg(appctx, peer_prepare_ackmsg, &p);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100986}
987
988/*
Frédéric Lécaille87f554c2019-01-22 17:26:50 +0100989 * Send a stick-table update message.
990 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
991 * Returns -1 if there was not enough room left to send the message,
992 * any other negative returned value must be considered as an error with an appcxt st0
993 * returned value equal to PEER_SESS_ST_END.
994 */
995static inline int peer_send_updatemsg(struct shared_table *st, struct appctx *appctx, struct stksess *ts,
996 unsigned int updateid, int use_identifier, int use_timed)
997{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100998 struct peer_prep_params p = {
999 .updt.stksess = ts,
1000 .updt.shared_table = st,
1001 .updt.updateid = updateid,
1002 .updt.use_identifier = use_identifier,
1003 .updt.use_timed = use_timed,
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001004 .updt.peer = appctx->ctx.peers.ptr,
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +01001005 };
1006
1007 return peer_send_msg(appctx, peer_prepare_updatemsg, &p);
Frédéric Lécaille87f554c2019-01-22 17:26:50 +01001008}
1009
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001010/*
1011 * Build a peer protocol control class message.
1012 * Returns the number of written bytes used to build the message if succeeded,
1013 * 0 if not.
1014 */
1015static int peer_prepare_control_msg(char *msg, size_t size, struct peer_prep_params *p)
1016{
1017 if (size < sizeof p->control.head)
1018 return 0;
1019
1020 msg[0] = p->control.head[0];
1021 msg[1] = p->control.head[1];
1022
1023 return 2;
1024}
Frédéric Lécaille6a8303d2019-01-22 22:25:17 +01001025
1026/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001027 * Send a stick-table synchronization request message.
1028 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1029 * Returns -1 if there was not enough room left to send the message,
1030 * any other negative returned value must be considered as an error with an appctx st0
1031 * returned value equal to PEER_SESS_ST_END.
1032 */
1033static inline int peer_send_resync_reqmsg(struct appctx *appctx)
1034{
1035 struct peer_prep_params p = {
1036 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCREQ, },
1037 };
1038
1039 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1040}
1041
1042/*
1043 * Send a stick-table synchronization confirmation message.
1044 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1045 * Returns -1 if there was not enough room left to send the message,
1046 * any other negative returned value must be considered as an error with an appctx st0
1047 * returned value equal to PEER_SESS_ST_END.
1048 */
1049static inline int peer_send_resync_confirmsg(struct appctx *appctx)
1050{
1051 struct peer_prep_params p = {
1052 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCCONFIRM, },
1053 };
1054
1055 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1056}
1057
1058/*
1059 * Send a stick-table synchronization finished message.
1060 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1061 * Returns -1 if there was not enough room left to send the message,
1062 * any other negative returned value must be considered as an error with an appctx st0
1063 * returned value equal to PEER_SESS_ST_END.
1064 */
Emeric Brun70de43b2020-03-16 10:51:01 +01001065static inline int peer_send_resync_finishedmsg(struct appctx *appctx, struct peers *peers)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001066{
1067 struct peer_prep_params p = {
1068 .control.head = { PEER_MSG_CLASS_CONTROL, },
1069 };
1070
Emeric Brun70de43b2020-03-16 10:51:01 +01001071 p.control.head[1] = (peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FINISHED ?
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001072 PEER_MSG_CTRL_RESYNCFINISHED : PEER_MSG_CTRL_RESYNCPARTIAL;
1073
1074 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1075}
1076
1077/*
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001078 * Send a heartbeat message.
1079 * Return 0 if the message could not be built modifying the appctx st0 to PEER_SESS_ST_END value.
1080 * Returns -1 if there was not enough room left to send the message,
1081 * any other negative returned value must be considered as an error with an appctx st0
1082 * returned value equal to PEER_SESS_ST_END.
1083 */
1084static inline int peer_send_heartbeatmsg(struct appctx *appctx)
1085{
1086 struct peer_prep_params p = {
1087 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_HEARTBEAT, },
1088 };
1089
1090 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1091}
1092
1093/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001094 * Build a peer protocol error class message.
1095 * Returns the number of written bytes used to build the message if succeeded,
1096 * 0 if not.
1097 */
1098static int peer_prepare_error_msg(char *msg, size_t size, struct peer_prep_params *p)
1099{
1100 if (size < sizeof p->error.head)
1101 return 0;
1102
1103 msg[0] = p->error.head[0];
1104 msg[1] = p->error.head[1];
1105
1106 return 2;
1107}
1108
1109/*
1110 * Send a "size limit reached" error message.
1111 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1112 * Returns -1 if there was not enough room left to send the message,
1113 * any other negative returned value must be considered as an error with an appctx st0
1114 * returned value equal to PEER_SESS_ST_END.
1115 */
1116static inline int peer_send_error_size_limitmsg(struct appctx *appctx)
1117{
1118 struct peer_prep_params p = {
1119 .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_SIZELIMIT, },
1120 };
1121
1122 return peer_send_msg(appctx, peer_prepare_error_msg, &p);
1123}
1124
1125/*
1126 * Send a "peer protocol" error message.
1127 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1128 * Returns -1 if there was not enough room left to send the message,
1129 * any other negative returned value must be considered as an error with an appctx st0
1130 * returned value equal to PEER_SESS_ST_END.
1131 */
1132static inline int peer_send_error_protomsg(struct appctx *appctx)
1133{
1134 struct peer_prep_params p = {
1135 .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_PROTOCOL, },
1136 };
1137
1138 return peer_send_msg(appctx, peer_prepare_error_msg, &p);
1139}
1140
1141/*
Frédéric Lécaille6a8303d2019-01-22 22:25:17 +01001142 * Function used to lookup for recent stick-table updates associated with
1143 * <st> shared stick-table when a lesson must be taught a peer (PEER_F_LEARN_ASSIGN flag set).
1144 */
1145static inline struct stksess *peer_teach_process_stksess_lookup(struct shared_table *st)
1146{
1147 struct eb32_node *eb;
1148
1149 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1150 if (!eb) {
1151 eb = eb32_first(&st->table->updates);
1152 if (!eb || ((int)(eb->key - st->last_pushed) <= 0)) {
1153 st->table->commitupdate = st->last_pushed = st->table->localupdate;
1154 return NULL;
1155 }
1156 }
1157
1158 if ((int)(eb->key - st->table->localupdate) > 0) {
1159 st->table->commitupdate = st->last_pushed = st->table->localupdate;
1160 return NULL;
1161 }
1162
1163 return eb32_entry(eb, struct stksess, upd);
1164}
1165
1166/*
1167 * Function used to lookup for recent stick-table updates associated with
1168 * <st> shared stick-table during teach state 1 step.
1169 */
1170static inline struct stksess *peer_teach_stage1_stksess_lookup(struct shared_table *st)
1171{
1172 struct eb32_node *eb;
1173
1174 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1175 if (!eb) {
1176 st->flags |= SHTABLE_F_TEACH_STAGE1;
1177 eb = eb32_first(&st->table->updates);
1178 if (eb)
1179 st->last_pushed = eb->key - 1;
1180 return NULL;
1181 }
1182
1183 return eb32_entry(eb, struct stksess, upd);
1184}
1185
1186/*
1187 * Function used to lookup for recent stick-table updates associated with
1188 * <st> shared stick-table during teach state 2 step.
1189 */
1190static inline struct stksess *peer_teach_stage2_stksess_lookup(struct shared_table *st)
1191{
1192 struct eb32_node *eb;
1193
1194 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1195 if (!eb || eb->key > st->teaching_origin) {
1196 st->flags |= SHTABLE_F_TEACH_STAGE2;
1197 return NULL;
1198 }
1199
1200 return eb32_entry(eb, struct stksess, upd);
1201}
1202
1203/*
1204 * Generic function to emit update messages for <st> stick-table when a lesson must
1205 * be taught to the peer <p>.
1206 * <locked> must be set to 1 if the shared table <st> is already locked when entering
1207 * this function, 0 if not.
1208 *
1209 * This function temporary unlock/lock <st> when it sends stick-table updates or
1210 * when decrementing its refcount in case of any error when it sends this updates.
1211 *
1212 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1213 * Returns -1 if there was not enough room left to send the message,
1214 * any other negative returned value must be considered as an error with an appcxt st0
1215 * returned value equal to PEER_SESS_ST_END.
1216 * If it returns 0 or -1, this function leave <st> locked if already locked when entering this function
1217 * unlocked if not already locked when entering this function.
1218 */
1219static inline int peer_send_teachmsgs(struct appctx *appctx, struct peer *p,
1220 struct stksess *(*peer_stksess_lookup)(struct shared_table *),
1221 struct shared_table *st, int locked)
1222{
1223 int ret, new_pushed, use_timed;
1224
1225 ret = 1;
1226 use_timed = 0;
1227 if (st != p->last_local_table) {
1228 ret = peer_send_switchmsg(st, appctx);
1229 if (ret <= 0)
1230 return ret;
1231
1232 p->last_local_table = st;
1233 }
1234
1235 if (peer_stksess_lookup != peer_teach_process_stksess_lookup)
1236 use_timed = !(p->flags & PEER_F_DWNGRD);
1237
1238 /* We force new pushed to 1 to force identifier in update message */
1239 new_pushed = 1;
1240
1241 if (!locked)
1242 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1243
1244 while (1) {
1245 struct stksess *ts;
1246 unsigned updateid;
1247
1248 /* push local updates */
1249 ts = peer_stksess_lookup(st);
1250 if (!ts)
1251 break;
1252
1253 updateid = ts->upd.key;
1254 ts->ref_cnt++;
1255 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1256
1257 ret = peer_send_updatemsg(st, appctx, ts, updateid, new_pushed, use_timed);
1258 if (ret <= 0) {
1259 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1260 ts->ref_cnt--;
1261 if (!locked)
1262 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1263 return ret;
1264 }
1265
1266 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1267 ts->ref_cnt--;
1268 st->last_pushed = updateid;
1269
1270 if (peer_stksess_lookup == peer_teach_process_stksess_lookup &&
1271 (int)(st->last_pushed - st->table->commitupdate) > 0)
1272 st->table->commitupdate = st->last_pushed;
1273
1274 /* identifier may not needed in next update message */
1275 new_pushed = 0;
1276 }
1277
1278 out:
1279 if (!locked)
1280 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1281 return 1;
1282}
1283
1284/*
1285 * Function to emit update messages for <st> stick-table when a lesson must
1286 * be taught to the peer <p> (PEER_F_LEARN_ASSIGN flag set).
1287 *
1288 * Note that <st> shared stick-table is locked when calling this function.
1289 *
1290 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1291 * Returns -1 if there was not enough room left to send the message,
1292 * any other negative returned value must be considered as an error with an appcxt st0
1293 * returned value equal to PEER_SESS_ST_END.
1294 */
1295static inline int peer_send_teach_process_msgs(struct appctx *appctx, struct peer *p,
1296 struct shared_table *st)
1297{
1298 return peer_send_teachmsgs(appctx, p, peer_teach_process_stksess_lookup, st, 1);
1299}
1300
1301/*
1302 * Function to emit update messages for <st> stick-table when a lesson must
1303 * be taught to the peer <p> during teach state 1 step.
1304 *
1305 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1306 * Returns -1 if there was not enough room left to send the message,
1307 * any other negative returned value must be considered as an error with an appcxt st0
1308 * returned value equal to PEER_SESS_ST_END.
1309 */
1310static inline int peer_send_teach_stage1_msgs(struct appctx *appctx, struct peer *p,
1311 struct shared_table *st)
1312{
1313 return peer_send_teachmsgs(appctx, p, peer_teach_stage1_stksess_lookup, st, 0);
1314}
1315
1316/*
1317 * Function to emit update messages for <st> stick-table when a lesson must
1318 * be taught to the peer <p> during teach state 1 step.
1319 *
1320 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1321 * Returns -1 if there was not enough room left to send the message,
1322 * any other negative returned value must be considered as an error with an appcxt st0
1323 * returned value equal to PEER_SESS_ST_END.
1324 */
1325static inline int peer_send_teach_stage2_msgs(struct appctx *appctx, struct peer *p,
1326 struct shared_table *st)
1327{
1328 return peer_send_teachmsgs(appctx, p, peer_teach_stage2_stksess_lookup, st, 0);
1329}
1330
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001331
1332/*
1333 * Function used to parse a stick-table update message after it has been received
1334 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1335 * receipt buffer with <msg_end> being position of the end of the stick-table message.
1336 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1337 * was encountered.
1338 * <exp> must be set if the stick-table entry expires.
1339 * <updt> must be set for PEER_MSG_STKT_UPDATE or PEER_MSG_STKT_UPDATE_TIMED stick-table
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001340 * 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 +01001341 * update ID.
1342 * <totl> is the length of the stick-table update message computed upon receipt.
1343 */
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001344static int peer_treat_updatemsg(struct appctx *appctx, struct peer *p, int updt, int exp,
1345 char **msg_cur, char *msg_end, int msg_len, int totl)
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001346{
1347 struct stream_interface *si = appctx->owner;
1348 struct shared_table *st = p->remote_table;
1349 struct stksess *ts, *newts;
1350 uint32_t update;
1351 int expire;
1352 unsigned int data_type;
1353 void *data_ptr;
1354
1355 /* Here we have data message */
1356 if (!st)
1357 goto ignore_msg;
1358
1359 expire = MS_TO_TICKS(st->table->expire);
1360
1361 if (updt) {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001362 if (msg_len < sizeof(update))
1363 goto malformed_exit;
1364
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001365 memcpy(&update, *msg_cur, sizeof(update));
1366 *msg_cur += sizeof(update);
1367 st->last_get = htonl(update);
1368 }
1369 else {
1370 st->last_get++;
1371 }
1372
1373 if (exp) {
1374 size_t expire_sz = sizeof expire;
1375
Willy Tarreau1e82a142019-01-29 11:08:06 +01001376 if (*msg_cur + expire_sz > msg_end)
1377 goto malformed_exit;
1378
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001379 memcpy(&expire, *msg_cur, expire_sz);
1380 *msg_cur += expire_sz;
1381 expire = ntohl(expire);
1382 }
1383
1384 newts = stksess_new(st->table, NULL);
1385 if (!newts)
1386 goto ignore_msg;
1387
1388 if (st->table->type == SMP_T_STR) {
1389 unsigned int to_read, to_store;
1390
1391 to_read = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001392 if (!*msg_cur)
1393 goto malformed_free_newts;
1394
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001395 to_store = MIN(to_read, st->table->key_size - 1);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001396 if (*msg_cur + to_store > msg_end)
1397 goto malformed_free_newts;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001398
1399 memcpy(newts->key.key, *msg_cur, to_store);
1400 newts->key.key[to_store] = 0;
1401 *msg_cur += to_read;
1402 }
1403 else if (st->table->type == SMP_T_SINT) {
1404 unsigned int netinteger;
1405
Willy Tarreau1e82a142019-01-29 11:08:06 +01001406 if (*msg_cur + sizeof(netinteger) > msg_end)
1407 goto malformed_free_newts;
1408
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001409 memcpy(&netinteger, *msg_cur, sizeof(netinteger));
1410 netinteger = ntohl(netinteger);
1411 memcpy(newts->key.key, &netinteger, sizeof(netinteger));
1412 *msg_cur += sizeof(netinteger);
1413 }
1414 else {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001415 if (*msg_cur + st->table->key_size > msg_end)
1416 goto malformed_free_newts;
1417
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001418 memcpy(newts->key.key, *msg_cur, st->table->key_size);
1419 *msg_cur += st->table->key_size;
1420 }
1421
1422 /* lookup for existing entry */
1423 ts = stktable_set_entry(st->table, newts);
1424 if (ts != newts) {
1425 stksess_free(st->table, newts);
1426 newts = NULL;
1427 }
1428
1429 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
1430
1431 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001432 uint64_t decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001433
1434 if (!((1 << data_type) & st->remote_data))
1435 continue;
1436
Willy Tarreau1e82a142019-01-29 11:08:06 +01001437 decoded_int = intdecode(msg_cur, msg_end);
1438 if (!*msg_cur)
1439 goto malformed_unlock;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001440
Willy Tarreau1e82a142019-01-29 11:08:06 +01001441 switch (stktable_data_types[data_type].std_type) {
1442 case STD_T_SINT:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001443 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1444 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001445 stktable_data_cast(data_ptr, std_t_sint) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001446 break;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001447
Willy Tarreau1e82a142019-01-29 11:08:06 +01001448 case STD_T_UINT:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001449 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1450 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001451 stktable_data_cast(data_ptr, std_t_uint) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001452 break;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001453
Willy Tarreau1e82a142019-01-29 11:08:06 +01001454 case STD_T_ULL:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001455 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1456 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001457 stktable_data_cast(data_ptr, std_t_ull) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001458 break;
Willy Tarreau1e82a142019-01-29 11:08:06 +01001459
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001460 case STD_T_FRQP: {
1461 struct freq_ctr_period data;
1462
1463 /* First bit is reserved for the freq_ctr_period lock
1464 Note: here we're still protected by the stksess lock
1465 so we don't need to update the update the freq_ctr_period
1466 using its internal lock */
1467
Willy Tarreau1e82a142019-01-29 11:08:06 +01001468 data.curr_tick = tick_add(now_ms, -decoded_int) & ~0x1;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001469 data.curr_ctr = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001470 if (!*msg_cur)
1471 goto malformed_unlock;
1472
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001473 data.prev_ctr = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001474 if (!*msg_cur)
1475 goto malformed_unlock;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001476
1477 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1478 if (data_ptr)
1479 stktable_data_cast(data_ptr, std_t_frqp) = data;
1480 break;
1481 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001482 case STD_T_DICT: {
1483 struct buffer *chunk;
1484 size_t data_len, value_len;
1485 unsigned int id;
1486 struct dict_entry *de;
1487 struct dcache *dc;
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001488 char *end;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001489
Frédéric Lécailleaf9990f2019-11-13 17:50:34 +01001490 if (!decoded_int) {
1491 /* No entry. */
1492 break;
1493 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001494 data_len = decoded_int;
1495 if (*msg_cur + data_len > msg_end)
1496 goto malformed_unlock;
1497
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001498 /* Compute the end of the current data, <msg_end> being at the end of
1499 * the entire message.
1500 */
1501 end = *msg_cur + data_len;
1502 id = intdecode(msg_cur, end);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001503 if (!*msg_cur || !id)
1504 goto malformed_unlock;
1505
1506 dc = p->dcache;
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001507 if (*msg_cur == end) {
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001508 /* Dictionary entry key without value. */
1509 if (id > dc->max_entries)
1510 break;
1511 /* IDs sent over the network are numbered from 1. */
1512 de = dc->rx[id - 1].de;
1513 }
1514 else {
1515 chunk = get_trash_chunk();
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001516 value_len = intdecode(msg_cur, end);
1517 if (!*msg_cur || *msg_cur + value_len > end ||
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001518 unlikely(value_len + 1 >= chunk->size))
1519 goto malformed_unlock;
1520
1521 chunk_memcpy(chunk, *msg_cur, value_len);
1522 chunk->area[chunk->data] = '\0';
Frédéric Lécaille56aec0d2019-06-06 14:14:15 +02001523 *msg_cur += value_len;
1524
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001525 de = dict_insert(&server_name_dict, chunk->area);
1526 dc->rx[id - 1].de = de;
1527 }
1528 if (de) {
1529 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1530 if (data_ptr)
1531 stktable_data_cast(data_ptr, std_t_dict) = de;
1532 }
1533 break;
1534 }
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001535 }
1536 }
1537 /* Force new expiration */
1538 ts->expire = tick_add(now_ms, expire);
1539
1540 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1541 stktable_touch_remote(st->table, ts, 1);
1542 return 1;
1543
1544 ignore_msg:
1545 /* skip consumed message */
1546 co_skip(si_oc(si), totl);
1547 return 0;
Willy Tarreau1e82a142019-01-29 11:08:06 +01001548
1549 malformed_unlock:
1550 /* malformed message */
1551 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1552 stktable_touch_remote(st->table, ts, 1);
1553 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1554 return 0;
1555
1556 malformed_free_newts:
1557 /* malformed message */
1558 stksess_free(st->table, newts);
1559 malformed_exit:
1560 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1561 return 0;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001562}
1563
Frédéric Lécaille87f554c2019-01-22 17:26:50 +01001564/*
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001565 * Function used to parse a stick-table update acknowledgement message after it
1566 * has been received by <p> peer with <msg_cur> as address of the pointer to the position in the
1567 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1568 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1569 * was encountered.
1570 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1571 */
1572static inline int peer_treat_ackmsg(struct appctx *appctx, struct peer *p,
1573 char **msg_cur, char *msg_end)
1574{
1575 /* ack message */
1576 uint32_t table_id ;
1577 uint32_t update;
1578 struct shared_table *st;
1579
1580 table_id = intdecode(msg_cur, msg_end);
1581 if (!*msg_cur || (*msg_cur + sizeof(update) > msg_end)) {
1582 /* malformed message */
1583 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1584 return 0;
1585 }
1586
1587 memcpy(&update, *msg_cur, sizeof(update));
1588 update = ntohl(update);
1589
1590 for (st = p->tables; st; st = st->next) {
1591 if (st->local_id == table_id) {
1592 st->update = update;
1593 break;
1594 }
1595 }
1596
1597 return 1;
1598}
1599
1600/*
1601 * Function used to parse a stick-table switch message after it has been received
1602 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1603 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1604 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1605 * was encountered.
1606 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1607 */
1608static inline int peer_treat_switchmsg(struct appctx *appctx, struct peer *p,
1609 char **msg_cur, char *msg_end)
1610{
1611 struct shared_table *st;
1612 int table_id;
1613
1614 table_id = intdecode(msg_cur, msg_end);
1615 if (!*msg_cur) {
1616 /* malformed message */
1617 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1618 return 0;
1619 }
1620
1621 p->remote_table = NULL;
1622 for (st = p->tables; st; st = st->next) {
1623 if (st->remote_id == table_id) {
1624 p->remote_table = st;
1625 break;
1626 }
1627 }
1628
1629 return 1;
1630}
1631
1632/*
1633 * Function used to parse a stick-table definition message after it has been received
1634 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1635 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1636 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1637 * was encountered.
1638 * <totl> is the length of the stick-table update message computed upon receipt.
1639 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1640 */
1641static inline int peer_treat_definemsg(struct appctx *appctx, struct peer *p,
1642 char **msg_cur, char *msg_end, int totl)
1643{
1644 struct stream_interface *si = appctx->owner;
1645 int table_id_len;
1646 struct shared_table *st;
1647 int table_type;
1648 int table_keylen;
1649 int table_id;
1650 uint64_t table_data;
1651
1652 table_id = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001653 if (!*msg_cur)
1654 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001655
1656 table_id_len = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001657 if (!*msg_cur)
1658 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001659
1660 p->remote_table = NULL;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001661 if (!table_id_len || (*msg_cur + table_id_len) >= msg_end)
1662 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001663
1664 for (st = p->tables; st; st = st->next) {
1665 /* Reset IDs */
1666 if (st->remote_id == table_id)
1667 st->remote_id = 0;
1668
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001669 if (!p->remote_table && (table_id_len == strlen(st->table->nid)) &&
1670 (memcmp(st->table->nid, *msg_cur, table_id_len) == 0))
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001671 p->remote_table = st;
1672 }
1673
1674 if (!p->remote_table)
1675 goto ignore_msg;
1676
1677 *msg_cur += table_id_len;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001678 if (*msg_cur >= msg_end)
1679 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001680
1681 table_type = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001682 if (!*msg_cur)
1683 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001684
1685 table_keylen = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001686 if (!*msg_cur)
1687 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001688
1689 table_data = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001690 if (!*msg_cur)
1691 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001692
Emeric Brun530ba382020-06-02 11:17:42 +02001693 if (p->remote_table->table->type != peer_int_key_type[table_type]
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001694 || p->remote_table->table->key_size != table_keylen) {
1695 p->remote_table = NULL;
1696 goto ignore_msg;
1697 }
1698
1699 p->remote_table->remote_data = table_data;
1700 p->remote_table->remote_id = table_id;
1701 return 1;
1702
1703 ignore_msg:
1704 co_skip(si_oc(si), totl);
1705 return 0;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001706
1707 malformed_exit:
1708 /* malformed message */
1709 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1710 return 0;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001711}
1712
1713/*
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001714 * Receive a stick-table message.
1715 * Returns 1 if there was no error, if not, returns 0 if not enough data were available,
1716 * -1 if there was an error updating the appctx state st0 accordingly.
1717 */
1718static inline int peer_recv_msg(struct appctx *appctx, char *msg_head, size_t msg_head_sz,
1719 uint32_t *msg_len, int *totl)
1720{
1721 int reql;
1722 struct stream_interface *si = appctx->owner;
1723
1724 reql = co_getblk(si_oc(si), msg_head, 2 * sizeof(char), *totl);
1725 if (reql <= 0) /* closed or EOL not found */
1726 goto incomplete;
1727
1728 *totl += reql;
1729
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +02001730 if (!(msg_head[1] & PEER_MSG_STKT_BIT_MASK))
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001731 return 1;
1732
1733 /* Read and Decode message length */
1734 reql = co_getblk(si_oc(si), &msg_head[2], sizeof(char), *totl);
1735 if (reql <= 0) /* closed */
1736 goto incomplete;
1737
1738 *totl += reql;
1739
Frédéric Lécaille32b55732019-06-03 18:29:51 +02001740 if ((unsigned int)msg_head[2] < PEER_ENC_2BYTES_MIN) {
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001741 *msg_len = msg_head[2];
1742 }
1743 else {
1744 int i;
1745 char *cur;
1746 char *end;
1747
1748 for (i = 3 ; i < msg_head_sz ; i++) {
1749 reql = co_getblk(si_oc(si), &msg_head[i], sizeof(char), *totl);
1750 if (reql <= 0) /* closed */
1751 goto incomplete;
1752
1753 *totl += reql;
1754
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +02001755 if (!(msg_head[i] & PEER_MSG_STKT_BIT_MASK))
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001756 break;
1757 }
1758
1759 if (i == msg_head_sz) {
1760 /* malformed message */
1761 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1762 return -1;
1763 }
1764 end = msg_head + msg_head_sz;
1765 cur = &msg_head[2];
1766 *msg_len = intdecode(&cur, end);
1767 if (!cur) {
1768 /* malformed message */
1769 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1770 return -1;
1771 }
1772 }
1773
1774 /* Read message content */
1775 if (*msg_len) {
1776 if (*msg_len > trash.size) {
1777 /* Status code is not success, abort */
1778 appctx->st0 = PEER_SESS_ST_ERRSIZE;
1779 return -1;
1780 }
1781
1782 reql = co_getblk(si_oc(si), trash.area, *msg_len, *totl);
1783 if (reql <= 0) /* closed */
1784 goto incomplete;
1785 *totl += reql;
1786 }
1787
1788 return 1;
1789
1790 incomplete:
1791 if (reql < 0) {
1792 /* there was an error */
1793 appctx->st0 = PEER_SESS_ST_END;
1794 return -1;
1795 }
1796
1797 return 0;
1798}
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001799
1800/*
1801 * Treat the awaited message with <msg_head> as header.*
1802 * Return 1 if succeeded, 0 if not.
1803 */
1804static inline int peer_treat_awaited_msg(struct appctx *appctx, struct peer *peer, unsigned char *msg_head,
1805 char **msg_cur, char *msg_end, int msg_len, int totl)
1806{
1807 struct stream_interface *si = appctx->owner;
1808 struct stream *s = si_strm(si);
1809 struct peers *peers = strm_fe(s)->parent;
1810
1811 if (msg_head[0] == PEER_MSG_CLASS_CONTROL) {
1812 if (msg_head[1] == PEER_MSG_CTRL_RESYNCREQ) {
1813 struct shared_table *st;
1814 /* Reset message: remote need resync */
1815
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001816 /* prepare tables for a global push */
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001817 for (st = peer->tables; st; st = st->next) {
1818 st->teaching_origin = st->last_pushed = st->table->update;
1819 st->flags = 0;
1820 }
1821
1822 /* reset teaching flags to 0 */
1823 peer->flags &= PEER_TEACH_RESET;
1824
1825 /* flag to start to teach lesson */
1826 peer->flags |= PEER_F_TEACH_PROCESS;
1827 }
1828 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCFINISHED) {
1829 if (peer->flags & PEER_F_LEARN_ASSIGN) {
1830 peer->flags &= ~PEER_F_LEARN_ASSIGN;
1831 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
1832 peers->flags |= (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE);
1833 }
1834 peer->confirm++;
1835 }
1836 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCPARTIAL) {
1837 if (peer->flags & PEER_F_LEARN_ASSIGN) {
1838 peer->flags &= ~PEER_F_LEARN_ASSIGN;
1839 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
1840
1841 peer->flags |= PEER_F_LEARN_NOTUP2DATE;
Frédéric Lécaille54bff832019-03-26 10:25:20 +01001842 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT));
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001843 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
1844 }
1845 peer->confirm++;
1846 }
1847 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCCONFIRM) {
1848 struct shared_table *st;
1849
1850 /* If stopping state */
1851 if (stopping) {
1852 /* Close session, push resync no more needed */
1853 peer->flags |= PEER_F_TEACH_COMPLETE;
1854 appctx->st0 = PEER_SESS_ST_END;
1855 return 0;
1856 }
1857 for (st = peer->tables; st; st = st->next) {
1858 st->update = st->last_pushed = st->teaching_origin;
1859 st->flags = 0;
1860 }
1861
1862 /* reset teaching flags to 0 */
1863 peer->flags &= PEER_TEACH_RESET;
1864 }
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001865 else if (msg_head[1] == PEER_MSG_CTRL_HEARTBEAT) {
Frédéric Lécaille54bff832019-03-26 10:25:20 +01001866 peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille33cab3c2019-11-06 11:51:26 +01001867 peer->rx_hbt++;
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001868 }
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001869 }
1870 else if (msg_head[0] == PEER_MSG_CLASS_STICKTABLE) {
1871 if (msg_head[1] == PEER_MSG_STKT_DEFINE) {
1872 if (!peer_treat_definemsg(appctx, peer, msg_cur, msg_end, totl))
1873 return 0;
1874 }
1875 else if (msg_head[1] == PEER_MSG_STKT_SWITCH) {
1876 if (!peer_treat_switchmsg(appctx, peer, msg_cur, msg_end))
1877 return 0;
1878 }
1879 else if (msg_head[1] == PEER_MSG_STKT_UPDATE ||
1880 msg_head[1] == PEER_MSG_STKT_INCUPDATE ||
1881 msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED ||
1882 msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED) {
1883 int update, expire;
1884
1885 update = msg_head[1] == PEER_MSG_STKT_UPDATE || msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED;
1886 expire = msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED || msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED;
1887 if (!peer_treat_updatemsg(appctx, peer, update, expire,
1888 msg_cur, msg_end, msg_len, totl))
1889 return 0;
1890
1891 }
1892 else if (msg_head[1] == PEER_MSG_STKT_ACK) {
1893 if (!peer_treat_ackmsg(appctx, peer, msg_cur, msg_end))
1894 return 0;
1895 }
1896 }
1897 else if (msg_head[0] == PEER_MSG_CLASS_RESERVED) {
1898 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1899 return 0;
1900 }
1901
1902 return 1;
1903}
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01001904
1905
1906/*
1907 * Send any message to <peer> peer.
1908 * Returns 1 if succeeded, or -1 or 0 if failed.
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001909 * -1 means an internal error occurred, 0 is for a peer protocol error leading
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01001910 * to a peer state change (from the peer I/O handler point of view).
1911 */
1912static inline int peer_send_msgs(struct appctx *appctx, struct peer *peer)
1913{
1914 int repl;
1915 struct stream_interface *si = appctx->owner;
1916 struct stream *s = si_strm(si);
1917 struct peers *peers = strm_fe(s)->parent;
1918
1919 /* Need to request a resync */
1920 if ((peer->flags & PEER_F_LEARN_ASSIGN) &&
1921 (peers->flags & PEERS_F_RESYNC_ASSIGN) &&
1922 !(peers->flags & PEERS_F_RESYNC_PROCESS)) {
1923
1924 repl = peer_send_resync_reqmsg(appctx);
1925 if (repl <= 0)
1926 return repl;
1927
1928 peers->flags |= PEERS_F_RESYNC_PROCESS;
1929 }
1930
1931 /* Nothing to read, now we start to write */
1932 if (peer->tables) {
1933 struct shared_table *st;
1934 struct shared_table *last_local_table;
1935
1936 last_local_table = peer->last_local_table;
1937 if (!last_local_table)
1938 last_local_table = peer->tables;
1939 st = last_local_table->next;
1940
1941 while (1) {
1942 if (!st)
1943 st = peer->tables;
1944
1945 /* It remains some updates to ack */
1946 if (st->last_get != st->last_acked) {
1947 repl = peer_send_ackmsg(st, appctx);
1948 if (repl <= 0)
1949 return repl;
1950
1951 st->last_acked = st->last_get;
1952 }
1953
1954 if (!(peer->flags & PEER_F_TEACH_PROCESS)) {
1955 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1956 if (!(peer->flags & PEER_F_LEARN_ASSIGN) &&
1957 ((int)(st->last_pushed - st->table->localupdate) < 0)) {
1958
1959 repl = peer_send_teach_process_msgs(appctx, peer, st);
1960 if (repl <= 0) {
1961 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1962 return repl;
1963 }
1964 }
1965 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1966 }
1967 else {
1968 if (!(st->flags & SHTABLE_F_TEACH_STAGE1)) {
1969 repl = peer_send_teach_stage1_msgs(appctx, peer, st);
1970 if (repl <= 0)
1971 return repl;
1972 }
1973
1974 if (!(st->flags & SHTABLE_F_TEACH_STAGE2)) {
1975 repl = peer_send_teach_stage2_msgs(appctx, peer, st);
1976 if (repl <= 0)
1977 return repl;
1978 }
1979 }
1980
1981 if (st == last_local_table)
1982 break;
1983 st = st->next;
1984 }
1985 }
1986
1987 if ((peer->flags & PEER_F_TEACH_PROCESS) && !(peer->flags & PEER_F_TEACH_FINISHED)) {
Emeric Brun70de43b2020-03-16 10:51:01 +01001988 repl = peer_send_resync_finishedmsg(appctx, peers);
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01001989 if (repl <= 0)
1990 return repl;
1991
1992 /* flag finished message sent */
1993 peer->flags |= PEER_F_TEACH_FINISHED;
1994 }
1995
1996 /* Confirm finished or partial messages */
1997 while (peer->confirm) {
1998 repl = peer_send_resync_confirmsg(appctx);
1999 if (repl <= 0)
2000 return repl;
2001
2002 peer->confirm--;
2003 }
2004
2005 return 1;
2006}
2007
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002008/*
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002009 * Read and parse a first line of a "hello" peer protocol message.
2010 * Returns 0 if could not read a line, -1 if there was a read error or
2011 * the line is malformed, 1 if succeeded.
2012 */
2013static inline int peer_getline_version(struct appctx *appctx,
2014 unsigned int *maj_ver, unsigned int *min_ver)
2015{
2016 int reql;
2017
2018 reql = peer_getline(appctx);
2019 if (!reql)
2020 return 0;
2021
2022 if (reql < 0)
2023 return -1;
2024
2025 /* test protocol */
2026 if (strncmp(PEER_SESSION_PROTO_NAME " ", trash.area, proto_len + 1) != 0) {
2027 appctx->st0 = PEER_SESS_ST_EXIT;
2028 appctx->st1 = PEER_SESS_SC_ERRPROTO;
2029 return -1;
2030 }
2031 if (peer_get_version(trash.area + proto_len + 1, maj_ver, min_ver) == -1 ||
2032 *maj_ver != PEER_MAJOR_VER || *min_ver > PEER_MINOR_VER) {
2033 appctx->st0 = PEER_SESS_ST_EXIT;
2034 appctx->st1 = PEER_SESS_SC_ERRVERSION;
2035 return -1;
2036 }
2037
2038 return 1;
2039}
2040
2041/*
2042 * Read and parse a second line of a "hello" peer protocol message.
2043 * Returns 0 if could not read a line, -1 if there was a read error or
2044 * the line is malformed, 1 if succeeded.
2045 */
2046static inline int peer_getline_host(struct appctx *appctx)
2047{
2048 int reql;
2049
2050 reql = peer_getline(appctx);
2051 if (!reql)
2052 return 0;
2053
2054 if (reql < 0)
2055 return -1;
2056
2057 /* test hostname match */
2058 if (strcmp(localpeer, trash.area) != 0) {
2059 appctx->st0 = PEER_SESS_ST_EXIT;
2060 appctx->st1 = PEER_SESS_SC_ERRHOST;
2061 return -1;
2062 }
2063
2064 return 1;
2065}
2066
2067/*
2068 * Read and parse a last line of a "hello" peer protocol message.
2069 * Returns 0 if could not read a character, -1 if there was a read error or
2070 * the line is malformed, 1 if succeeded.
2071 * Set <curpeer> accordingly (the remote peer sending the "hello" message).
2072 */
2073static inline int peer_getline_last(struct appctx *appctx, struct peer **curpeer)
2074{
2075 char *p;
2076 int reql;
2077 struct peer *peer;
2078 struct stream_interface *si = appctx->owner;
2079 struct stream *s = si_strm(si);
2080 struct peers *peers = strm_fe(s)->parent;
2081
2082 reql = peer_getline(appctx);
2083 if (!reql)
2084 return 0;
2085
2086 if (reql < 0)
2087 return -1;
2088
2089 /* parse line "<peer name> <pid> <relative_pid>" */
2090 p = strchr(trash.area, ' ');
2091 if (!p) {
2092 appctx->st0 = PEER_SESS_ST_EXIT;
2093 appctx->st1 = PEER_SESS_SC_ERRPROTO;
2094 return -1;
2095 }
2096 *p = 0;
2097
2098 /* lookup known peer */
2099 for (peer = peers->remote; peer; peer = peer->next) {
2100 if (strcmp(peer->id, trash.area) == 0)
2101 break;
2102 }
2103
2104 /* if unknown peer */
2105 if (!peer) {
2106 appctx->st0 = PEER_SESS_ST_EXIT;
2107 appctx->st1 = PEER_SESS_SC_ERRPEER;
2108 return -1;
2109 }
2110 *curpeer = peer;
2111
2112 return 1;
2113}
2114
2115/*
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002116 * Init <peer> peer after having accepted it at peer protocol level.
2117 */
2118static inline void init_accepted_peer(struct peer *peer, struct peers *peers)
2119{
2120 struct shared_table *st;
2121
2122 /* Register status code */
2123 peer->statuscode = PEER_SESS_SC_SUCCESSCODE;
2124
2125 /* Awake main task */
2126 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
2127
2128 /* Init confirm counter */
2129 peer->confirm = 0;
2130
2131 /* Init cursors */
2132 for (st = peer->tables; st ; st = st->next) {
2133 st->last_get = st->last_acked = 0;
2134 st->teaching_origin = st->last_pushed = st->update;
2135 }
2136
2137 /* reset teaching and learning flags to 0 */
2138 peer->flags &= PEER_TEACH_RESET;
2139 peer->flags &= PEER_LEARN_RESET;
2140
2141 /* if current peer is local */
2142 if (peer->local) {
2143 /* if current host need resyncfrom local and no process assined */
2144 if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL &&
2145 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2146 /* assign local peer for a lesson, consider lesson already requested */
2147 peer->flags |= PEER_F_LEARN_ASSIGN;
2148 peers->flags |= (PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
2149 }
2150
2151 }
2152 else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
2153 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2154 /* assign peer for a lesson */
2155 peer->flags |= PEER_F_LEARN_ASSIGN;
2156 peers->flags |= PEERS_F_RESYNC_ASSIGN;
2157 }
2158}
2159
2160/*
2161 * Init <peer> peer after having connected it at peer protocol level.
2162 */
2163static inline void init_connected_peer(struct peer *peer, struct peers *peers)
2164{
2165 struct shared_table *st;
2166
2167 /* Init cursors */
2168 for (st = peer->tables; st ; st = st->next) {
2169 st->last_get = st->last_acked = 0;
2170 st->teaching_origin = st->last_pushed = st->update;
2171 }
2172
2173 /* Init confirm counter */
2174 peer->confirm = 0;
2175
2176 /* reset teaching and learning flags to 0 */
2177 peer->flags &= PEER_TEACH_RESET;
2178 peer->flags &= PEER_LEARN_RESET;
2179
2180 /* If current peer is local */
2181 if (peer->local) {
2182 /* flag to start to teach lesson */
2183 peer->flags |= PEER_F_TEACH_PROCESS;
2184 }
2185 else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
2186 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2187 /* If peer is remote and resync from remote is needed,
2188 and no peer currently assigned */
2189
2190 /* assign peer for a lesson */
2191 peer->flags |= PEER_F_LEARN_ASSIGN;
2192 peers->flags |= PEERS_F_RESYNC_ASSIGN;
2193 }
2194}
2195
2196/*
Emeric Brun2b920a12010-09-23 18:30:22 +02002197 * IO Handler to handle message exchance with a peer
2198 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02002199static void peer_io_handler(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +02002200{
Willy Tarreau00a37f02015-04-13 12:05:19 +02002201 struct stream_interface *si = appctx->owner;
Willy Tarreau87b09662015-04-03 00:22:06 +02002202 struct stream *s = si_strm(si);
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002203 struct peers *curpeers = strm_fe(s)->parent;
Emeric Brun80527f52017-06-19 17:46:37 +02002204 struct peer *curpeer = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002205 int reql = 0;
2206 int repl = 0;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002207 unsigned int maj_ver, min_ver;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002208 int prev_state;
Emeric Brun2b920a12010-09-23 18:30:22 +02002209
Joseph Herlant82b2f542018-11-15 12:19:14 -08002210 /* Check if the input buffer is available. */
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002211 if (si_ic(si)->buf.size == 0) {
2212 si_rx_room_blk(si);
2213 goto out;
2214 }
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002215
Emeric Brun2b920a12010-09-23 18:30:22 +02002216 while (1) {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002217 prev_state = appctx->st0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002218switchstate:
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002219 maj_ver = min_ver = (unsigned int)-1;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002220 switch(appctx->st0) {
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002221 case PEER_SESS_ST_ACCEPT:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002222 prev_state = appctx->st0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002223 appctx->ctx.peers.ptr = NULL;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002224 appctx->st0 = PEER_SESS_ST_GETVERSION;
Emeric Brun2b920a12010-09-23 18:30:22 +02002225 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002226 case PEER_SESS_ST_GETVERSION:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002227 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002228 reql = peer_getline_version(appctx, &maj_ver, &min_ver);
2229 if (reql <= 0) {
2230 if (!reql)
2231 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002232 goto switchstate;
2233 }
2234
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002235 appctx->st0 = PEER_SESS_ST_GETHOST;
Emeric Brun2b920a12010-09-23 18:30:22 +02002236 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002237 case PEER_SESS_ST_GETHOST:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002238 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002239 reql = peer_getline_host(appctx);
2240 if (reql <= 0) {
2241 if (!reql)
2242 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002243 goto switchstate;
2244 }
2245
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002246 appctx->st0 = PEER_SESS_ST_GETPEER;
Emeric Brun2b920a12010-09-23 18:30:22 +02002247 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002248 case PEER_SESS_ST_GETPEER: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002249 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002250 reql = peer_getline_last(appctx, &curpeer);
2251 if (reql <= 0) {
2252 if (!reql)
2253 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002254 goto switchstate;
2255 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002256
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002257 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Willy Tarreau9df94c22016-10-31 18:42:52 +01002258 if (curpeer->appctx && curpeer->appctx != appctx) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002259 if (curpeer->local) {
2260 /* Local connection, reply a retry */
2261 appctx->st0 = PEER_SESS_ST_EXIT;
2262 appctx->st1 = PEER_SESS_SC_TRYAGAIN;
2263 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02002264 }
Emeric Brun80527f52017-06-19 17:46:37 +02002265
2266 /* we're killing a connection, we must apply a random delay before
2267 * retrying otherwise the other end will do the same and we can loop
2268 * for a while.
2269 */
Willy Tarreau52bf8392020-03-08 00:42:37 +01002270 curpeer->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + ha_random() % 2000));
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002271 peer_session_forceshutdown(curpeer);
Emeric Brun2b920a12010-09-23 18:30:22 +02002272 }
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002273 if (maj_ver != (unsigned int)-1 && min_ver != (unsigned int)-1) {
2274 if (min_ver == PEER_DWNGRD_MINOR_VER) {
2275 curpeer->flags |= PEER_F_DWNGRD;
2276 }
2277 else {
2278 curpeer->flags &= ~PEER_F_DWNGRD;
2279 }
2280 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002281 curpeer->appctx = appctx;
2282 appctx->ctx.peers.ptr = curpeer;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002283 appctx->st0 = PEER_SESS_ST_SENDSUCCESS;
Olivier Houcharded879892019-03-08 18:53:43 +01002284 _HA_ATOMIC_ADD(&active_peers, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02002285 /* fall through */
2286 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002287 case PEER_SESS_ST_SENDSUCCESS: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002288 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002289 if (!curpeer) {
2290 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002291 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002292 if (curpeer->appctx != appctx) {
2293 appctx->st0 = PEER_SESS_ST_END;
2294 goto switchstate;
2295 }
2296 }
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002297
2298 repl = peer_send_status_successmsg(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002299 if (repl <= 0) {
2300 if (repl == -1)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002301 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002302 goto switchstate;
2303 }
2304
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002305 init_accepted_peer(curpeer, curpeers);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002306
Emeric Brun2b920a12010-09-23 18:30:22 +02002307 /* switch to waiting message state */
Olivier Houcharded879892019-03-08 18:53:43 +01002308 _HA_ATOMIC_ADD(&connected_peers, 1);
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002309 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +02002310 goto switchstate;
2311 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002312 case PEER_SESS_ST_CONNECT: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002313 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002314 if (!curpeer) {
2315 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002316 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002317 if (curpeer->appctx != appctx) {
2318 appctx->st0 = PEER_SESS_ST_END;
2319 goto switchstate;
2320 }
2321 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002322
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002323 repl = peer_send_hellomsg(appctx, curpeer);
Emeric Brun2b920a12010-09-23 18:30:22 +02002324 if (repl <= 0) {
2325 if (repl == -1)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002326 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002327 goto switchstate;
2328 }
2329
2330 /* switch to the waiting statuscode state */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002331 appctx->st0 = PEER_SESS_ST_GETSTATUS;
Emeric Brun2b920a12010-09-23 18:30:22 +02002332 /* fall through */
2333 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002334 case PEER_SESS_ST_GETSTATUS: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002335 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002336 if (!curpeer) {
2337 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002338 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002339 if (curpeer->appctx != appctx) {
2340 appctx->st0 = PEER_SESS_ST_END;
2341 goto switchstate;
2342 }
2343 }
2344
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002345 if (si_ic(si)->flags & CF_WRITE_PARTIAL)
Emeric Brunb3971ab2015-05-12 18:49:09 +02002346 curpeer->statuscode = PEER_SESS_SC_CONNECTEDCODE;
Emeric Brun2b920a12010-09-23 18:30:22 +02002347
Frédéric Lécaillece025572019-01-21 13:38:06 +01002348 reql = peer_getline(appctx);
2349 if (!reql)
2350 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002351
Frédéric Lécaillece025572019-01-21 13:38:06 +01002352 if (reql < 0)
2353 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02002354
2355 /* Register status code */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002356 curpeer->statuscode = atoi(trash.area);
Emeric Brun2b920a12010-09-23 18:30:22 +02002357
2358 /* Awake main task */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002359 task_wakeup(curpeers->sync_task, TASK_WOKEN_MSG);
Emeric Brun2b920a12010-09-23 18:30:22 +02002360
2361 /* If status code is success */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002362 if (curpeer->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002363 init_connected_peer(curpeer, curpeers);
Emeric Brun2b920a12010-09-23 18:30:22 +02002364 }
2365 else {
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002366 if (curpeer->statuscode == PEER_SESS_SC_ERRVERSION)
2367 curpeer->flags |= PEER_F_DWNGRD;
Emeric Brun2b920a12010-09-23 18:30:22 +02002368 /* Status code is not success, abort */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002369 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +02002370 goto switchstate;
2371 }
Olivier Houcharded879892019-03-08 18:53:43 +01002372 _HA_ATOMIC_ADD(&connected_peers, 1);
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002373 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +02002374 /* fall through */
2375 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002376 case PEER_SESS_ST_WAITMSG: {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002377 uint32_t msg_len = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002378 char *msg_cur = trash.area;
2379 char *msg_end = trash.area;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002380 unsigned char msg_head[7];
Emeric Brun2b920a12010-09-23 18:30:22 +02002381 int totl = 0;
2382
Willy Tarreau2d372c22018-11-05 17:12:27 +01002383 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002384 if (!curpeer) {
2385 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002386 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002387 if (curpeer->appctx != appctx) {
2388 appctx->st0 = PEER_SESS_ST_END;
2389 goto switchstate;
2390 }
2391 }
2392
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002393 reql = peer_recv_msg(appctx, (char *)msg_head, sizeof msg_head, &msg_len, &totl);
2394 if (reql <= 0) {
2395 if (reql == -1)
2396 goto switchstate;
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002397 goto send_msgs;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002398 }
Willy Tarreau86a446e2013-11-25 23:02:37 +01002399
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002400 msg_end += msg_len;
Frédéric Lécaille444243c2019-01-24 15:40:11 +01002401 if (!peer_treat_awaited_msg(appctx, curpeer, msg_head, &msg_cur, msg_end, msg_len, totl))
Emeric Brun2b920a12010-09-23 18:30:22 +02002402 goto switchstate;
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002403
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002404 curpeer->flags |= PEER_F_ALIVE;
2405
Emeric Brun2b920a12010-09-23 18:30:22 +02002406 /* skip consumed message */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002407 co_skip(si_oc(si), totl);
Emeric Brun2b920a12010-09-23 18:30:22 +02002408 /* loop on that state to peek next message */
Willy Tarreau72d6c162013-04-11 16:14:13 +02002409 goto switchstate;
2410
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002411send_msgs:
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002412 if (curpeer->flags & PEER_F_HEARTBEAT) {
2413 curpeer->flags &= ~PEER_F_HEARTBEAT;
2414 repl = peer_send_heartbeatmsg(appctx);
2415 if (repl <= 0) {
2416 if (repl == -1)
2417 goto out;
2418 goto switchstate;
2419 }
Frédéric Lécaille33cab3c2019-11-06 11:51:26 +01002420 curpeer->tx_hbt++;
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002421 }
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002422 /* we get here when a peer_recv_msg() returns 0 in reql */
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01002423 repl = peer_send_msgs(appctx, curpeer);
2424 if (repl <= 0) {
2425 if (repl == -1)
2426 goto out;
2427 goto switchstate;
Emeric Brun597b26e2016-08-12 11:23:31 +02002428 }
2429
Emeric Brun2b920a12010-09-23 18:30:22 +02002430 /* noting more to do */
2431 goto out;
2432 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002433 case PEER_SESS_ST_EXIT:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002434 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002435 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002436 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002437 if (peer_send_status_errormsg(appctx) == -1)
2438 goto out;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002439 appctx->st0 = PEER_SESS_ST_END;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002440 goto switchstate;
2441 case PEER_SESS_ST_ERRSIZE: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002442 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002443 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002444 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002445 if (peer_send_error_size_limitmsg(appctx) == -1)
2446 goto out;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002447 appctx->st0 = PEER_SESS_ST_END;
2448 goto switchstate;
2449 }
2450 case PEER_SESS_ST_ERRPROTO: {
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01002451 if (curpeer)
2452 curpeer->proto_err++;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002453 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002454 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002455 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002456 if (peer_send_error_protomsg(appctx) == -1)
2457 goto out;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002458 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002459 prev_state = appctx->st0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002460 /* fall through */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002461 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002462 case PEER_SESS_ST_END: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002463 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002464 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002465 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002466 if (curpeer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002467 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002468 curpeer = NULL;
2469 }
Willy Tarreau73b013b2012-05-21 16:31:45 +02002470 si_shutw(si);
2471 si_shutr(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002472 si_ic(si)->flags |= CF_READ_NULL;
Willy Tarreau828824a2015-04-19 17:20:03 +02002473 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002474 }
2475 }
2476 }
2477out:
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002478 si_oc(si)->flags |= CF_READ_DONTWAIT;
Emeric Brun80527f52017-06-19 17:46:37 +02002479
2480 if (curpeer)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002481 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +02002482 return;
2483}
2484
Willy Tarreau30576452015-04-13 13:50:30 +02002485static struct applet peer_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002486 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01002487 .name = "<PEER>", /* used for logging */
2488 .fct = peer_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07002489 .release = peer_session_release,
Willy Tarreaub24281b2011-02-13 13:16:36 +01002490};
Emeric Brun2b920a12010-09-23 18:30:22 +02002491
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002492
Emeric Brun2b920a12010-09-23 18:30:22 +02002493/*
2494 * Use this function to force a close of a peer session
2495 */
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002496static void peer_session_forceshutdown(struct peer *peer)
Emeric Brun2b920a12010-09-23 18:30:22 +02002497{
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002498 struct appctx *appctx = peer->appctx;
2499
Frédéric Lécaille5df11902017-06-13 16:39:57 +02002500 /* Note that the peer sessions which have just been created
2501 * (->st0 == PEER_SESS_ST_CONNECT) must not
2502 * be shutdown, if not, the TCP session will never be closed
2503 * and stay in CLOSE_WAIT state after having been closed by
2504 * the remote side.
2505 */
2506 if (!appctx || appctx->st0 == PEER_SESS_ST_CONNECT)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002507 return;
2508
Willy Tarreau81bc3b02016-10-31 17:37:39 +01002509 if (appctx->applet != &peer_applet)
2510 return;
2511
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002512 __peer_session_deinit(peer);
2513
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002514 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau78c0c502016-10-31 17:32:20 +01002515 appctx_wakeup(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002516}
2517
Willy Tarreau91d96282015-03-13 15:47:26 +01002518/* Pre-configures a peers frontend to accept incoming connections */
2519void peers_setup_frontend(struct proxy *fe)
2520{
2521 fe->last_change = now.tv_sec;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02002522 fe->cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau91d96282015-03-13 15:47:26 +01002523 fe->maxconn = 0;
2524 fe->conn_retries = CONN_RETRIES;
2525 fe->timeout.client = MS_TO_TICKS(5000);
Willy Tarreaud1d48d42015-03-13 16:15:46 +01002526 fe->accept = frontend_accept;
Willy Tarreauf87ab942015-03-13 15:55:16 +01002527 fe->default_target = &peer_applet.obj_type;
Willy Tarreau91d96282015-03-13 15:47:26 +01002528 fe->options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC;
Willy Tarreau0fca4832015-05-01 19:12:05 +02002529 fe->bind_proc = 0; /* will be filled by users */
Willy Tarreau91d96282015-03-13 15:47:26 +01002530}
2531
Emeric Brun2b920a12010-09-23 18:30:22 +02002532/*
Willy Tarreaubd55e312010-11-11 10:55:09 +01002533 * Create a new peer session in assigned state (connect will start automatically)
Emeric Brun2b920a12010-09-23 18:30:22 +02002534 */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002535static struct appctx *peer_session_create(struct peers *peers, struct peer *peer)
Emeric Brun2b920a12010-09-23 18:30:22 +02002536{
Willy Tarreau04b92862017-09-15 11:01:04 +02002537 struct proxy *p = peers->peers_fe; /* attached frontend */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002538 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02002539 struct session *sess;
Willy Tarreau87b09662015-04-03 00:22:06 +02002540 struct stream *s;
Emeric Brun2b920a12010-09-23 18:30:22 +02002541
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002542 peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002543 peer->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
Emeric Brunb3971ab2015-05-12 18:49:09 +02002544 peer->statuscode = PEER_SESS_SC_CONNECTCODE;
Willy Tarreaud990baf2015-04-05 00:32:03 +02002545 s = NULL;
2546
Emeric Brun1138fd02017-06-19 12:38:55 +02002547 appctx = appctx_new(&peer_applet, tid_bit);
Willy Tarreaud990baf2015-04-05 00:32:03 +02002548 if (!appctx)
2549 goto out_close;
2550
2551 appctx->st0 = PEER_SESS_ST_CONNECT;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002552 appctx->ctx.peers.ptr = (void *)peer;
Willy Tarreaud990baf2015-04-05 00:32:03 +02002553
Willy Tarreau04b92862017-09-15 11:01:04 +02002554 sess = session_new(p, NULL, &appctx->obj_type);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002555 if (!sess) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002556 ha_alert("out of memory in peer_session_create().\n");
Willy Tarreaud990baf2015-04-05 00:32:03 +02002557 goto out_free_appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02002558 }
2559
Willy Tarreau87787ac2017-08-28 16:22:54 +02002560 if ((s = stream_new(sess, &appctx->obj_type)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002561 ha_alert("Failed to initialize stream in peer_session_create().\n");
Willy Tarreau87787ac2017-08-28 16:22:54 +02002562 goto out_free_sess;
Willy Tarreau8baf9062015-04-05 00:46:36 +02002563 }
2564
Willy Tarreau6e2979c2015-04-27 13:21:15 +02002565 /* applet is waiting for data */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002566 si_cant_get(&s->si[0]);
Willy Tarreau6e2979c2015-04-27 13:21:15 +02002567 appctx_wakeup(appctx);
2568
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02002569 /* initiate an outgoing connection */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002570 s->target = peer_session_target(peer, s);
2571 if (!sockaddr_alloc(&s->target_addr))
2572 goto out_free_strm;
2573 *s->target_addr = peer->addr;
Willy Tarreau02efeda2019-07-18 17:21:24 +02002574 s->flags = SF_ASSIGNED|SF_ADDR_SET;
Willy Tarreaudbd02672017-12-06 17:39:53 +01002575 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002576
Emeric Brun2b920a12010-09-23 18:30:22 +02002577 s->do_log = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002578 s->uniq_id = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002579
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002580 s->res.flags |= CF_READ_DONTWAIT;
Willy Tarreau696a2912014-11-24 11:36:57 +01002581
Emeric Brunb3971ab2015-05-12 18:49:09 +02002582 peer->appctx = appctx;
Willy Tarreau87787ac2017-08-28 16:22:54 +02002583 task_wakeup(s->task, TASK_WOKEN_INIT);
Olivier Houcharded879892019-03-08 18:53:43 +01002584 _HA_ATOMIC_ADD(&active_peers, 1);
Willy Tarreau9df94c22016-10-31 18:42:52 +01002585 return appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02002586
2587 /* Error unrolling */
Willy Tarreau15b5e142015-04-04 14:38:25 +02002588 out_free_strm:
Emeric Brun2b920a12010-09-23 18:30:22 +02002589 LIST_DEL(&s->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002590 pool_free(pool_head_stream, s);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002591 out_free_sess:
Willy Tarreau11c36242015-04-04 15:54:03 +02002592 session_free(sess);
Willy Tarreaud990baf2015-04-05 00:32:03 +02002593 out_free_appctx:
2594 appctx_free(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002595 out_close:
Willy Tarreaub21d08e2016-10-31 17:46:57 +01002596 return NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002597}
2598
2599/*
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002600 * Task processing function to manage re-connect, peer session
2601 * tasks wakeup on local update and heartbeat.
Emeric Brun2b920a12010-09-23 18:30:22 +02002602 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002603static struct task *process_peer_sync(struct task * task, void *context, unsigned short state)
Emeric Brun2b920a12010-09-23 18:30:22 +02002604{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002605 struct peers *peers = context;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002606 struct peer *ps;
2607 struct shared_table *st;
Emeric Brun2b920a12010-09-23 18:30:22 +02002608
2609 task->expire = TICK_ETERNITY;
2610
Emeric Brunb3971ab2015-05-12 18:49:09 +02002611 if (!peers->peers_fe) {
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02002612 /* this one was never started, kill it */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002613 signal_unregister_handler(peers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002614 task_destroy(peers->sync_task);
Willy Tarreau37bb7be2015-09-21 15:24:58 +02002615 peers->sync_task = NULL;
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02002616 return NULL;
2617 }
2618
Emeric Brun80527f52017-06-19 17:46:37 +02002619 /* Acquire lock for all peers of the section */
2620 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002621 HA_SPIN_LOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002622
Emeric Brun2b920a12010-09-23 18:30:22 +02002623 if (!stopping) {
2624 /* Normal case (not soft stop)*/
Emeric Brunb3971ab2015-05-12 18:49:09 +02002625
2626 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL) &&
2627 (!nb_oldpids || tick_is_expired(peers->resync_timeout, now_ms)) &&
2628 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002629 /* Resync from local peer needed
2630 no peer was assigned for the lesson
2631 and no old local peer found
2632 or resync timeout expire */
2633
2634 /* flag no more resync from local, to try resync from remotes */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002635 peers->flags |= PEERS_F_RESYNC_LOCAL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002636
2637 /* reschedule a resync */
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002638 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT));
Emeric Brun2b920a12010-09-23 18:30:22 +02002639 }
2640
2641 /* For each session */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002642 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002643 /* For each remote peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002644 if (!ps->local) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002645 if (!ps->appctx) {
2646 /* no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002647 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002648 ((ps->statuscode == PEER_SESS_SC_CONNECTCODE ||
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002649 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002650 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002651 tick_is_expired(ps->reconnect, now_ms))) {
2652 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002653 * or previous peer connection established with success
2654 * or previous peer connection failed while connecting
Emeric Brun2b920a12010-09-23 18:30:22 +02002655 * and reconnection timer is expired */
2656
2657 /* retry a connect */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002658 ps->appctx = peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002659 }
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002660 else if (!tick_is_expired(ps->reconnect, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002661 /* If previous session failed during connection
2662 * but reconnection timer is not expired */
2663
2664 /* reschedule task for reconnect */
2665 task->expire = tick_first(task->expire, ps->reconnect);
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01002666 ps->new_conn++;
Emeric Brun2b920a12010-09-23 18:30:22 +02002667 }
2668 /* else do nothing */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002669 } /* !ps->appctx */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002670 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002671 /* current peer connection is active and established */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002672 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2673 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002674 !(ps->flags & PEER_F_LEARN_NOTUP2DATE)) {
2675 /* Resync from a remote is needed
2676 * and no peer was assigned for lesson
2677 * and current peer may be up2date */
2678
2679 /* assign peer for the lesson */
2680 ps->flags |= PEER_F_LEARN_ASSIGN;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002681 peers->flags |= PEERS_F_RESYNC_ASSIGN;
Emeric Brun2b920a12010-09-23 18:30:22 +02002682
Willy Tarreau9df94c22016-10-31 18:42:52 +01002683 /* wake up peer handler to handle a request of resync */
Willy Tarreaue5843b32015-04-27 18:40:14 +02002684 appctx_wakeup(ps->appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002685 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002686 else {
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002687 int update_to_push = 0;
2688
Emeric Brunb3971ab2015-05-12 18:49:09 +02002689 /* Awake session if there is data to push */
2690 for (st = ps->tables; st ; st = st->next) {
2691 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002692 /* wake up the peer handler to push local updates */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002693 update_to_push = 1;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002694 /* There is no need to send a heartbeat message
2695 * when some updates must be pushed. The remote
2696 * peer will consider <ps> peer as alive when it will
2697 * receive these updates.
2698 */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002699 ps->flags &= ~PEER_F_HEARTBEAT;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002700 /* Re-schedule another one later. */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002701 ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002702 /* We are going to send updates, let's ensure we will
2703 * come back to send heartbeat messages or to reconnect.
2704 */
2705 task->expire = tick_first(ps->reconnect, ps->heartbeat);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002706 appctx_wakeup(ps->appctx);
2707 break;
2708 }
2709 }
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002710 /* When there are updates to send we do not reconnect
2711 * and do not send heartbeat message either.
2712 */
2713 if (!update_to_push) {
2714 if (tick_is_expired(ps->reconnect, now_ms)) {
2715 if (ps->flags & PEER_F_ALIVE) {
2716 /* This peer was alive during a 'reconnect' period.
2717 * Flag it as not alive again for the next period.
2718 */
2719 ps->flags &= ~PEER_F_ALIVE;
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002720 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002721 }
2722 else {
Willy Tarreau52bf8392020-03-08 00:42:37 +01002723 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + ha_random() % 2000));
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002724 peer_session_forceshutdown(ps);
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01002725 ps->no_hbt++;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002726 }
2727 }
2728 else if (tick_is_expired(ps->heartbeat, now_ms)) {
2729 ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
2730 ps->flags |= PEER_F_HEARTBEAT;
2731 appctx_wakeup(ps->appctx);
2732 }
Frédéric Lécailleb7405c12019-03-27 14:32:39 +01002733 task->expire = tick_first(ps->reconnect, ps->heartbeat);
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002734 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002735 }
2736 /* else do nothing */
2737 } /* SUCCESSCODE */
2738 } /* !ps->peer->local */
2739 } /* for */
2740
2741 /* Resync from remotes expired: consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002742 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2743 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
2744 tick_is_expired(peers->resync_timeout, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002745 /* Resync from remote peer needed
2746 * no peer was assigned for the lesson
2747 * and resync timeout expire */
2748
2749 /* flag no more resync from remote, consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002750 peers->flags |= PEERS_F_RESYNC_REMOTE;
Emeric Brun2b920a12010-09-23 18:30:22 +02002751 }
2752
Emeric Brunb3971ab2015-05-12 18:49:09 +02002753 if ((peers->flags & PEERS_RESYNC_STATEMASK) != PEERS_RESYNC_FINISHED) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002754 /* Resync not finished*/
Frédéric Lécaille5d6e5f82017-05-29 13:47:16 +02002755 /* reschedule task to resync timeout if not expired, to ended resync if needed */
2756 if (!tick_is_expired(peers->resync_timeout, now_ms))
2757 task->expire = tick_first(task->expire, peers->resync_timeout);
Emeric Brun2b920a12010-09-23 18:30:22 +02002758 }
2759 } /* !stopping */
2760 else {
2761 /* soft stop case */
Willy Tarreau086735a2018-11-05 15:09:47 +01002762 if (state & TASK_WOKEN_SIGNAL) {
Joseph Herlant82b2f542018-11-15 12:19:14 -08002763 /* We've just received the signal */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002764 if (!(peers->flags & PEERS_F_DONOTSTOP)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002765 /* add DO NOT STOP flag if not present */
Olivier Houcharded879892019-03-08 18:53:43 +01002766 _HA_ATOMIC_ADD(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002767 peers->flags |= PEERS_F_DONOTSTOP;
2768 ps = peers->local;
2769 for (st = ps->tables; st ; st = st->next)
2770 st->table->syncing++;
Emeric Brun2b920a12010-09-23 18:30:22 +02002771 }
2772
2773 /* disconnect all connected peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002774 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun80527f52017-06-19 17:46:37 +02002775 /* we're killing a connection, we must apply a random delay before
2776 * retrying otherwise the other end will do the same and we can loop
2777 * for a while.
2778 */
Willy Tarreau52bf8392020-03-08 00:42:37 +01002779 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + ha_random() % 2000));
Willy Tarreau9df94c22016-10-31 18:42:52 +01002780 if (ps->appctx) {
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002781 peer_session_forceshutdown(ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002782 }
2783 }
2784 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002785
Emeric Brunb3971ab2015-05-12 18:49:09 +02002786 ps = peers->local;
Emeric Brun2b920a12010-09-23 18:30:22 +02002787 if (ps->flags & PEER_F_TEACH_COMPLETE) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002788 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002789 /* resync of new process was complete, current process can die now */
Olivier Houcharded879892019-03-08 18:53:43 +01002790 _HA_ATOMIC_SUB(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002791 peers->flags &= ~PEERS_F_DONOTSTOP;
2792 for (st = ps->tables; st ; st = st->next)
2793 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002794 }
2795 }
Willy Tarreau9df94c22016-10-31 18:42:52 +01002796 else if (!ps->appctx) {
2797 /* If there's no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002798 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002799 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
2800 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE ||
2801 ps->statuscode == PEER_SESS_SC_TRYAGAIN) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002802 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002803 * or previous peer connection was successfully established
2804 * or previous tcp connect succeeded but init state incomplete
Emeric Brun2b920a12010-09-23 18:30:22 +02002805 * or during previous connect, peer replies a try again statuscode */
2806
2807 /* connect to the peer */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002808 peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002809 }
2810 else {
2811 /* Other error cases */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002812 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002813 /* unable to resync new process, current process can die now */
Olivier Houcharded879892019-03-08 18:53:43 +01002814 _HA_ATOMIC_SUB(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002815 peers->flags &= ~PEERS_F_DONOTSTOP;
2816 for (st = ps->tables; st ; st = st->next)
2817 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002818 }
2819 }
2820 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002821 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE ) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002822 /* current peer connection is active and established
2823 * wake up all peer handlers to push remaining local updates */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002824 for (st = ps->tables; st ; st = st->next) {
2825 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002826 appctx_wakeup(ps->appctx);
2827 break;
2828 }
2829 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002830 }
2831 } /* stopping */
Emeric Brun80527f52017-06-19 17:46:37 +02002832
2833 /* Release lock for all peers of the section */
2834 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002835 HA_SPIN_UNLOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002836
Emeric Brun2b920a12010-09-23 18:30:22 +02002837 /* Wakeup for re-connect */
2838 return task;
2839}
2840
Emeric Brunb3971ab2015-05-12 18:49:09 +02002841
Emeric Brun2b920a12010-09-23 18:30:22 +02002842/*
Willy Tarreaud9443442018-10-15 11:18:03 +02002843 * returns 0 in case of error.
Emeric Brun2b920a12010-09-23 18:30:22 +02002844 */
Willy Tarreaud9443442018-10-15 11:18:03 +02002845int peers_init_sync(struct peers *peers)
Emeric Brun2b920a12010-09-23 18:30:22 +02002846{
Emeric Brun2b920a12010-09-23 18:30:22 +02002847 struct peer * curpeer;
Emeric Brun2b920a12010-09-23 18:30:22 +02002848
Emeric Brun2b920a12010-09-23 18:30:22 +02002849 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002850 peers->peers_fe->maxconn += 3;
2851 }
2852
Emeric Brunc60def82017-09-27 14:59:38 +02002853 peers->sync_task = task_new(MAX_THREADS_MASK);
Willy Tarreaud9443442018-10-15 11:18:03 +02002854 if (!peers->sync_task)
2855 return 0;
2856
Emeric Brunb3971ab2015-05-12 18:49:09 +02002857 peers->sync_task->process = process_peer_sync;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002858 peers->sync_task->context = (void *)peers;
2859 peers->sighandler = signal_register_task(0, peers->sync_task, 0);
2860 task_wakeup(peers->sync_task, TASK_WOKEN_INIT);
Willy Tarreaud9443442018-10-15 11:18:03 +02002861 return 1;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002862}
2863
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002864/*
2865 * Allocate a cache a dictionary entries used upon transmission.
2866 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002867static struct dcache_tx *new_dcache_tx(size_t max_entries)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002868{
2869 struct dcache_tx *d;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002870 struct ebpt_node *entries;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002871
2872 d = malloc(sizeof *d);
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002873 entries = calloc(max_entries, sizeof *entries);
2874 if (!d || !entries)
2875 goto err;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002876
2877 d->lru_key = 0;
Frédéric Lécailleb65717f2019-06-07 14:25:25 +02002878 d->prev_lookup = NULL;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002879 d->cached_entries = EB_ROOT_UNIQUE;
2880 d->entries = entries;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002881
2882 return d;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002883
2884 err:
2885 free(d);
2886 free(entries);
2887 return NULL;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002888}
2889
2890/*
2891 * Allocate a cache of dictionary entries with <name> as name and <max_entries>
2892 * as maximum of entries.
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002893 * Return the dictionary cache if succeeded, NULL if not.
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002894 * Must be deallocated calling free_dcache().
2895 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002896static struct dcache *new_dcache(size_t max_entries)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002897{
2898 struct dcache_tx *dc_tx;
2899 struct dcache *dc;
2900 struct dcache_rx *dc_rx;
2901
2902 dc = calloc(1, sizeof *dc);
2903 dc_tx = new_dcache_tx(max_entries);
2904 dc_rx = calloc(max_entries, sizeof *dc_rx);
2905 if (!dc || !dc_tx || !dc_rx)
2906 goto err;
2907
2908 dc->tx = dc_tx;
2909 dc->rx = dc_rx;
2910 dc->max_entries = max_entries;
2911
2912 return dc;
2913
2914 err:
2915 free(dc);
2916 free(dc_tx);
2917 free(dc_rx);
2918 return NULL;
2919}
2920
2921/*
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002922 * Look for the dictionary entry with the value of <i> in <d> cache of dictionary
2923 * entries used upon transmission.
2924 * Return the entry if found, NULL if not.
2925 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002926static struct ebpt_node *dcache_tx_lookup_value(struct dcache_tx *d,
2927 struct dcache_tx_entry *i)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002928{
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002929 return ebpt_lookup(&d->cached_entries, i->entry.key);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002930}
2931
2932/*
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002933 * Flush <dc> cache.
2934 * Always succeeds.
2935 */
2936static inline void flush_dcache(struct peer *peer)
2937{
2938 int i;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02002939 struct dcache *dc = peer->dcache;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002940
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002941 for (i = 0; i < dc->max_entries; i++)
2942 ebpt_delete(&dc->tx->entries[i]);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002943
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002944 memset(dc->rx, 0, dc->max_entries * sizeof *dc->rx);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002945}
2946
2947/*
2948 * Insert a dictionary entry in <dc> cache part used upon transmission (->tx)
2949 * with information provided by <i> dictionary cache entry (especially the value
2950 * to be inserted if not already). Return <i> if already present in the cache
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002951 * or something different of <i> if not.
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002952 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002953static struct ebpt_node *dcache_tx_insert(struct dcache *dc, struct dcache_tx_entry *i)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002954{
2955 struct dcache_tx *dc_tx;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002956 struct ebpt_node *o;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002957
2958 dc_tx = dc->tx;
Frédéric Lécailleb65717f2019-06-07 14:25:25 +02002959
2960 if (dc_tx->prev_lookup && dc_tx->prev_lookup->key == i->entry.key) {
2961 o = dc_tx->prev_lookup;
2962 } else {
2963 o = dcache_tx_lookup_value(dc_tx, i);
2964 if (o) {
2965 /* Save it */
2966 dc_tx->prev_lookup = o;
2967 }
2968 }
2969
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002970 if (o) {
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002971 /* Copy the ID. */
2972 i->id = o - dc->tx->entries;
2973 return &i->entry;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002974 }
2975
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002976 /* The new entry to put in cache */
Frédéric Lécailleb65717f2019-06-07 14:25:25 +02002977 dc_tx->prev_lookup = o = &dc_tx->entries[dc_tx->lru_key];
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002978
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002979 ebpt_delete(o);
2980 o->key = i->entry.key;
2981 ebpt_insert(&dc_tx->cached_entries, o);
2982 i->id = dc_tx->lru_key;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002983
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002984 /* Update the index for the next entry to put in cache */
2985 dc_tx->lru_key = (dc_tx->lru_key + 1) & (dc->max_entries - 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002986
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002987 return o;
2988}
Emeric Brunb3971ab2015-05-12 18:49:09 +02002989
2990/*
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02002991 * Allocate a dictionary cache for each peer of <peers> section.
2992 * Return 1 if succeeded, 0 if not.
2993 */
2994int peers_alloc_dcache(struct peers *peers)
2995{
2996 struct peer *p;
2997
2998 for (p = peers->remote; p; p = p->next) {
2999 p->dcache = new_dcache(PEER_STKT_CACHE_MAX_ENTRIES);
3000 if (!p->dcache)
3001 return 0;
3002 }
3003
3004 return 1;
3005}
3006
3007/*
Emeric Brunb3971ab2015-05-12 18:49:09 +02003008 * Function used to register a table for sync on a group of peers
3009 *
3010 */
3011void peers_register_table(struct peers *peers, struct stktable *table)
3012{
3013 struct shared_table *st;
3014 struct peer * curpeer;
3015 int id = 0;
3016
3017 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Vincent Bernat02779b62016-04-03 13:48:43 +02003018 st = calloc(1,sizeof(*st));
Emeric Brunb3971ab2015-05-12 18:49:09 +02003019 st->table = table;
3020 st->next = curpeer->tables;
3021 if (curpeer->tables)
3022 id = curpeer->tables->local_id;
3023 st->local_id = id + 1;
3024
3025 curpeer->tables = st;
3026 }
3027
3028 table->sync_task = peers->sync_task;
Emeric Brun2b920a12010-09-23 18:30:22 +02003029}
3030
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003031/*
3032 * Parse the "show peers" command arguments.
3033 * Returns 0 if succeeded, 1 if not with the ->msg of the appctx set as
3034 * error message.
3035 */
3036static int cli_parse_show_peers(char **args, char *payload, struct appctx *appctx, void *private)
3037{
3038 appctx->ctx.cfgpeers.target = NULL;
3039
3040 if (*args[2]) {
3041 struct peers *p;
3042
3043 for (p = cfg_peers; p; p = p->next) {
3044 if (!strcmp(p->id, args[2])) {
3045 appctx->ctx.cfgpeers.target = p;
3046 break;
3047 }
3048 }
3049
Willy Tarreau9d008692019-08-09 11:21:01 +02003050 if (!p)
3051 return cli_err(appctx, "No such peers\n");
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003052 }
3053
3054 return 0;
3055}
3056
3057/*
3058 * This function dumps the peer state information of <peers> "peers" section.
3059 * Returns 0 if the output buffer is full and needs to be called again, non-zero if not.
3060 * Dedicated to be called by cli_io_handler_show_peers() cli I/O handler.
3061 */
3062static int peers_dump_head(struct buffer *msg, struct stream_interface *si, struct peers *peers)
3063{
3064 struct tm tm;
3065
3066 get_localtime(peers->last_change, &tm);
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003067 chunk_appendf(msg, "%p: [%02d/%s/%04d:%02d:%02d:%02d] id=%s state=%d flags=0x%x resync_timeout=%s task_calls=%u\n",
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003068 peers,
3069 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
3070 tm.tm_hour, tm.tm_min, tm.tm_sec,
3071 peers->id, peers->state, peers->flags,
3072 peers->resync_timeout ?
3073 tick_is_expired(peers->resync_timeout, now_ms) ? "<PAST>" :
3074 human_time(TICKS_TO_MS(peers->resync_timeout - now_ms),
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003075 TICKS_TO_MS(1000)) : "<NEVER>",
3076 peers->sync_task ? peers->sync_task->calls : 0);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003077
3078 if (ci_putchk(si_ic(si), msg) == -1) {
3079 si_rx_room_blk(si);
3080 return 0;
3081 }
3082
3083 return 1;
3084}
3085
3086/*
3087 * This function dumps <peer> state information.
3088 * Returns 0 if the output buffer is full and needs to be called again, non-zero
3089 * if not. Dedicated to be called by cli_io_handler_show_peers() cli I/O handler.
3090 */
3091static int peers_dump_peer(struct buffer *msg, struct stream_interface *si, struct peer *peer)
3092{
3093 struct connection *conn;
3094 char pn[INET6_ADDRSTRLEN];
3095 struct stream_interface *peer_si;
3096 struct stream *peer_s;
3097 struct appctx *appctx;
3098 struct shared_table *st;
3099
3100 addr_to_str(&peer->addr, pn, sizeof pn);
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01003101 chunk_appendf(msg, " %p: id=%s(%s) addr=%s:%d status=%s reconnect=%s confirm=%u tx_hbt=%u rx_hbt=%u no_hbt=%u new_conn=%u proto_err=%u\n",
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003102 peer, peer->id,
3103 peer->local ? "local" : "remote",
3104 pn, get_host_port(&peer->addr),
3105 statuscode_str(peer->statuscode),
3106 peer->reconnect ?
3107 tick_is_expired(peer->reconnect, now_ms) ? "<PAST>" :
3108 human_time(TICKS_TO_MS(peer->reconnect - now_ms),
3109 TICKS_TO_MS(1000)) : "<NEVER>",
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01003110 peer->confirm, peer->tx_hbt, peer->rx_hbt,
3111 peer->no_hbt, peer->new_conn, peer->proto_err);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003112
3113 chunk_appendf(&trash, " flags=0x%x", peer->flags);
3114
3115 appctx = peer->appctx;
3116 if (!appctx)
Frédéric Lécaille470502b2019-11-06 10:41:03 +01003117 goto table_info;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003118
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003119 chunk_appendf(&trash, " appctx:%p st0=%d st1=%d task_calls=%u", appctx, appctx->st0, appctx->st1,
3120 appctx->t ? appctx->t->calls : 0);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003121
3122 peer_si = peer->appctx->owner;
3123 if (!peer_si)
Frédéric Lécaille470502b2019-11-06 10:41:03 +01003124 goto table_info;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003125
3126 peer_s = si_strm(peer_si);
3127 if (!peer_s)
Frédéric Lécaille470502b2019-11-06 10:41:03 +01003128 goto table_info;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003129
3130 chunk_appendf(&trash, " state=%s", si_state_str(si_opposite(peer_si)->state));
3131
3132 conn = objt_conn(strm_orig(peer_s));
3133 if (conn)
3134 chunk_appendf(&trash, "\n xprt=%s", conn_get_xprt_name(conn));
3135
Willy Tarreau3ca14902019-07-17 14:53:15 +02003136 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 +02003137 case AF_INET:
3138 case AF_INET6:
Willy Tarreau3ca14902019-07-17 14:53:15 +02003139 chunk_appendf(&trash, " src=%s:%d", pn, get_host_port(conn->src));
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003140 break;
3141 case AF_UNIX:
3142 chunk_appendf(&trash, " src=unix:%d", strm_li(peer_s)->luid);
3143 break;
3144 }
3145
Willy Tarreau3ca14902019-07-17 14:53:15 +02003146 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 +02003147 case AF_INET:
3148 case AF_INET6:
Willy Tarreau3ca14902019-07-17 14:53:15 +02003149 chunk_appendf(&trash, " addr=%s:%d", pn, get_host_port(conn->dst));
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003150 break;
3151 case AF_UNIX:
3152 chunk_appendf(&trash, " addr=unix:%d", strm_li(peer_s)->luid);
3153 break;
3154 }
3155
Frédéric Lécaille470502b2019-11-06 10:41:03 +01003156 table_info:
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003157 if (peer->remote_table)
3158 chunk_appendf(&trash, "\n remote_table:%p id=%s local_id=%d remote_id=%d",
3159 peer->remote_table,
3160 peer->remote_table->table->id,
3161 peer->remote_table->local_id,
3162 peer->remote_table->remote_id);
3163
3164 if (peer->last_local_table)
3165 chunk_appendf(&trash, "\n last_local_table:%p id=%s local_id=%d remote_id=%d",
3166 peer->last_local_table,
3167 peer->last_local_table->table->id,
3168 peer->last_local_table->local_id,
3169 peer->last_local_table->remote_id);
3170
3171 if (peer->tables) {
3172 chunk_appendf(&trash, "\n shared tables:");
3173 for (st = peer->tables; st; st = st->next) {
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003174 int i, count;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003175 struct stktable *t;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003176 struct dcache *dcache;
3177
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003178 t = st->table;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003179 dcache = peer->dcache;
3180
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003181 chunk_appendf(&trash, "\n %p local_id=%d remote_id=%d "
3182 "flags=0x%x remote_data=0x%llx",
3183 st, st->local_id, st->remote_id,
3184 st->flags, (unsigned long long)st->remote_data);
3185 chunk_appendf(&trash, "\n last_acked=%u last_pushed=%u last_get=%u"
3186 " teaching_origin=%u update=%u",
3187 st->last_acked, st->last_pushed, st->last_get,
3188 st->teaching_origin, st->update);
3189 chunk_appendf(&trash, "\n table:%p id=%s update=%u localupdate=%u"
3190 " commitupdate=%u syncing=%u",
3191 t, t->id, t->update, t->localupdate, t->commitupdate, t->syncing);
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003192 chunk_appendf(&trash, "\n TX dictionary cache:");
3193 count = 0;
3194 for (i = 0; i < dcache->max_entries; i++) {
3195 struct ebpt_node *node;
3196 struct dict_entry *de;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003197
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003198 node = &dcache->tx->entries[i];
3199 if (!node->key)
3200 break;
3201
3202 if (!count++)
3203 chunk_appendf(&trash, "\n ");
3204 de = node->key;
3205 chunk_appendf(&trash, " %3u -> %s", i, (char *)de->value.key);
3206 count &= 0x3;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003207 }
3208 chunk_appendf(&trash, "\n RX dictionary cache:");
3209 count = 0;
3210 for (i = 0; i < dcache->max_entries; i++) {
3211 if (!count++)
3212 chunk_appendf(&trash, "\n ");
3213 chunk_appendf(&trash, " %3u -> %s", i,
3214 dcache->rx[i].de ?
3215 (char *)dcache->rx[i].de->value.key : "-");
3216 count &= 0x3;
3217 }
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003218 }
3219 }
3220
3221 end:
3222 chunk_appendf(&trash, "\n");
3223 if (ci_putchk(si_ic(si), msg) == -1) {
3224 si_rx_room_blk(si);
3225 return 0;
3226 }
3227
3228 return 1;
3229}
3230
3231/*
3232 * This function dumps all the peers of "peers" section.
3233 * Returns 0 if the output buffer is full and needs to be called
3234 * again, non-zero if not. It proceeds in an isolated thread, so
3235 * there is no thread safety issue here.
3236 */
3237static int cli_io_handler_show_peers(struct appctx *appctx)
3238{
3239 int show_all;
3240 int ret = 0, first_peers = 1;
3241 struct stream_interface *si = appctx->owner;
3242
3243 thread_isolate();
3244
3245 show_all = !appctx->ctx.cfgpeers.target;
3246
3247 chunk_reset(&trash);
3248
3249 while (appctx->st2 != STAT_ST_FIN) {
3250 switch (appctx->st2) {
3251 case STAT_ST_INIT:
3252 if (show_all)
3253 appctx->ctx.cfgpeers.peers = cfg_peers;
3254 else
3255 appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.target;
3256
3257 appctx->st2 = STAT_ST_LIST;
3258 /* fall through */
3259
3260 case STAT_ST_LIST:
3261 if (!appctx->ctx.cfgpeers.peers) {
3262 /* No more peers list. */
3263 appctx->st2 = STAT_ST_END;
3264 }
3265 else {
3266 if (!first_peers)
3267 chunk_appendf(&trash, "\n");
3268 else
3269 first_peers = 0;
3270 if (!peers_dump_head(&trash, si, appctx->ctx.cfgpeers.peers))
3271 goto out;
3272
3273 appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peers->remote;
3274 appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.peers->next;
3275 appctx->st2 = STAT_ST_INFO;
3276 }
3277 break;
3278
3279 case STAT_ST_INFO:
3280 if (!appctx->ctx.cfgpeers.peer) {
3281 /* End of peer list */
3282 if (show_all)
3283 appctx->st2 = STAT_ST_LIST;
3284 else
3285 appctx->st2 = STAT_ST_END;
3286 }
3287 else {
3288 if (!peers_dump_peer(&trash, si, appctx->ctx.cfgpeers.peer))
3289 goto out;
3290
3291 appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peer->next;
3292 }
3293 break;
3294
3295 case STAT_ST_END:
3296 appctx->st2 = STAT_ST_FIN;
3297 break;
3298 }
3299 }
3300 ret = 1;
3301 out:
3302 thread_release();
3303 return ret;
3304}
3305
3306/*
3307 * CLI keywords.
3308 */
3309static struct cli_kw_list cli_kws = {{ }, {
3310 { { "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, },
3311 {},
3312}};
3313
3314/* Register cli keywords */
3315INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
3316