blob: 8ffe42167f79ec82e442e73d7e031b19d010a663 [file] [log] [blame]
Emeric Brun2b920a12010-09-23 18:30:22 +02001/*
Emeric Brunb3971ab2015-05-12 18:49:09 +02002 * Peer synchro management.
Emeric Brun2b920a12010-09-23 18:30:22 +02003 *
4 * Copyright 2010 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <string.h>
18
19#include <sys/socket.h>
20#include <sys/stat.h>
21#include <sys/types.h>
22
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020023#include <haproxy/api.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020024#include <haproxy/dict.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020025#include <haproxy/frontend.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020026#include <haproxy/net_helper.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020027#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020028#include <haproxy/peers.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020029#include <haproxy/task.h>
Willy Tarreau3727a8a2020-06-04 17:37:26 +020030#include <haproxy/signal.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020031#include <haproxy/time.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020032#include <haproxy/tools.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +020033#include <haproxy/thread.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020034
Frédéric Lécaille95679dc2019-04-15 10:25:27 +020035#include <types/stats.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020036
37#include <proto/acl.h>
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020038#include <proto/applet.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020039#include <proto/channel.h>
Frédéric Lécaille95679dc2019-04-15 10:25:27 +020040#include <proto/cli.h>
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 Tarreaufeb76402015-04-03 14:10:06 +020044#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020045#include <proto/stream.h>
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010046#include <proto/stick_table.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020047#include <proto/stream_interface.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020048
49
50/*******************************/
51/* Current peer learning state */
52/*******************************/
53
54/******************************/
Emeric Brunb3971ab2015-05-12 18:49:09 +020055/* Current peers section resync state */
Emeric Brun2b920a12010-09-23 18:30:22 +020056/******************************/
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010057#define PEERS_F_RESYNC_LOCAL 0x00000001 /* Learn from local finished or no more needed */
58#define PEERS_F_RESYNC_REMOTE 0x00000002 /* Learn from remote finished or no more needed */
59#define PEERS_F_RESYNC_ASSIGN 0x00000004 /* A peer was assigned to learn our lesson */
60#define PEERS_F_RESYNC_PROCESS 0x00000008 /* The assigned peer was requested for resync */
61#define PEERS_F_DONOTSTOP 0x00010000 /* Main table sync task block process during soft stop
62 to push data to new process */
Emeric Brun2b920a12010-09-23 18:30:22 +020063
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010064#define PEERS_RESYNC_STATEMASK (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE)
65#define PEERS_RESYNC_FROMLOCAL 0x00000000
66#define PEERS_RESYNC_FROMREMOTE PEERS_F_RESYNC_LOCAL
67#define PEERS_RESYNC_FINISHED (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE)
Emeric Brunb3971ab2015-05-12 18:49:09 +020068
69/***********************************/
70/* Current shared table sync state */
71/***********************************/
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010072#define SHTABLE_F_TEACH_STAGE1 0x00000001 /* Teach state 1 complete */
73#define SHTABLE_F_TEACH_STAGE2 0x00000002 /* Teach state 2 complete */
Emeric Brun2b920a12010-09-23 18:30:22 +020074
75/******************************/
76/* Remote peer teaching state */
77/******************************/
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010078#define PEER_F_TEACH_PROCESS 0x00000001 /* Teach a lesson to current peer */
79#define PEER_F_TEACH_FINISHED 0x00000008 /* Teach conclude, (wait for confirm) */
80#define PEER_F_TEACH_COMPLETE 0x00000010 /* All that we know already taught to current peer, used only for a local peer */
81#define PEER_F_LEARN_ASSIGN 0x00000100 /* Current peer was assigned for a lesson */
82#define PEER_F_LEARN_NOTUP2DATE 0x00000200 /* Learn from peer finished but peer is not up to date */
83#define PEER_F_ALIVE 0x20000000 /* Used to flag a peer a alive. */
84#define PEER_F_HEARTBEAT 0x40000000 /* Heartbeat message to send. */
85#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 +020086
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010087#define PEER_TEACH_RESET ~(PEER_F_TEACH_PROCESS|PEER_F_TEACH_FINISHED) /* PEER_F_TEACH_COMPLETE should never be reset */
88#define PEER_LEARN_RESET ~(PEER_F_LEARN_ASSIGN|PEER_F_LEARN_NOTUP2DATE)
Emeric Brun2b920a12010-09-23 18:30:22 +020089
Frédéric Lécaille54bff832019-03-26 10:25:20 +010090#define PEER_RESYNC_TIMEOUT 5000 /* 5 seconds */
91#define PEER_RECONNECT_TIMEOUT 5000 /* 5 seconds */
Frédéric Lécaille645635d2019-02-11 17:49:39 +010092#define PEER_HEARTBEAT_TIMEOUT 3000 /* 3 seconds */
93
Emeric Brunb3971ab2015-05-12 18:49:09 +020094/*****************************/
95/* Sync message class */
96/*****************************/
97enum {
98 PEER_MSG_CLASS_CONTROL = 0,
99 PEER_MSG_CLASS_ERROR,
100 PEER_MSG_CLASS_STICKTABLE = 10,
101 PEER_MSG_CLASS_RESERVED = 255,
102};
103
104/*****************************/
105/* control message types */
106/*****************************/
107enum {
108 PEER_MSG_CTRL_RESYNCREQ = 0,
109 PEER_MSG_CTRL_RESYNCFINISHED,
110 PEER_MSG_CTRL_RESYNCPARTIAL,
111 PEER_MSG_CTRL_RESYNCCONFIRM,
Frédéric Lécaille645635d2019-02-11 17:49:39 +0100112 PEER_MSG_CTRL_HEARTBEAT,
Emeric Brunb3971ab2015-05-12 18:49:09 +0200113};
114
115/*****************************/
116/* error message types */
117/*****************************/
118enum {
119 PEER_MSG_ERR_PROTOCOL = 0,
120 PEER_MSG_ERR_SIZELIMIT,
121};
122
Emeric Brun530ba382020-06-02 11:17:42 +0200123/* network key types;
124 * network types were directly and mistakenly
125 * mapped on sample types, to keep backward
126 * compatiblitiy we keep those values but
127 * we now use a internal/network mapping
128 * to avoid further mistakes adding or
129 * modifying internals types
130 */
131enum {
132 PEER_KT_ANY = 0, /* any type */
133 PEER_KT_RESV1, /* UNUSED */
134 PEER_KT_SINT, /* signed 64bits integer type */
135 PEER_KT_RESV3, /* UNUSED */
136 PEER_KT_IPV4, /* ipv4 type */
137 PEER_KT_IPV6, /* ipv6 type */
138 PEER_KT_STR, /* char string type */
139 PEER_KT_BIN, /* buffer type */
140 PEER_KT_TYPES /* number of types, must always be last */
141};
142
143/* Map used to retrieve network type from internal type
144 * Note: Undeclared mapping maps entry to PEER_KT_ANY == 0
145 */
146static int peer_net_key_type[SMP_TYPES] = {
147 [SMP_T_SINT] = PEER_KT_SINT,
148 [SMP_T_IPV4] = PEER_KT_IPV4,
149 [SMP_T_IPV6] = PEER_KT_IPV6,
150 [SMP_T_STR] = PEER_KT_STR,
151 [SMP_T_BIN] = PEER_KT_BIN,
152};
153
154/* Map used to retrieve internal type from external type
155 * Note: Undeclared mapping maps entry to SMP_T_ANY == 0
156 */
157static int peer_int_key_type[PEER_KT_TYPES] = {
158 [PEER_KT_SINT] = SMP_T_SINT,
159 [PEER_KT_IPV4] = SMP_T_IPV4,
160 [PEER_KT_IPV6] = SMP_T_IPV6,
161 [PEER_KT_STR] = SMP_T_STR,
162 [PEER_KT_BIN] = SMP_T_BIN,
163};
164
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100165/*
166 * Parameters used by functions to build peer protocol messages. */
167struct peer_prep_params {
168 struct {
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100169 struct peer *peer;
170 } hello;
171 struct {
172 unsigned int st1;
173 } error_status;
174 struct {
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100175 struct stksess *stksess;
176 struct shared_table *shared_table;
177 unsigned int updateid;
178 int use_identifier;
179 int use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200180 struct peer *peer;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100181 } updt;
182 struct {
183 struct shared_table *shared_table;
184 } swtch;
185 struct {
186 struct shared_table *shared_table;
187 } ack;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100188 struct {
189 unsigned char head[2];
190 } control;
191 struct {
192 unsigned char head[2];
193 } error;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100194};
Emeric Brunb3971ab2015-05-12 18:49:09 +0200195
196/*******************************/
197/* stick table sync mesg types */
198/* Note: ids >= 128 contains */
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500199/* id message contains data */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200200/*******************************/
Olivier Houchard33992262018-10-16 18:49:26 +0200201#define PEER_MSG_STKT_UPDATE 0x80
202#define PEER_MSG_STKT_INCUPDATE 0x81
203#define PEER_MSG_STKT_DEFINE 0x82
204#define PEER_MSG_STKT_SWITCH 0x83
205#define PEER_MSG_STKT_ACK 0x84
206#define PEER_MSG_STKT_UPDATE_TIMED 0x85
207#define PEER_MSG_STKT_INCUPDATE_TIMED 0x86
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +0200208/* All the stick-table message identifiers abova have the #7 bit set */
209#define PEER_MSG_STKT_BIT 7
210#define PEER_MSG_STKT_BIT_MASK (1 << PEER_MSG_STKT_BIT)
Emeric Brun2b920a12010-09-23 18:30:22 +0200211
Frédéric Lécaille39143342019-05-24 14:32:27 +0200212/* The maximum length of an encoded data length. */
213#define PEER_MSG_ENC_LENGTH_MAXLEN 5
214
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200215/* Minimum 64-bits value encoded with 2 bytes */
216#define PEER_ENC_2BYTES_MIN 0xf0 /* 0xf0 (or 240) */
217/* 3 bytes */
218#define PEER_ENC_3BYTES_MIN ((1ULL << 11) | PEER_ENC_2BYTES_MIN) /* 0x8f0 (or 2288) */
219/* 4 bytes */
220#define PEER_ENC_4BYTES_MIN ((1ULL << 18) | PEER_ENC_3BYTES_MIN) /* 0x408f0 (or 264432) */
221/* 5 bytes */
222#define PEER_ENC_5BYTES_MIN ((1ULL << 25) | PEER_ENC_4BYTES_MIN) /* 0x20408f0 (or 33818864) */
223/* 6 bytes */
224#define PEER_ENC_6BYTES_MIN ((1ULL << 32) | PEER_ENC_5BYTES_MIN) /* 0x1020408f0 (or 4328786160) */
225/* 7 bytes */
226#define PEER_ENC_7BYTES_MIN ((1ULL << 39) | PEER_ENC_6BYTES_MIN) /* 0x81020408f0 (or 554084600048) */
227/* 8 bytes */
228#define PEER_ENC_8BYTES_MIN ((1ULL << 46) | PEER_ENC_7BYTES_MIN) /* 0x4081020408f0 (or 70922828777712) */
229/* 9 bytes */
230#define PEER_ENC_9BYTES_MIN ((1ULL << 53) | PEER_ENC_8BYTES_MIN) /* 0x204081020408f0 (or 9078122083518704) */
231/* 10 bytes */
232#define PEER_ENC_10BYTES_MIN ((1ULL << 60) | PEER_ENC_9BYTES_MIN) /* 0x10204081020408f0 (or 1161999626690365680) */
233
234/* #7 bit used to detect the last byte to be encoded */
235#define PEER_ENC_STOP_BIT 7
236/* The byte minimum value with #7 bit set */
237#define PEER_ENC_STOP_BYTE (1 << PEER_ENC_STOP_BIT)
238/* The left most number of bits set for PEER_ENC_2BYTES_MIN */
239#define PEER_ENC_2BYTES_MIN_BITS 4
240
Frédéric Lécaille39143342019-05-24 14:32:27 +0200241#define PEER_MSG_HEADER_LEN 2
242
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200243#define PEER_STKT_CACHE_MAX_ENTRIES 128
244
Emeric Brun2b920a12010-09-23 18:30:22 +0200245/**********************************/
246/* Peer Session IO handler states */
247/**********************************/
248
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100249enum {
250 PEER_SESS_ST_ACCEPT = 0, /* Initial state for session create by an accept, must be zero! */
251 PEER_SESS_ST_GETVERSION, /* Validate supported protocol version */
252 PEER_SESS_ST_GETHOST, /* Validate host ID correspond to local host id */
253 PEER_SESS_ST_GETPEER, /* Validate peer ID correspond to a known remote peer id */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100254 /* after this point, data were possibly exchanged */
255 PEER_SESS_ST_SENDSUCCESS, /* Send ret code 200 (success) and wait for message */
256 PEER_SESS_ST_CONNECT, /* Initial state for session create on a connect, push presentation into buffer */
257 PEER_SESS_ST_GETSTATUS, /* Wait for the welcome message */
258 PEER_SESS_ST_WAITMSG, /* Wait for data messages */
259 PEER_SESS_ST_EXIT, /* Exit with status code */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200260 PEER_SESS_ST_ERRPROTO, /* Send error proto message before exit */
261 PEER_SESS_ST_ERRSIZE, /* Send error size message before exit */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100262 PEER_SESS_ST_END, /* Killed session */
263};
Emeric Brun2b920a12010-09-23 18:30:22 +0200264
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100265/***************************************************/
266/* Peer Session status code - part of the protocol */
267/***************************************************/
Emeric Brun2b920a12010-09-23 18:30:22 +0200268
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100269#define PEER_SESS_SC_CONNECTCODE 100 /* connect in progress */
270#define PEER_SESS_SC_CONNECTEDCODE 110 /* tcp connect success */
Emeric Brun2b920a12010-09-23 18:30:22 +0200271
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100272#define PEER_SESS_SC_SUCCESSCODE 200 /* accept or connect successful */
Emeric Brun2b920a12010-09-23 18:30:22 +0200273
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100274#define PEER_SESS_SC_TRYAGAIN 300 /* try again later */
Emeric Brun2b920a12010-09-23 18:30:22 +0200275
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100276#define PEER_SESS_SC_ERRPROTO 501 /* error protocol */
277#define PEER_SESS_SC_ERRVERSION 502 /* unknown protocol version */
278#define PEER_SESS_SC_ERRHOST 503 /* bad host name */
279#define PEER_SESS_SC_ERRPEER 504 /* unknown peer */
Emeric Brun2b920a12010-09-23 18:30:22 +0200280
281#define PEER_SESSION_PROTO_NAME "HAProxyS"
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200282#define PEER_MAJOR_VER 2
283#define PEER_MINOR_VER 1
284#define PEER_DWNGRD_MINOR_VER 0
Emeric Brun2b920a12010-09-23 18:30:22 +0200285
Willy Tarreau6254a922019-01-29 17:45:23 +0100286static size_t proto_len = sizeof(PEER_SESSION_PROTO_NAME) - 1;
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200287struct peers *cfg_peers = NULL;
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200288static void peer_session_forceshutdown(struct peer *peer);
Emeric Brun2b920a12010-09-23 18:30:22 +0200289
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200290static struct ebpt_node *dcache_tx_insert(struct dcache *dc,
291 struct dcache_tx_entry *i);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200292static inline void flush_dcache(struct peer *peer);
293
Frédéric Lécaille95679dc2019-04-15 10:25:27 +0200294static const char *statuscode_str(int statuscode)
295{
296 switch (statuscode) {
297 case PEER_SESS_SC_CONNECTCODE:
298 return "CONN";
299 case PEER_SESS_SC_CONNECTEDCODE:
300 return "HSHK";
301 case PEER_SESS_SC_SUCCESSCODE:
302 return "ESTA";
303 case PEER_SESS_SC_TRYAGAIN:
304 return "RETR";
305 case PEER_SESS_SC_ERRPROTO:
306 return "PROT";
307 case PEER_SESS_SC_ERRVERSION:
308 return "VERS";
309 case PEER_SESS_SC_ERRHOST:
310 return "NAME";
311 case PEER_SESS_SC_ERRPEER:
312 return "UNKN";
313 default:
314 return "NONE";
315 }
316}
317
Emeric Brun18928af2017-03-29 16:32:53 +0200318/* This function encode an uint64 to 'dynamic' length format.
319 The encoded value is written at address *str, and the
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500320 caller must assure that size after *str is large enough.
Emeric Brun18928af2017-03-29 16:32:53 +0200321 At return, the *str is set at the next Byte after then
322 encoded integer. The function returns then length of the
323 encoded integer in Bytes */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200324int intencode(uint64_t i, char **str) {
325 int idx = 0;
326 unsigned char *msg;
327
Emeric Brunb3971ab2015-05-12 18:49:09 +0200328 msg = (unsigned char *)*str;
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200329 if (i < PEER_ENC_2BYTES_MIN) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200330 msg[0] = (unsigned char)i;
331 *str = (char *)&msg[idx+1];
332 return (idx+1);
333 }
334
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200335 msg[idx] =(unsigned char)i | PEER_ENC_2BYTES_MIN;
336 i = (i - PEER_ENC_2BYTES_MIN) >> PEER_ENC_2BYTES_MIN_BITS;
337 while (i >= PEER_ENC_STOP_BYTE) {
338 msg[++idx] = (unsigned char)i | PEER_ENC_STOP_BYTE;
339 i = (i - PEER_ENC_STOP_BYTE) >> PEER_ENC_STOP_BIT;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200340 }
341 msg[++idx] = (unsigned char)i;
342 *str = (char *)&msg[idx+1];
343 return (idx+1);
344}
345
346
347/* This function returns the decoded integer or 0
348 if decode failed
349 *str point on the beginning of the integer to decode
350 at the end of decoding *str point on the end of the
351 encoded integer or to null if end is reached */
Emeric Brun18928af2017-03-29 16:32:53 +0200352uint64_t intdecode(char **str, char *end)
353{
Emeric Brunb3971ab2015-05-12 18:49:09 +0200354 unsigned char *msg;
Emeric Brun18928af2017-03-29 16:32:53 +0200355 uint64_t i;
356 int shift;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200357
358 if (!*str)
359 return 0;
360
361 msg = (unsigned char *)*str;
Emeric Brun18928af2017-03-29 16:32:53 +0200362 if (msg >= (unsigned char *)end)
363 goto fail;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200364
Emeric Brun18928af2017-03-29 16:32:53 +0200365 i = *(msg++);
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200366 if (i >= PEER_ENC_2BYTES_MIN) {
367 shift = PEER_ENC_2BYTES_MIN_BITS;
Emeric Brun18928af2017-03-29 16:32:53 +0200368 do {
369 if (msg >= (unsigned char *)end)
370 goto fail;
371 i += (uint64_t)*msg << shift;
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200372 shift += PEER_ENC_STOP_BIT;
373 } while (*(msg++) >= PEER_ENC_STOP_BYTE);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200374 }
Frédéric Lécaillea8725ec2019-01-22 10:31:39 +0100375 *str = (char *)msg;
376 return i;
Emeric Brun18928af2017-03-29 16:32:53 +0200377
Frédéric Lécaillea8725ec2019-01-22 10:31:39 +0100378 fail:
379 *str = NULL;
380 return 0;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200381}
Emeric Brun2b920a12010-09-23 18:30:22 +0200382
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100383/*
384 * Build a "hello" peer protocol message.
385 * Return the number of written bytes written to build this messages if succeeded,
386 * 0 if not.
387 */
388static int peer_prepare_hellomsg(char *msg, size_t size, struct peer_prep_params *p)
389{
390 int min_ver, ret;
391 struct peer *peer;
392
393 peer = p->hello.peer;
394 min_ver = (peer->flags & PEER_F_DWNGRD) ? PEER_DWNGRD_MINOR_VER : PEER_MINOR_VER;
395 /* Prepare headers */
396 ret = snprintf(msg, size, PEER_SESSION_PROTO_NAME " %u.%u\n%s\n%s %d %d\n",
397 PEER_MAJOR_VER, min_ver, peer->id, localpeer, (int)getpid(), relative_pid);
398 if (ret >= size)
399 return 0;
400
401 return ret;
402}
403
404/*
405 * Build a "handshake succeeded" status message.
406 * Return the number of written bytes written to build this messages if succeeded,
407 * 0 if not.
408 */
409static int peer_prepare_status_successmsg(char *msg, size_t size, struct peer_prep_params *p)
410{
411 int ret;
412
413 ret = snprintf(msg, size, "%d\n", PEER_SESS_SC_SUCCESSCODE);
414 if (ret >= size)
415 return 0;
416
417 return ret;
418}
419
420/*
421 * Build an error status message.
422 * Return the number of written bytes written to build this messages if succeeded,
423 * 0 if not.
424 */
425static int peer_prepare_status_errormsg(char *msg, size_t size, struct peer_prep_params *p)
426{
427 int ret;
428 unsigned int st1;
429
430 st1 = p->error_status.st1;
431 ret = snprintf(msg, size, "%d\n", st1);
432 if (ret >= size)
433 return 0;
434
435 return ret;
436}
437
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200438/* Set the stick-table UPDATE message type byte at <msg_type> address,
439 * depending on <use_identifier> and <use_timed> boolean parameters.
440 * Always successful.
441 */
442static inline void peer_set_update_msg_type(char *msg_type, int use_identifier, int use_timed)
443{
444 if (use_timed) {
445 if (use_identifier)
446 *msg_type = PEER_MSG_STKT_UPDATE_TIMED;
447 else
448 *msg_type = PEER_MSG_STKT_INCUPDATE_TIMED;
449 }
450 else {
451 if (use_identifier)
452 *msg_type = PEER_MSG_STKT_UPDATE;
453 else
454 *msg_type = PEER_MSG_STKT_INCUPDATE;
455 }
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200456}
Emeric Brun2b920a12010-09-23 18:30:22 +0200457/*
Emeric Brunb3971ab2015-05-12 18:49:09 +0200458 * This prepare the data update message on the stick session <ts>, <st> is the considered
459 * stick table.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800460 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200461 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
462 * check size)
Emeric Brun2b920a12010-09-23 18:30:22 +0200463 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100464static int peer_prepare_updatemsg(char *msg, size_t size, struct peer_prep_params *p)
Emeric Brun2b920a12010-09-23 18:30:22 +0200465{
466 uint32_t netinteger;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200467 unsigned short datalen;
468 char *cursor, *datamsg;
Emeric Brun94900952015-06-11 18:25:54 +0200469 unsigned int data_type;
470 void *data_ptr;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100471 struct stksess *ts;
472 struct shared_table *st;
473 unsigned int updateid;
474 int use_identifier;
475 int use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200476 struct peer *peer;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100477
478 ts = p->updt.stksess;
479 st = p->updt.shared_table;
480 updateid = p->updt.updateid;
481 use_identifier = p->updt.use_identifier;
482 use_timed = p->updt.use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200483 peer = p->updt.peer;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200484
Frédéric Lécaille0e8db972019-05-24 14:34:34 +0200485 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200486
Emeric Brun2b920a12010-09-23 18:30:22 +0200487 /* construct message */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200488
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500489 /* check if we need to send the update identifier */
Emeric Brun819fc6f2017-06-13 19:37:32 +0200490 if (!st->last_pushed || updateid < st->last_pushed || ((updateid - st->last_pushed) != 1)) {
Emeric Bruna6a09982015-09-22 15:34:19 +0200491 use_identifier = 1;
Emeric Brun2b920a12010-09-23 18:30:22 +0200492 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200493
494 /* encode update identifier if needed */
495 if (use_identifier) {
Emeric Brun819fc6f2017-06-13 19:37:32 +0200496 netinteger = htonl(updateid);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200497 memcpy(cursor, &netinteger, sizeof(netinteger));
498 cursor += sizeof(netinteger);
Emeric Brun2b920a12010-09-23 18:30:22 +0200499 }
500
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200501 if (use_timed) {
502 netinteger = htonl(tick_remain(now_ms, ts->expire));
503 memcpy(cursor, &netinteger, sizeof(netinteger));
504 cursor += sizeof(netinteger);
505 }
506
Emeric Brunb3971ab2015-05-12 18:49:09 +0200507 /* encode the key */
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +0200508 if (st->table->type == SMP_T_STR) {
Emeric Brun2b920a12010-09-23 18:30:22 +0200509 int stlen = strlen((char *)ts->key.key);
510
Emeric Brunb3971ab2015-05-12 18:49:09 +0200511 intencode(stlen, &cursor);
512 memcpy(cursor, ts->key.key, stlen);
513 cursor += stlen;
Emeric Brun2b920a12010-09-23 18:30:22 +0200514 }
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +0200515 else if (st->table->type == SMP_T_SINT) {
Willy Tarreau6cde5d82020-02-25 09:41:22 +0100516 netinteger = htonl(read_u32(ts->key.key));
Emeric Brunb3971ab2015-05-12 18:49:09 +0200517 memcpy(cursor, &netinteger, sizeof(netinteger));
518 cursor += sizeof(netinteger);
Emeric Brun2b920a12010-09-23 18:30:22 +0200519 }
520 else {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200521 memcpy(cursor, ts->key.key, st->table->key_size);
522 cursor += st->table->key_size;
Emeric Brun2b920a12010-09-23 18:30:22 +0200523 }
524
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100525 HA_RWLOCK_RDLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200526 /* encode values */
Emeric Brun94900952015-06-11 18:25:54 +0200527 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200528
Emeric Brun94900952015-06-11 18:25:54 +0200529 data_ptr = stktable_data_ptr(st->table, ts, data_type);
530 if (data_ptr) {
531 switch (stktable_data_types[data_type].std_type) {
532 case STD_T_SINT: {
533 int data;
534
535 data = stktable_data_cast(data_ptr, std_t_sint);
536 intencode(data, &cursor);
537 break;
538 }
539 case STD_T_UINT: {
540 unsigned int data;
541
542 data = stktable_data_cast(data_ptr, std_t_uint);
543 intencode(data, &cursor);
544 break;
545 }
546 case STD_T_ULL: {
547 unsigned long long data;
548
549 data = stktable_data_cast(data_ptr, std_t_ull);
550 intencode(data, &cursor);
551 break;
552 }
553 case STD_T_FRQP: {
554 struct freq_ctr_period *frqp;
555
556 frqp = &stktable_data_cast(data_ptr, std_t_frqp);
557 intencode((unsigned int)(now_ms - frqp->curr_tick), &cursor);
558 intencode(frqp->curr_ctr, &cursor);
559 intencode(frqp->prev_ctr, &cursor);
560 break;
561 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200562 case STD_T_DICT: {
563 struct dict_entry *de;
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200564 struct ebpt_node *cached_de;
Willy Tarreau237f8ae2019-06-06 16:40:43 +0200565 struct dcache_tx_entry cde = { };
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200566 char *beg, *end;
567 size_t value_len, data_len;
568 struct dcache *dc;
569
570 de = stktable_data_cast(data_ptr, std_t_dict);
Frédéric Lécailleaf9990f2019-11-13 17:50:34 +0100571 if (!de) {
572 /* No entry */
573 intencode(0, &cursor);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200574 break;
Frédéric Lécailleaf9990f2019-11-13 17:50:34 +0100575 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200576
577 dc = peer->dcache;
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200578 cde.entry.key = de;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200579 cached_de = dcache_tx_insert(dc, &cde);
Frédéric Lécaillefd827932019-06-07 10:34:04 +0200580 if (cached_de == &cde.entry) {
581 if (cde.id + 1 >= PEER_ENC_2BYTES_MIN)
582 break;
583 /* Encode the length of the remaining data -> 1 */
584 intencode(1, &cursor);
585 /* Encode the cache entry ID */
586 intencode(cde.id + 1, &cursor);
587 }
588 else {
589 /* Leave enough room to encode the remaining data length. */
590 end = beg = cursor + PEER_MSG_ENC_LENGTH_MAXLEN;
591 /* Encode the dictionary entry key */
592 intencode(cde.id + 1, &end);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200593 /* Encode the length of the dictionary entry data */
Frédéric Lécaillefd827932019-06-07 10:34:04 +0200594 value_len = de->len;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200595 intencode(value_len, &end);
596 /* Copy the data */
597 memcpy(end, de->value.key, value_len);
598 end += value_len;
Frédéric Lécaillefd827932019-06-07 10:34:04 +0200599 /* Encode the length of the data */
600 data_len = end - beg;
601 intencode(data_len, &cursor);
602 memmove(cursor, beg, data_len);
603 cursor += data_len;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200604 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200605 break;
606 }
Emeric Brun94900952015-06-11 18:25:54 +0200607 }
608 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200609 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100610 HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200611
612 /* Compute datalen */
613 datalen = (cursor - datamsg);
614
615 /* prepare message header */
616 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200617 peer_set_update_msg_type(&msg[1], use_identifier, use_timed);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200618 cursor = &msg[2];
619 intencode(datalen, &cursor);
620
621 /* move data after header */
622 memmove(cursor, datamsg, datalen);
623
624 /* return header size + data_len */
625 return (cursor - msg) + datalen;
626}
627
628/*
629 * This prepare the switch table message to targeted share table <st>.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800630 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200631 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
632 * check size)
633 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100634static int peer_prepare_switchmsg(char *msg, size_t size, struct peer_prep_params *params)
Emeric Brunb3971ab2015-05-12 18:49:09 +0200635{
636 int len;
637 unsigned short datalen;
Willy Tarreau83061a82018-07-13 11:56:34 +0200638 struct buffer *chunk;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200639 char *cursor, *datamsg, *chunkp, *chunkq;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200640 uint64_t data = 0;
Emeric Brun94900952015-06-11 18:25:54 +0200641 unsigned int data_type;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100642 struct shared_table *st;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200643
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100644 st = params->swtch.shared_table;
Frédéric Lécaille39143342019-05-24 14:32:27 +0200645 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200646
647 /* Encode data */
648
649 /* encode local id */
650 intencode(st->local_id, &cursor);
651
652 /* encode table name */
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100653 len = strlen(st->table->nid);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200654 intencode(len, &cursor);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100655 memcpy(cursor, st->table->nid, len);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200656 cursor += len;
657
658 /* encode table type */
659
Emeric Brun530ba382020-06-02 11:17:42 +0200660 intencode(peer_net_key_type[st->table->type], &cursor);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200661
662 /* encode table key size */
663 intencode(st->table->key_size, &cursor);
664
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200665 chunk = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200666 chunkp = chunkq = chunk->area;
Emeric Brun94900952015-06-11 18:25:54 +0200667 /* encode available known data types in table */
668 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
669 if (st->table->data_ofs[data_type]) {
670 switch (stktable_data_types[data_type].std_type) {
671 case STD_T_SINT:
672 case STD_T_UINT:
673 case STD_T_ULL:
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200674 case STD_T_DICT:
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200675 data |= 1 << data_type;
676 break;
Emeric Brun94900952015-06-11 18:25:54 +0200677 case STD_T_FRQP:
678 data |= 1 << data_type;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200679 intencode(data_type, &chunkq);
680 intencode(st->table->data_arg[data_type].u, &chunkq);
Emeric Brun94900952015-06-11 18:25:54 +0200681 break;
682 }
683 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200684 }
685 intencode(data, &cursor);
686
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200687 /* Encode stick-table entries duration. */
688 intencode(st->table->expire, &cursor);
689
690 if (chunkq > chunkp) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200691 chunk->data = chunkq - chunkp;
692 memcpy(cursor, chunk->area, chunk->data);
693 cursor += chunk->data;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200694 }
695
Emeric Brunb3971ab2015-05-12 18:49:09 +0200696 /* Compute datalen */
697 datalen = (cursor - datamsg);
Emeric Brun2b920a12010-09-23 18:30:22 +0200698
Emeric Brunb3971ab2015-05-12 18:49:09 +0200699 /* prepare message header */
700 msg[0] = PEER_MSG_CLASS_STICKTABLE;
701 msg[1] = PEER_MSG_STKT_DEFINE;
702 cursor = &msg[2];
703 intencode(datalen, &cursor);
Emeric Brun2b920a12010-09-23 18:30:22 +0200704
Emeric Brunb3971ab2015-05-12 18:49:09 +0200705 /* move data after header */
706 memmove(cursor, datamsg, datalen);
707
708 /* return header size + data_len */
709 return (cursor - msg) + datalen;
Emeric Brun2b920a12010-09-23 18:30:22 +0200710}
711
Emeric Brunb3971ab2015-05-12 18:49:09 +0200712/*
713 * This prepare the acknowledge message on the stick session <ts>, <st> is the considered
714 * stick table.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800715 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200716 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
717 * check size)
718 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100719static int peer_prepare_ackmsg(char *msg, size_t size, struct peer_prep_params *p)
Emeric Brunb3971ab2015-05-12 18:49:09 +0200720{
721 unsigned short datalen;
722 char *cursor, *datamsg;
723 uint32_t netinteger;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100724 struct shared_table *st;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200725
Frédéric Lécaille39143342019-05-24 14:32:27 +0200726 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200727
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100728 st = p->ack.shared_table;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200729 intencode(st->remote_id, &cursor);
730 netinteger = htonl(st->last_get);
731 memcpy(cursor, &netinteger, sizeof(netinteger));
732 cursor += sizeof(netinteger);
733
734 /* Compute datalen */
735 datalen = (cursor - datamsg);
736
737 /* prepare message header */
738 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Emeric Brune1ab8082015-08-21 11:48:54 +0200739 msg[1] = PEER_MSG_STKT_ACK;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200740 cursor = &msg[2];
741 intencode(datalen, &cursor);
742
743 /* move data after header */
744 memmove(cursor, datamsg, datalen);
745
746 /* return header size + data_len */
747 return (cursor - msg) + datalen;
748}
Emeric Brun2b920a12010-09-23 18:30:22 +0200749
750/*
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200751 * Function to deinit connected peer
752 */
753void __peer_session_deinit(struct peer *peer)
754{
755 struct stream_interface *si;
756 struct stream *s;
757 struct peers *peers;
758
759 if (!peer->appctx)
760 return;
761
762 si = peer->appctx->owner;
763 if (!si)
764 return;
765
766 s = si_strm(si);
767 if (!s)
768 return;
769
770 peers = strm_fe(s)->parent;
771 if (!peers)
772 return;
773
774 if (peer->appctx->st0 == PEER_SESS_ST_WAITMSG)
775 HA_ATOMIC_SUB(&connected_peers, 1);
776
777 HA_ATOMIC_SUB(&active_peers, 1);
778
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200779 flush_dcache(peer);
780
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200781 /* Re-init current table pointers to force announcement on re-connect */
782 peer->remote_table = peer->last_local_table = NULL;
783 peer->appctx = NULL;
784 if (peer->flags & PEER_F_LEARN_ASSIGN) {
785 /* unassign current peer for learning */
786 peer->flags &= ~(PEER_F_LEARN_ASSIGN);
787 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
788
789 /* reschedule a resync */
790 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000));
791 }
792 /* reset teaching and learning flags to 0 */
793 peer->flags &= PEER_TEACH_RESET;
794 peer->flags &= PEER_LEARN_RESET;
Frédéric Lécaille3585cab2019-11-20 11:17:30 +0100795 /* set this peer as dead from heartbeat point of view */
796 peer->flags &= ~PEER_F_ALIVE;
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200797 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
798}
799
800/*
Emeric Brun2b920a12010-09-23 18:30:22 +0200801 * Callback to release a session with a peer
802 */
Willy Tarreau00a37f02015-04-13 12:05:19 +0200803static void peer_session_release(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +0200804{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200805 struct peer *peer = appctx->ctx.peers.ptr;
Emeric Brun2b920a12010-09-23 18:30:22 +0200806
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100807 /* appctx->ctx.peers.ptr is not a peer session */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100808 if (appctx->st0 < PEER_SESS_ST_SENDSUCCESS)
Emeric Brun2b920a12010-09-23 18:30:22 +0200809 return;
810
811 /* peer session identified */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200812 if (peer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100813 HA_SPIN_LOCK(PEER_LOCK, &peer->lock);
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200814 if (peer->appctx == appctx)
815 __peer_session_deinit(peer);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100816 HA_SPIN_UNLOCK(PEER_LOCK, &peer->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +0200817 }
818}
819
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200820/* Retrieve the major and minor versions of peers protocol
821 * announced by a remote peer. <str> is a null-terminated
822 * string with the following format: "<maj_ver>.<min_ver>".
823 */
824static int peer_get_version(const char *str,
825 unsigned int *maj_ver, unsigned int *min_ver)
826{
827 unsigned int majv, minv;
828 const char *pos, *saved;
829 const char *end;
830
831 saved = pos = str;
832 end = str + strlen(str);
833
834 majv = read_uint(&pos, end);
835 if (saved == pos || *pos++ != '.')
836 return -1;
837
838 saved = pos;
839 minv = read_uint(&pos, end);
840 if (saved == pos || pos != end)
841 return -1;
842
843 *maj_ver = majv;
844 *min_ver = minv;
845
846 return 0;
847}
Emeric Brun2b920a12010-09-23 18:30:22 +0200848
849/*
Frédéric Lécaillece025572019-01-21 13:38:06 +0100850 * Parse a line terminated by an optional '\r' character, followed by a mandatory
851 * '\n' character.
852 * Returns 1 if succeeded or 0 if a '\n' character could not be found, and -1 if
853 * a line could not be read because the communication channel is closed.
854 */
855static inline int peer_getline(struct appctx *appctx)
856{
857 int n;
858 struct stream_interface *si = appctx->owner;
859
860 n = co_getline(si_oc(si), trash.area, trash.size);
861 if (!n)
862 return 0;
863
864 if (n < 0 || trash.area[n - 1] != '\n') {
865 appctx->st0 = PEER_SESS_ST_END;
866 return -1;
867 }
868
869 if (n > 1 && (trash.area[n - 2] == '\r'))
870 trash.area[n - 2] = 0;
871 else
872 trash.area[n - 1] = 0;
873
874 co_skip(si_oc(si), n);
875
876 return n;
877}
878
879/*
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100880 * Send a message after having called <peer_prepare_msg> to build it.
881 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
882 * Returns -1 if there was not enough room left to send the message,
883 * any other negative returned value must be considered as an error with an appcxt st0
884 * returned value equal to PEER_SESS_ST_END.
885 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100886static inline int peer_send_msg(struct appctx *appctx,
887 int (*peer_prepare_msg)(char *, size_t, struct peer_prep_params *),
888 struct peer_prep_params *params)
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100889{
890 int ret, msglen;
891 struct stream_interface *si = appctx->owner;
892
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100893 msglen = peer_prepare_msg(trash.area, trash.size, params);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100894 if (!msglen) {
895 /* internal error: message does not fit in trash */
896 appctx->st0 = PEER_SESS_ST_END;
897 return 0;
898 }
899
900 /* message to buffer */
901 ret = ci_putblk(si_ic(si), trash.area, msglen);
902 if (ret <= 0) {
903 if (ret == -1) {
904 /* No more write possible */
905 si_rx_room_blk(si);
906 return -1;
907 }
908 appctx->st0 = PEER_SESS_ST_END;
909 }
910
911 return ret;
912}
913
914/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100915 * Send a hello message.
916 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
917 * Returns -1 if there was not enough room left to send the message,
918 * any other negative returned value must be considered as an error with an appcxt st0
919 * returned value equal to PEER_SESS_ST_END.
920 */
921static inline int peer_send_hellomsg(struct appctx *appctx, struct peer *peer)
922{
923 struct peer_prep_params p = {
924 .hello.peer = peer,
925 };
926
927 return peer_send_msg(appctx, peer_prepare_hellomsg, &p);
928}
929
930/*
931 * Send a success peer handshake status message.
932 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
933 * Returns -1 if there was not enough room left to send the message,
934 * any other negative returned value must be considered as an error with an appcxt st0
935 * returned value equal to PEER_SESS_ST_END.
936 */
937static inline int peer_send_status_successmsg(struct appctx *appctx)
938{
939 return peer_send_msg(appctx, peer_prepare_status_successmsg, NULL);
940}
941
942/*
943 * Send a peer handshake status error message.
944 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
945 * Returns -1 if there was not enough room left to send the message,
946 * any other negative returned value must be considered as an error with an appcxt st0
947 * returned value equal to PEER_SESS_ST_END.
948 */
949static inline int peer_send_status_errormsg(struct appctx *appctx)
950{
951 struct peer_prep_params p = {
952 .error_status.st1 = appctx->st1,
953 };
954
955 return peer_send_msg(appctx, peer_prepare_status_errormsg, &p);
956}
957
958/*
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100959 * Send a stick-table switch message.
960 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
961 * Returns -1 if there was not enough room left to send the message,
962 * any other negative returned value must be considered as an error with an appcxt st0
963 * returned value equal to PEER_SESS_ST_END.
964 */
965static inline int peer_send_switchmsg(struct shared_table *st, struct appctx *appctx)
966{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100967 struct peer_prep_params p = {
968 .swtch.shared_table = st,
969 };
970
971 return peer_send_msg(appctx, peer_prepare_switchmsg, &p);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100972}
973
974/*
975 * Send a stick-table update acknowledgement message.
976 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
977 * Returns -1 if there was not enough room left to send the message,
978 * any other negative returned value must be considered as an error with an appcxt st0
979 * returned value equal to PEER_SESS_ST_END.
980 */
981static inline int peer_send_ackmsg(struct shared_table *st, struct appctx *appctx)
982{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100983 struct peer_prep_params p = {
984 .ack.shared_table = st,
985 };
986
987 return peer_send_msg(appctx, peer_prepare_ackmsg, &p);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100988}
989
990/*
Frédéric Lécaille87f554c2019-01-22 17:26:50 +0100991 * Send a stick-table update message.
992 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
993 * Returns -1 if there was not enough room left to send the message,
994 * any other negative returned value must be considered as an error with an appcxt st0
995 * returned value equal to PEER_SESS_ST_END.
996 */
997static inline int peer_send_updatemsg(struct shared_table *st, struct appctx *appctx, struct stksess *ts,
998 unsigned int updateid, int use_identifier, int use_timed)
999{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +01001000 struct peer_prep_params p = {
1001 .updt.stksess = ts,
1002 .updt.shared_table = st,
1003 .updt.updateid = updateid,
1004 .updt.use_identifier = use_identifier,
1005 .updt.use_timed = use_timed,
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001006 .updt.peer = appctx->ctx.peers.ptr,
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +01001007 };
1008
1009 return peer_send_msg(appctx, peer_prepare_updatemsg, &p);
Frédéric Lécaille87f554c2019-01-22 17:26:50 +01001010}
1011
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001012/*
1013 * Build a peer protocol control class message.
1014 * Returns the number of written bytes used to build the message if succeeded,
1015 * 0 if not.
1016 */
1017static int peer_prepare_control_msg(char *msg, size_t size, struct peer_prep_params *p)
1018{
1019 if (size < sizeof p->control.head)
1020 return 0;
1021
1022 msg[0] = p->control.head[0];
1023 msg[1] = p->control.head[1];
1024
1025 return 2;
1026}
Frédéric Lécaille6a8303d2019-01-22 22:25:17 +01001027
1028/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001029 * Send a stick-table synchronization request message.
1030 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1031 * Returns -1 if there was not enough room left to send the message,
1032 * any other negative returned value must be considered as an error with an appctx st0
1033 * returned value equal to PEER_SESS_ST_END.
1034 */
1035static inline int peer_send_resync_reqmsg(struct appctx *appctx)
1036{
1037 struct peer_prep_params p = {
1038 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCREQ, },
1039 };
1040
1041 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1042}
1043
1044/*
1045 * Send a stick-table synchronization confirmation message.
1046 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1047 * Returns -1 if there was not enough room left to send the message,
1048 * any other negative returned value must be considered as an error with an appctx st0
1049 * returned value equal to PEER_SESS_ST_END.
1050 */
1051static inline int peer_send_resync_confirmsg(struct appctx *appctx)
1052{
1053 struct peer_prep_params p = {
1054 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCCONFIRM, },
1055 };
1056
1057 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1058}
1059
1060/*
1061 * Send a stick-table synchronization finished message.
1062 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1063 * Returns -1 if there was not enough room left to send the message,
1064 * any other negative returned value must be considered as an error with an appctx st0
1065 * returned value equal to PEER_SESS_ST_END.
1066 */
Emeric Brun70de43b2020-03-16 10:51:01 +01001067static inline int peer_send_resync_finishedmsg(struct appctx *appctx, struct peers *peers)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001068{
1069 struct peer_prep_params p = {
1070 .control.head = { PEER_MSG_CLASS_CONTROL, },
1071 };
1072
Emeric Brun70de43b2020-03-16 10:51:01 +01001073 p.control.head[1] = (peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FINISHED ?
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001074 PEER_MSG_CTRL_RESYNCFINISHED : PEER_MSG_CTRL_RESYNCPARTIAL;
1075
1076 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1077}
1078
1079/*
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001080 * Send a heartbeat message.
1081 * Return 0 if the message could not be built modifying the appctx st0 to PEER_SESS_ST_END value.
1082 * Returns -1 if there was not enough room left to send the message,
1083 * any other negative returned value must be considered as an error with an appctx st0
1084 * returned value equal to PEER_SESS_ST_END.
1085 */
1086static inline int peer_send_heartbeatmsg(struct appctx *appctx)
1087{
1088 struct peer_prep_params p = {
1089 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_HEARTBEAT, },
1090 };
1091
1092 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1093}
1094
1095/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001096 * Build a peer protocol error class message.
1097 * Returns the number of written bytes used to build the message if succeeded,
1098 * 0 if not.
1099 */
1100static int peer_prepare_error_msg(char *msg, size_t size, struct peer_prep_params *p)
1101{
1102 if (size < sizeof p->error.head)
1103 return 0;
1104
1105 msg[0] = p->error.head[0];
1106 msg[1] = p->error.head[1];
1107
1108 return 2;
1109}
1110
1111/*
1112 * Send a "size limit reached" error message.
1113 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1114 * Returns -1 if there was not enough room left to send the message,
1115 * any other negative returned value must be considered as an error with an appctx st0
1116 * returned value equal to PEER_SESS_ST_END.
1117 */
1118static inline int peer_send_error_size_limitmsg(struct appctx *appctx)
1119{
1120 struct peer_prep_params p = {
1121 .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_SIZELIMIT, },
1122 };
1123
1124 return peer_send_msg(appctx, peer_prepare_error_msg, &p);
1125}
1126
1127/*
1128 * Send a "peer protocol" error message.
1129 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1130 * Returns -1 if there was not enough room left to send the message,
1131 * any other negative returned value must be considered as an error with an appctx st0
1132 * returned value equal to PEER_SESS_ST_END.
1133 */
1134static inline int peer_send_error_protomsg(struct appctx *appctx)
1135{
1136 struct peer_prep_params p = {
1137 .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_PROTOCOL, },
1138 };
1139
1140 return peer_send_msg(appctx, peer_prepare_error_msg, &p);
1141}
1142
1143/*
Frédéric Lécaille6a8303d2019-01-22 22:25:17 +01001144 * Function used to lookup for recent stick-table updates associated with
1145 * <st> shared stick-table when a lesson must be taught a peer (PEER_F_LEARN_ASSIGN flag set).
1146 */
1147static inline struct stksess *peer_teach_process_stksess_lookup(struct shared_table *st)
1148{
1149 struct eb32_node *eb;
1150
1151 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1152 if (!eb) {
1153 eb = eb32_first(&st->table->updates);
1154 if (!eb || ((int)(eb->key - st->last_pushed) <= 0)) {
1155 st->table->commitupdate = st->last_pushed = st->table->localupdate;
1156 return NULL;
1157 }
1158 }
1159
1160 if ((int)(eb->key - st->table->localupdate) > 0) {
1161 st->table->commitupdate = st->last_pushed = st->table->localupdate;
1162 return NULL;
1163 }
1164
1165 return eb32_entry(eb, struct stksess, upd);
1166}
1167
1168/*
1169 * Function used to lookup for recent stick-table updates associated with
1170 * <st> shared stick-table during teach state 1 step.
1171 */
1172static inline struct stksess *peer_teach_stage1_stksess_lookup(struct shared_table *st)
1173{
1174 struct eb32_node *eb;
1175
1176 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1177 if (!eb) {
1178 st->flags |= SHTABLE_F_TEACH_STAGE1;
1179 eb = eb32_first(&st->table->updates);
1180 if (eb)
1181 st->last_pushed = eb->key - 1;
1182 return NULL;
1183 }
1184
1185 return eb32_entry(eb, struct stksess, upd);
1186}
1187
1188/*
1189 * Function used to lookup for recent stick-table updates associated with
1190 * <st> shared stick-table during teach state 2 step.
1191 */
1192static inline struct stksess *peer_teach_stage2_stksess_lookup(struct shared_table *st)
1193{
1194 struct eb32_node *eb;
1195
1196 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1197 if (!eb || eb->key > st->teaching_origin) {
1198 st->flags |= SHTABLE_F_TEACH_STAGE2;
1199 return NULL;
1200 }
1201
1202 return eb32_entry(eb, struct stksess, upd);
1203}
1204
1205/*
1206 * Generic function to emit update messages for <st> stick-table when a lesson must
1207 * be taught to the peer <p>.
1208 * <locked> must be set to 1 if the shared table <st> is already locked when entering
1209 * this function, 0 if not.
1210 *
1211 * This function temporary unlock/lock <st> when it sends stick-table updates or
1212 * when decrementing its refcount in case of any error when it sends this updates.
1213 *
1214 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1215 * Returns -1 if there was not enough room left to send the message,
1216 * any other negative returned value must be considered as an error with an appcxt st0
1217 * returned value equal to PEER_SESS_ST_END.
1218 * If it returns 0 or -1, this function leave <st> locked if already locked when entering this function
1219 * unlocked if not already locked when entering this function.
1220 */
1221static inline int peer_send_teachmsgs(struct appctx *appctx, struct peer *p,
1222 struct stksess *(*peer_stksess_lookup)(struct shared_table *),
1223 struct shared_table *st, int locked)
1224{
1225 int ret, new_pushed, use_timed;
1226
1227 ret = 1;
1228 use_timed = 0;
1229 if (st != p->last_local_table) {
1230 ret = peer_send_switchmsg(st, appctx);
1231 if (ret <= 0)
1232 return ret;
1233
1234 p->last_local_table = st;
1235 }
1236
1237 if (peer_stksess_lookup != peer_teach_process_stksess_lookup)
1238 use_timed = !(p->flags & PEER_F_DWNGRD);
1239
1240 /* We force new pushed to 1 to force identifier in update message */
1241 new_pushed = 1;
1242
1243 if (!locked)
1244 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1245
1246 while (1) {
1247 struct stksess *ts;
1248 unsigned updateid;
1249
1250 /* push local updates */
1251 ts = peer_stksess_lookup(st);
1252 if (!ts)
1253 break;
1254
1255 updateid = ts->upd.key;
1256 ts->ref_cnt++;
1257 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1258
1259 ret = peer_send_updatemsg(st, appctx, ts, updateid, new_pushed, use_timed);
1260 if (ret <= 0) {
1261 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1262 ts->ref_cnt--;
1263 if (!locked)
1264 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1265 return ret;
1266 }
1267
1268 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1269 ts->ref_cnt--;
1270 st->last_pushed = updateid;
1271
1272 if (peer_stksess_lookup == peer_teach_process_stksess_lookup &&
1273 (int)(st->last_pushed - st->table->commitupdate) > 0)
1274 st->table->commitupdate = st->last_pushed;
1275
1276 /* identifier may not needed in next update message */
1277 new_pushed = 0;
1278 }
1279
1280 out:
1281 if (!locked)
1282 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1283 return 1;
1284}
1285
1286/*
1287 * Function to emit update messages for <st> stick-table when a lesson must
1288 * be taught to the peer <p> (PEER_F_LEARN_ASSIGN flag set).
1289 *
1290 * Note that <st> shared stick-table is locked when calling this function.
1291 *
1292 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1293 * Returns -1 if there was not enough room left to send the message,
1294 * any other negative returned value must be considered as an error with an appcxt st0
1295 * returned value equal to PEER_SESS_ST_END.
1296 */
1297static inline int peer_send_teach_process_msgs(struct appctx *appctx, struct peer *p,
1298 struct shared_table *st)
1299{
1300 return peer_send_teachmsgs(appctx, p, peer_teach_process_stksess_lookup, st, 1);
1301}
1302
1303/*
1304 * Function to emit update messages for <st> stick-table when a lesson must
1305 * be taught to the peer <p> during teach state 1 step.
1306 *
1307 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1308 * Returns -1 if there was not enough room left to send the message,
1309 * any other negative returned value must be considered as an error with an appcxt st0
1310 * returned value equal to PEER_SESS_ST_END.
1311 */
1312static inline int peer_send_teach_stage1_msgs(struct appctx *appctx, struct peer *p,
1313 struct shared_table *st)
1314{
1315 return peer_send_teachmsgs(appctx, p, peer_teach_stage1_stksess_lookup, st, 0);
1316}
1317
1318/*
1319 * Function to emit update messages for <st> stick-table when a lesson must
1320 * be taught to the peer <p> during teach state 1 step.
1321 *
1322 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1323 * Returns -1 if there was not enough room left to send the message,
1324 * any other negative returned value must be considered as an error with an appcxt st0
1325 * returned value equal to PEER_SESS_ST_END.
1326 */
1327static inline int peer_send_teach_stage2_msgs(struct appctx *appctx, struct peer *p,
1328 struct shared_table *st)
1329{
1330 return peer_send_teachmsgs(appctx, p, peer_teach_stage2_stksess_lookup, st, 0);
1331}
1332
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001333
1334/*
1335 * Function used to parse a stick-table update message after it has been received
1336 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1337 * receipt buffer with <msg_end> being position of the end of the stick-table message.
1338 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1339 * was encountered.
1340 * <exp> must be set if the stick-table entry expires.
1341 * <updt> must be set for PEER_MSG_STKT_UPDATE or PEER_MSG_STKT_UPDATE_TIMED stick-table
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001342 * 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 +01001343 * update ID.
1344 * <totl> is the length of the stick-table update message computed upon receipt.
1345 */
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001346static int peer_treat_updatemsg(struct appctx *appctx, struct peer *p, int updt, int exp,
1347 char **msg_cur, char *msg_end, int msg_len, int totl)
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001348{
1349 struct stream_interface *si = appctx->owner;
1350 struct shared_table *st = p->remote_table;
1351 struct stksess *ts, *newts;
1352 uint32_t update;
1353 int expire;
1354 unsigned int data_type;
1355 void *data_ptr;
1356
1357 /* Here we have data message */
1358 if (!st)
1359 goto ignore_msg;
1360
1361 expire = MS_TO_TICKS(st->table->expire);
1362
1363 if (updt) {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001364 if (msg_len < sizeof(update))
1365 goto malformed_exit;
1366
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001367 memcpy(&update, *msg_cur, sizeof(update));
1368 *msg_cur += sizeof(update);
1369 st->last_get = htonl(update);
1370 }
1371 else {
1372 st->last_get++;
1373 }
1374
1375 if (exp) {
1376 size_t expire_sz = sizeof expire;
1377
Willy Tarreau1e82a142019-01-29 11:08:06 +01001378 if (*msg_cur + expire_sz > msg_end)
1379 goto malformed_exit;
1380
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001381 memcpy(&expire, *msg_cur, expire_sz);
1382 *msg_cur += expire_sz;
1383 expire = ntohl(expire);
1384 }
1385
1386 newts = stksess_new(st->table, NULL);
1387 if (!newts)
1388 goto ignore_msg;
1389
1390 if (st->table->type == SMP_T_STR) {
1391 unsigned int to_read, to_store;
1392
1393 to_read = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001394 if (!*msg_cur)
1395 goto malformed_free_newts;
1396
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001397 to_store = MIN(to_read, st->table->key_size - 1);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001398 if (*msg_cur + to_store > msg_end)
1399 goto malformed_free_newts;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001400
1401 memcpy(newts->key.key, *msg_cur, to_store);
1402 newts->key.key[to_store] = 0;
1403 *msg_cur += to_read;
1404 }
1405 else if (st->table->type == SMP_T_SINT) {
1406 unsigned int netinteger;
1407
Willy Tarreau1e82a142019-01-29 11:08:06 +01001408 if (*msg_cur + sizeof(netinteger) > msg_end)
1409 goto malformed_free_newts;
1410
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001411 memcpy(&netinteger, *msg_cur, sizeof(netinteger));
1412 netinteger = ntohl(netinteger);
1413 memcpy(newts->key.key, &netinteger, sizeof(netinteger));
1414 *msg_cur += sizeof(netinteger);
1415 }
1416 else {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001417 if (*msg_cur + st->table->key_size > msg_end)
1418 goto malformed_free_newts;
1419
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001420 memcpy(newts->key.key, *msg_cur, st->table->key_size);
1421 *msg_cur += st->table->key_size;
1422 }
1423
1424 /* lookup for existing entry */
1425 ts = stktable_set_entry(st->table, newts);
1426 if (ts != newts) {
1427 stksess_free(st->table, newts);
1428 newts = NULL;
1429 }
1430
1431 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
1432
1433 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001434 uint64_t decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001435
1436 if (!((1 << data_type) & st->remote_data))
1437 continue;
1438
Willy Tarreau1e82a142019-01-29 11:08:06 +01001439 decoded_int = intdecode(msg_cur, msg_end);
1440 if (!*msg_cur)
1441 goto malformed_unlock;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001442
Willy Tarreau1e82a142019-01-29 11:08:06 +01001443 switch (stktable_data_types[data_type].std_type) {
1444 case STD_T_SINT:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001445 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1446 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001447 stktable_data_cast(data_ptr, std_t_sint) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001448 break;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001449
Willy Tarreau1e82a142019-01-29 11:08:06 +01001450 case STD_T_UINT:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001451 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1452 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001453 stktable_data_cast(data_ptr, std_t_uint) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001454 break;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001455
Willy Tarreau1e82a142019-01-29 11:08:06 +01001456 case STD_T_ULL:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001457 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1458 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001459 stktable_data_cast(data_ptr, std_t_ull) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001460 break;
Willy Tarreau1e82a142019-01-29 11:08:06 +01001461
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001462 case STD_T_FRQP: {
1463 struct freq_ctr_period data;
1464
1465 /* First bit is reserved for the freq_ctr_period lock
1466 Note: here we're still protected by the stksess lock
1467 so we don't need to update the update the freq_ctr_period
1468 using its internal lock */
1469
Willy Tarreau1e82a142019-01-29 11:08:06 +01001470 data.curr_tick = tick_add(now_ms, -decoded_int) & ~0x1;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001471 data.curr_ctr = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001472 if (!*msg_cur)
1473 goto malformed_unlock;
1474
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001475 data.prev_ctr = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001476 if (!*msg_cur)
1477 goto malformed_unlock;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001478
1479 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1480 if (data_ptr)
1481 stktable_data_cast(data_ptr, std_t_frqp) = data;
1482 break;
1483 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001484 case STD_T_DICT: {
1485 struct buffer *chunk;
1486 size_t data_len, value_len;
1487 unsigned int id;
1488 struct dict_entry *de;
1489 struct dcache *dc;
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001490 char *end;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001491
Frédéric Lécailleaf9990f2019-11-13 17:50:34 +01001492 if (!decoded_int) {
1493 /* No entry. */
1494 break;
1495 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001496 data_len = decoded_int;
1497 if (*msg_cur + data_len > msg_end)
1498 goto malformed_unlock;
1499
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001500 /* Compute the end of the current data, <msg_end> being at the end of
1501 * the entire message.
1502 */
1503 end = *msg_cur + data_len;
1504 id = intdecode(msg_cur, end);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001505 if (!*msg_cur || !id)
1506 goto malformed_unlock;
1507
1508 dc = p->dcache;
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001509 if (*msg_cur == end) {
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001510 /* Dictionary entry key without value. */
1511 if (id > dc->max_entries)
1512 break;
1513 /* IDs sent over the network are numbered from 1. */
1514 de = dc->rx[id - 1].de;
1515 }
1516 else {
1517 chunk = get_trash_chunk();
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001518 value_len = intdecode(msg_cur, end);
1519 if (!*msg_cur || *msg_cur + value_len > end ||
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001520 unlikely(value_len + 1 >= chunk->size))
1521 goto malformed_unlock;
1522
1523 chunk_memcpy(chunk, *msg_cur, value_len);
1524 chunk->area[chunk->data] = '\0';
Frédéric Lécaille56aec0d2019-06-06 14:14:15 +02001525 *msg_cur += value_len;
1526
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001527 de = dict_insert(&server_name_dict, chunk->area);
1528 dc->rx[id - 1].de = de;
1529 }
1530 if (de) {
1531 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1532 if (data_ptr)
1533 stktable_data_cast(data_ptr, std_t_dict) = de;
1534 }
1535 break;
1536 }
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001537 }
1538 }
1539 /* Force new expiration */
1540 ts->expire = tick_add(now_ms, expire);
1541
1542 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1543 stktable_touch_remote(st->table, ts, 1);
1544 return 1;
1545
1546 ignore_msg:
1547 /* skip consumed message */
1548 co_skip(si_oc(si), totl);
1549 return 0;
Willy Tarreau1e82a142019-01-29 11:08:06 +01001550
1551 malformed_unlock:
1552 /* malformed message */
1553 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1554 stktable_touch_remote(st->table, ts, 1);
1555 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1556 return 0;
1557
1558 malformed_free_newts:
1559 /* malformed message */
1560 stksess_free(st->table, newts);
1561 malformed_exit:
1562 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1563 return 0;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001564}
1565
Frédéric Lécaille87f554c2019-01-22 17:26:50 +01001566/*
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001567 * Function used to parse a stick-table update acknowledgement message after it
1568 * has been received by <p> peer with <msg_cur> as address of the pointer to the position in the
1569 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1570 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1571 * was encountered.
1572 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1573 */
1574static inline int peer_treat_ackmsg(struct appctx *appctx, struct peer *p,
1575 char **msg_cur, char *msg_end)
1576{
1577 /* ack message */
1578 uint32_t table_id ;
1579 uint32_t update;
1580 struct shared_table *st;
1581
1582 table_id = intdecode(msg_cur, msg_end);
1583 if (!*msg_cur || (*msg_cur + sizeof(update) > msg_end)) {
1584 /* malformed message */
1585 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1586 return 0;
1587 }
1588
1589 memcpy(&update, *msg_cur, sizeof(update));
1590 update = ntohl(update);
1591
1592 for (st = p->tables; st; st = st->next) {
1593 if (st->local_id == table_id) {
1594 st->update = update;
1595 break;
1596 }
1597 }
1598
1599 return 1;
1600}
1601
1602/*
1603 * Function used to parse a stick-table switch message after it has been received
1604 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1605 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1606 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1607 * was encountered.
1608 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1609 */
1610static inline int peer_treat_switchmsg(struct appctx *appctx, struct peer *p,
1611 char **msg_cur, char *msg_end)
1612{
1613 struct shared_table *st;
1614 int table_id;
1615
1616 table_id = intdecode(msg_cur, msg_end);
1617 if (!*msg_cur) {
1618 /* malformed message */
1619 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1620 return 0;
1621 }
1622
1623 p->remote_table = NULL;
1624 for (st = p->tables; st; st = st->next) {
1625 if (st->remote_id == table_id) {
1626 p->remote_table = st;
1627 break;
1628 }
1629 }
1630
1631 return 1;
1632}
1633
1634/*
1635 * Function used to parse a stick-table definition message after it has been received
1636 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1637 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1638 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1639 * was encountered.
1640 * <totl> is the length of the stick-table update message computed upon receipt.
1641 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1642 */
1643static inline int peer_treat_definemsg(struct appctx *appctx, struct peer *p,
1644 char **msg_cur, char *msg_end, int totl)
1645{
1646 struct stream_interface *si = appctx->owner;
1647 int table_id_len;
1648 struct shared_table *st;
1649 int table_type;
1650 int table_keylen;
1651 int table_id;
1652 uint64_t table_data;
1653
1654 table_id = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001655 if (!*msg_cur)
1656 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001657
1658 table_id_len = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001659 if (!*msg_cur)
1660 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001661
1662 p->remote_table = NULL;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001663 if (!table_id_len || (*msg_cur + table_id_len) >= msg_end)
1664 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001665
1666 for (st = p->tables; st; st = st->next) {
1667 /* Reset IDs */
1668 if (st->remote_id == table_id)
1669 st->remote_id = 0;
1670
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001671 if (!p->remote_table && (table_id_len == strlen(st->table->nid)) &&
1672 (memcmp(st->table->nid, *msg_cur, table_id_len) == 0))
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001673 p->remote_table = st;
1674 }
1675
1676 if (!p->remote_table)
1677 goto ignore_msg;
1678
1679 *msg_cur += table_id_len;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001680 if (*msg_cur >= msg_end)
1681 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001682
1683 table_type = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001684 if (!*msg_cur)
1685 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001686
1687 table_keylen = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001688 if (!*msg_cur)
1689 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001690
1691 table_data = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001692 if (!*msg_cur)
1693 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001694
Emeric Brun530ba382020-06-02 11:17:42 +02001695 if (p->remote_table->table->type != peer_int_key_type[table_type]
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001696 || p->remote_table->table->key_size != table_keylen) {
1697 p->remote_table = NULL;
1698 goto ignore_msg;
1699 }
1700
1701 p->remote_table->remote_data = table_data;
1702 p->remote_table->remote_id = table_id;
1703 return 1;
1704
1705 ignore_msg:
1706 co_skip(si_oc(si), totl);
1707 return 0;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001708
1709 malformed_exit:
1710 /* malformed message */
1711 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1712 return 0;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001713}
1714
1715/*
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001716 * Receive a stick-table message.
1717 * Returns 1 if there was no error, if not, returns 0 if not enough data were available,
1718 * -1 if there was an error updating the appctx state st0 accordingly.
1719 */
1720static inline int peer_recv_msg(struct appctx *appctx, char *msg_head, size_t msg_head_sz,
1721 uint32_t *msg_len, int *totl)
1722{
1723 int reql;
1724 struct stream_interface *si = appctx->owner;
1725
1726 reql = co_getblk(si_oc(si), msg_head, 2 * sizeof(char), *totl);
1727 if (reql <= 0) /* closed or EOL not found */
1728 goto incomplete;
1729
1730 *totl += reql;
1731
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +02001732 if (!(msg_head[1] & PEER_MSG_STKT_BIT_MASK))
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001733 return 1;
1734
1735 /* Read and Decode message length */
1736 reql = co_getblk(si_oc(si), &msg_head[2], sizeof(char), *totl);
1737 if (reql <= 0) /* closed */
1738 goto incomplete;
1739
1740 *totl += reql;
1741
Frédéric Lécaille32b55732019-06-03 18:29:51 +02001742 if ((unsigned int)msg_head[2] < PEER_ENC_2BYTES_MIN) {
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001743 *msg_len = msg_head[2];
1744 }
1745 else {
1746 int i;
1747 char *cur;
1748 char *end;
1749
1750 for (i = 3 ; i < msg_head_sz ; i++) {
1751 reql = co_getblk(si_oc(si), &msg_head[i], sizeof(char), *totl);
1752 if (reql <= 0) /* closed */
1753 goto incomplete;
1754
1755 *totl += reql;
1756
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +02001757 if (!(msg_head[i] & PEER_MSG_STKT_BIT_MASK))
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001758 break;
1759 }
1760
1761 if (i == msg_head_sz) {
1762 /* malformed message */
1763 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1764 return -1;
1765 }
1766 end = msg_head + msg_head_sz;
1767 cur = &msg_head[2];
1768 *msg_len = intdecode(&cur, end);
1769 if (!cur) {
1770 /* malformed message */
1771 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1772 return -1;
1773 }
1774 }
1775
1776 /* Read message content */
1777 if (*msg_len) {
1778 if (*msg_len > trash.size) {
1779 /* Status code is not success, abort */
1780 appctx->st0 = PEER_SESS_ST_ERRSIZE;
1781 return -1;
1782 }
1783
1784 reql = co_getblk(si_oc(si), trash.area, *msg_len, *totl);
1785 if (reql <= 0) /* closed */
1786 goto incomplete;
1787 *totl += reql;
1788 }
1789
1790 return 1;
1791
1792 incomplete:
1793 if (reql < 0) {
1794 /* there was an error */
1795 appctx->st0 = PEER_SESS_ST_END;
1796 return -1;
1797 }
1798
1799 return 0;
1800}
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001801
1802/*
1803 * Treat the awaited message with <msg_head> as header.*
1804 * Return 1 if succeeded, 0 if not.
1805 */
1806static inline int peer_treat_awaited_msg(struct appctx *appctx, struct peer *peer, unsigned char *msg_head,
1807 char **msg_cur, char *msg_end, int msg_len, int totl)
1808{
1809 struct stream_interface *si = appctx->owner;
1810 struct stream *s = si_strm(si);
1811 struct peers *peers = strm_fe(s)->parent;
1812
1813 if (msg_head[0] == PEER_MSG_CLASS_CONTROL) {
1814 if (msg_head[1] == PEER_MSG_CTRL_RESYNCREQ) {
1815 struct shared_table *st;
1816 /* Reset message: remote need resync */
1817
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001818 /* prepare tables for a global push */
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001819 for (st = peer->tables; st; st = st->next) {
1820 st->teaching_origin = st->last_pushed = st->table->update;
1821 st->flags = 0;
1822 }
1823
1824 /* reset teaching flags to 0 */
1825 peer->flags &= PEER_TEACH_RESET;
1826
1827 /* flag to start to teach lesson */
1828 peer->flags |= PEER_F_TEACH_PROCESS;
1829 }
1830 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCFINISHED) {
1831 if (peer->flags & PEER_F_LEARN_ASSIGN) {
1832 peer->flags &= ~PEER_F_LEARN_ASSIGN;
1833 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
1834 peers->flags |= (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE);
1835 }
1836 peer->confirm++;
1837 }
1838 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCPARTIAL) {
1839 if (peer->flags & PEER_F_LEARN_ASSIGN) {
1840 peer->flags &= ~PEER_F_LEARN_ASSIGN;
1841 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
1842
1843 peer->flags |= PEER_F_LEARN_NOTUP2DATE;
Frédéric Lécaille54bff832019-03-26 10:25:20 +01001844 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT));
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001845 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
1846 }
1847 peer->confirm++;
1848 }
1849 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCCONFIRM) {
1850 struct shared_table *st;
1851
1852 /* If stopping state */
1853 if (stopping) {
1854 /* Close session, push resync no more needed */
1855 peer->flags |= PEER_F_TEACH_COMPLETE;
1856 appctx->st0 = PEER_SESS_ST_END;
1857 return 0;
1858 }
1859 for (st = peer->tables; st; st = st->next) {
1860 st->update = st->last_pushed = st->teaching_origin;
1861 st->flags = 0;
1862 }
1863
1864 /* reset teaching flags to 0 */
1865 peer->flags &= PEER_TEACH_RESET;
1866 }
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001867 else if (msg_head[1] == PEER_MSG_CTRL_HEARTBEAT) {
Frédéric Lécaille54bff832019-03-26 10:25:20 +01001868 peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille33cab3c2019-11-06 11:51:26 +01001869 peer->rx_hbt++;
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001870 }
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001871 }
1872 else if (msg_head[0] == PEER_MSG_CLASS_STICKTABLE) {
1873 if (msg_head[1] == PEER_MSG_STKT_DEFINE) {
1874 if (!peer_treat_definemsg(appctx, peer, msg_cur, msg_end, totl))
1875 return 0;
1876 }
1877 else if (msg_head[1] == PEER_MSG_STKT_SWITCH) {
1878 if (!peer_treat_switchmsg(appctx, peer, msg_cur, msg_end))
1879 return 0;
1880 }
1881 else if (msg_head[1] == PEER_MSG_STKT_UPDATE ||
1882 msg_head[1] == PEER_MSG_STKT_INCUPDATE ||
1883 msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED ||
1884 msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED) {
1885 int update, expire;
1886
1887 update = msg_head[1] == PEER_MSG_STKT_UPDATE || msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED;
1888 expire = msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED || msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED;
1889 if (!peer_treat_updatemsg(appctx, peer, update, expire,
1890 msg_cur, msg_end, msg_len, totl))
1891 return 0;
1892
1893 }
1894 else if (msg_head[1] == PEER_MSG_STKT_ACK) {
1895 if (!peer_treat_ackmsg(appctx, peer, msg_cur, msg_end))
1896 return 0;
1897 }
1898 }
1899 else if (msg_head[0] == PEER_MSG_CLASS_RESERVED) {
1900 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1901 return 0;
1902 }
1903
1904 return 1;
1905}
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01001906
1907
1908/*
1909 * Send any message to <peer> peer.
1910 * Returns 1 if succeeded, or -1 or 0 if failed.
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001911 * -1 means an internal error occurred, 0 is for a peer protocol error leading
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01001912 * to a peer state change (from the peer I/O handler point of view).
1913 */
1914static inline int peer_send_msgs(struct appctx *appctx, struct peer *peer)
1915{
1916 int repl;
1917 struct stream_interface *si = appctx->owner;
1918 struct stream *s = si_strm(si);
1919 struct peers *peers = strm_fe(s)->parent;
1920
1921 /* Need to request a resync */
1922 if ((peer->flags & PEER_F_LEARN_ASSIGN) &&
1923 (peers->flags & PEERS_F_RESYNC_ASSIGN) &&
1924 !(peers->flags & PEERS_F_RESYNC_PROCESS)) {
1925
1926 repl = peer_send_resync_reqmsg(appctx);
1927 if (repl <= 0)
1928 return repl;
1929
1930 peers->flags |= PEERS_F_RESYNC_PROCESS;
1931 }
1932
1933 /* Nothing to read, now we start to write */
1934 if (peer->tables) {
1935 struct shared_table *st;
1936 struct shared_table *last_local_table;
1937
1938 last_local_table = peer->last_local_table;
1939 if (!last_local_table)
1940 last_local_table = peer->tables;
1941 st = last_local_table->next;
1942
1943 while (1) {
1944 if (!st)
1945 st = peer->tables;
1946
1947 /* It remains some updates to ack */
1948 if (st->last_get != st->last_acked) {
1949 repl = peer_send_ackmsg(st, appctx);
1950 if (repl <= 0)
1951 return repl;
1952
1953 st->last_acked = st->last_get;
1954 }
1955
1956 if (!(peer->flags & PEER_F_TEACH_PROCESS)) {
1957 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1958 if (!(peer->flags & PEER_F_LEARN_ASSIGN) &&
1959 ((int)(st->last_pushed - st->table->localupdate) < 0)) {
1960
1961 repl = peer_send_teach_process_msgs(appctx, peer, st);
1962 if (repl <= 0) {
1963 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1964 return repl;
1965 }
1966 }
1967 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1968 }
1969 else {
1970 if (!(st->flags & SHTABLE_F_TEACH_STAGE1)) {
1971 repl = peer_send_teach_stage1_msgs(appctx, peer, st);
1972 if (repl <= 0)
1973 return repl;
1974 }
1975
1976 if (!(st->flags & SHTABLE_F_TEACH_STAGE2)) {
1977 repl = peer_send_teach_stage2_msgs(appctx, peer, st);
1978 if (repl <= 0)
1979 return repl;
1980 }
1981 }
1982
1983 if (st == last_local_table)
1984 break;
1985 st = st->next;
1986 }
1987 }
1988
1989 if ((peer->flags & PEER_F_TEACH_PROCESS) && !(peer->flags & PEER_F_TEACH_FINISHED)) {
Emeric Brun70de43b2020-03-16 10:51:01 +01001990 repl = peer_send_resync_finishedmsg(appctx, peers);
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01001991 if (repl <= 0)
1992 return repl;
1993
1994 /* flag finished message sent */
1995 peer->flags |= PEER_F_TEACH_FINISHED;
1996 }
1997
1998 /* Confirm finished or partial messages */
1999 while (peer->confirm) {
2000 repl = peer_send_resync_confirmsg(appctx);
2001 if (repl <= 0)
2002 return repl;
2003
2004 peer->confirm--;
2005 }
2006
2007 return 1;
2008}
2009
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002010/*
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002011 * Read and parse a first line of a "hello" peer protocol message.
2012 * Returns 0 if could not read a line, -1 if there was a read error or
2013 * the line is malformed, 1 if succeeded.
2014 */
2015static inline int peer_getline_version(struct appctx *appctx,
2016 unsigned int *maj_ver, unsigned int *min_ver)
2017{
2018 int reql;
2019
2020 reql = peer_getline(appctx);
2021 if (!reql)
2022 return 0;
2023
2024 if (reql < 0)
2025 return -1;
2026
2027 /* test protocol */
2028 if (strncmp(PEER_SESSION_PROTO_NAME " ", trash.area, proto_len + 1) != 0) {
2029 appctx->st0 = PEER_SESS_ST_EXIT;
2030 appctx->st1 = PEER_SESS_SC_ERRPROTO;
2031 return -1;
2032 }
2033 if (peer_get_version(trash.area + proto_len + 1, maj_ver, min_ver) == -1 ||
2034 *maj_ver != PEER_MAJOR_VER || *min_ver > PEER_MINOR_VER) {
2035 appctx->st0 = PEER_SESS_ST_EXIT;
2036 appctx->st1 = PEER_SESS_SC_ERRVERSION;
2037 return -1;
2038 }
2039
2040 return 1;
2041}
2042
2043/*
2044 * Read and parse a second line of a "hello" peer protocol message.
2045 * Returns 0 if could not read a line, -1 if there was a read error or
2046 * the line is malformed, 1 if succeeded.
2047 */
2048static inline int peer_getline_host(struct appctx *appctx)
2049{
2050 int reql;
2051
2052 reql = peer_getline(appctx);
2053 if (!reql)
2054 return 0;
2055
2056 if (reql < 0)
2057 return -1;
2058
2059 /* test hostname match */
2060 if (strcmp(localpeer, trash.area) != 0) {
2061 appctx->st0 = PEER_SESS_ST_EXIT;
2062 appctx->st1 = PEER_SESS_SC_ERRHOST;
2063 return -1;
2064 }
2065
2066 return 1;
2067}
2068
2069/*
2070 * Read and parse a last line of a "hello" peer protocol message.
2071 * Returns 0 if could not read a character, -1 if there was a read error or
2072 * the line is malformed, 1 if succeeded.
2073 * Set <curpeer> accordingly (the remote peer sending the "hello" message).
2074 */
2075static inline int peer_getline_last(struct appctx *appctx, struct peer **curpeer)
2076{
2077 char *p;
2078 int reql;
2079 struct peer *peer;
2080 struct stream_interface *si = appctx->owner;
2081 struct stream *s = si_strm(si);
2082 struct peers *peers = strm_fe(s)->parent;
2083
2084 reql = peer_getline(appctx);
2085 if (!reql)
2086 return 0;
2087
2088 if (reql < 0)
2089 return -1;
2090
2091 /* parse line "<peer name> <pid> <relative_pid>" */
2092 p = strchr(trash.area, ' ');
2093 if (!p) {
2094 appctx->st0 = PEER_SESS_ST_EXIT;
2095 appctx->st1 = PEER_SESS_SC_ERRPROTO;
2096 return -1;
2097 }
2098 *p = 0;
2099
2100 /* lookup known peer */
2101 for (peer = peers->remote; peer; peer = peer->next) {
2102 if (strcmp(peer->id, trash.area) == 0)
2103 break;
2104 }
2105
2106 /* if unknown peer */
2107 if (!peer) {
2108 appctx->st0 = PEER_SESS_ST_EXIT;
2109 appctx->st1 = PEER_SESS_SC_ERRPEER;
2110 return -1;
2111 }
2112 *curpeer = peer;
2113
2114 return 1;
2115}
2116
2117/*
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002118 * Init <peer> peer after having accepted it at peer protocol level.
2119 */
2120static inline void init_accepted_peer(struct peer *peer, struct peers *peers)
2121{
2122 struct shared_table *st;
2123
2124 /* Register status code */
2125 peer->statuscode = PEER_SESS_SC_SUCCESSCODE;
2126
2127 /* Awake main task */
2128 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
2129
2130 /* Init confirm counter */
2131 peer->confirm = 0;
2132
2133 /* Init cursors */
2134 for (st = peer->tables; st ; st = st->next) {
2135 st->last_get = st->last_acked = 0;
2136 st->teaching_origin = st->last_pushed = st->update;
2137 }
2138
2139 /* reset teaching and learning flags to 0 */
2140 peer->flags &= PEER_TEACH_RESET;
2141 peer->flags &= PEER_LEARN_RESET;
2142
2143 /* if current peer is local */
2144 if (peer->local) {
2145 /* if current host need resyncfrom local and no process assined */
2146 if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL &&
2147 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2148 /* assign local peer for a lesson, consider lesson already requested */
2149 peer->flags |= PEER_F_LEARN_ASSIGN;
2150 peers->flags |= (PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
2151 }
2152
2153 }
2154 else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
2155 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2156 /* assign peer for a lesson */
2157 peer->flags |= PEER_F_LEARN_ASSIGN;
2158 peers->flags |= PEERS_F_RESYNC_ASSIGN;
2159 }
2160}
2161
2162/*
2163 * Init <peer> peer after having connected it at peer protocol level.
2164 */
2165static inline void init_connected_peer(struct peer *peer, struct peers *peers)
2166{
2167 struct shared_table *st;
2168
2169 /* Init cursors */
2170 for (st = peer->tables; st ; st = st->next) {
2171 st->last_get = st->last_acked = 0;
2172 st->teaching_origin = st->last_pushed = st->update;
2173 }
2174
2175 /* Init confirm counter */
2176 peer->confirm = 0;
2177
2178 /* reset teaching and learning flags to 0 */
2179 peer->flags &= PEER_TEACH_RESET;
2180 peer->flags &= PEER_LEARN_RESET;
2181
2182 /* If current peer is local */
2183 if (peer->local) {
2184 /* flag to start to teach lesson */
2185 peer->flags |= PEER_F_TEACH_PROCESS;
2186 }
2187 else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
2188 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2189 /* If peer is remote and resync from remote is needed,
2190 and no peer currently assigned */
2191
2192 /* assign peer for a lesson */
2193 peer->flags |= PEER_F_LEARN_ASSIGN;
2194 peers->flags |= PEERS_F_RESYNC_ASSIGN;
2195 }
2196}
2197
2198/*
Emeric Brun2b920a12010-09-23 18:30:22 +02002199 * IO Handler to handle message exchance with a peer
2200 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02002201static void peer_io_handler(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +02002202{
Willy Tarreau00a37f02015-04-13 12:05:19 +02002203 struct stream_interface *si = appctx->owner;
Willy Tarreau87b09662015-04-03 00:22:06 +02002204 struct stream *s = si_strm(si);
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002205 struct peers *curpeers = strm_fe(s)->parent;
Emeric Brun80527f52017-06-19 17:46:37 +02002206 struct peer *curpeer = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002207 int reql = 0;
2208 int repl = 0;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002209 unsigned int maj_ver, min_ver;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002210 int prev_state;
Emeric Brun2b920a12010-09-23 18:30:22 +02002211
Joseph Herlant82b2f542018-11-15 12:19:14 -08002212 /* Check if the input buffer is available. */
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002213 if (si_ic(si)->buf.size == 0) {
2214 si_rx_room_blk(si);
2215 goto out;
2216 }
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002217
Emeric Brun2b920a12010-09-23 18:30:22 +02002218 while (1) {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002219 prev_state = appctx->st0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002220switchstate:
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002221 maj_ver = min_ver = (unsigned int)-1;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002222 switch(appctx->st0) {
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002223 case PEER_SESS_ST_ACCEPT:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002224 prev_state = appctx->st0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002225 appctx->ctx.peers.ptr = NULL;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002226 appctx->st0 = PEER_SESS_ST_GETVERSION;
Emeric Brun2b920a12010-09-23 18:30:22 +02002227 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002228 case PEER_SESS_ST_GETVERSION:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002229 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002230 reql = peer_getline_version(appctx, &maj_ver, &min_ver);
2231 if (reql <= 0) {
2232 if (!reql)
2233 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002234 goto switchstate;
2235 }
2236
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002237 appctx->st0 = PEER_SESS_ST_GETHOST;
Emeric Brun2b920a12010-09-23 18:30:22 +02002238 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002239 case PEER_SESS_ST_GETHOST:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002240 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002241 reql = peer_getline_host(appctx);
2242 if (reql <= 0) {
2243 if (!reql)
2244 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002245 goto switchstate;
2246 }
2247
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002248 appctx->st0 = PEER_SESS_ST_GETPEER;
Emeric Brun2b920a12010-09-23 18:30:22 +02002249 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002250 case PEER_SESS_ST_GETPEER: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002251 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002252 reql = peer_getline_last(appctx, &curpeer);
2253 if (reql <= 0) {
2254 if (!reql)
2255 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002256 goto switchstate;
2257 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002258
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002259 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Willy Tarreau9df94c22016-10-31 18:42:52 +01002260 if (curpeer->appctx && curpeer->appctx != appctx) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002261 if (curpeer->local) {
2262 /* Local connection, reply a retry */
2263 appctx->st0 = PEER_SESS_ST_EXIT;
2264 appctx->st1 = PEER_SESS_SC_TRYAGAIN;
2265 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02002266 }
Emeric Brun80527f52017-06-19 17:46:37 +02002267
2268 /* we're killing a connection, we must apply a random delay before
2269 * retrying otherwise the other end will do the same and we can loop
2270 * for a while.
2271 */
Willy Tarreau52bf8392020-03-08 00:42:37 +01002272 curpeer->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + ha_random() % 2000));
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002273 peer_session_forceshutdown(curpeer);
Emeric Brun2b920a12010-09-23 18:30:22 +02002274 }
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002275 if (maj_ver != (unsigned int)-1 && min_ver != (unsigned int)-1) {
2276 if (min_ver == PEER_DWNGRD_MINOR_VER) {
2277 curpeer->flags |= PEER_F_DWNGRD;
2278 }
2279 else {
2280 curpeer->flags &= ~PEER_F_DWNGRD;
2281 }
2282 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002283 curpeer->appctx = appctx;
2284 appctx->ctx.peers.ptr = curpeer;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002285 appctx->st0 = PEER_SESS_ST_SENDSUCCESS;
Olivier Houcharded879892019-03-08 18:53:43 +01002286 _HA_ATOMIC_ADD(&active_peers, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02002287 /* fall through */
2288 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002289 case PEER_SESS_ST_SENDSUCCESS: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002290 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002291 if (!curpeer) {
2292 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002293 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002294 if (curpeer->appctx != appctx) {
2295 appctx->st0 = PEER_SESS_ST_END;
2296 goto switchstate;
2297 }
2298 }
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002299
2300 repl = peer_send_status_successmsg(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002301 if (repl <= 0) {
2302 if (repl == -1)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002303 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002304 goto switchstate;
2305 }
2306
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002307 init_accepted_peer(curpeer, curpeers);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002308
Emeric Brun2b920a12010-09-23 18:30:22 +02002309 /* switch to waiting message state */
Olivier Houcharded879892019-03-08 18:53:43 +01002310 _HA_ATOMIC_ADD(&connected_peers, 1);
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002311 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +02002312 goto switchstate;
2313 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002314 case PEER_SESS_ST_CONNECT: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002315 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002316 if (!curpeer) {
2317 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002318 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002319 if (curpeer->appctx != appctx) {
2320 appctx->st0 = PEER_SESS_ST_END;
2321 goto switchstate;
2322 }
2323 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002324
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002325 repl = peer_send_hellomsg(appctx, curpeer);
Emeric Brun2b920a12010-09-23 18:30:22 +02002326 if (repl <= 0) {
2327 if (repl == -1)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002328 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002329 goto switchstate;
2330 }
2331
2332 /* switch to the waiting statuscode state */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002333 appctx->st0 = PEER_SESS_ST_GETSTATUS;
Emeric Brun2b920a12010-09-23 18:30:22 +02002334 /* fall through */
2335 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002336 case PEER_SESS_ST_GETSTATUS: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002337 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002338 if (!curpeer) {
2339 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002340 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002341 if (curpeer->appctx != appctx) {
2342 appctx->st0 = PEER_SESS_ST_END;
2343 goto switchstate;
2344 }
2345 }
2346
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002347 if (si_ic(si)->flags & CF_WRITE_PARTIAL)
Emeric Brunb3971ab2015-05-12 18:49:09 +02002348 curpeer->statuscode = PEER_SESS_SC_CONNECTEDCODE;
Emeric Brun2b920a12010-09-23 18:30:22 +02002349
Frédéric Lécaillece025572019-01-21 13:38:06 +01002350 reql = peer_getline(appctx);
2351 if (!reql)
2352 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002353
Frédéric Lécaillece025572019-01-21 13:38:06 +01002354 if (reql < 0)
2355 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02002356
2357 /* Register status code */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002358 curpeer->statuscode = atoi(trash.area);
Emeric Brun2b920a12010-09-23 18:30:22 +02002359
2360 /* Awake main task */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002361 task_wakeup(curpeers->sync_task, TASK_WOKEN_MSG);
Emeric Brun2b920a12010-09-23 18:30:22 +02002362
2363 /* If status code is success */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002364 if (curpeer->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002365 init_connected_peer(curpeer, curpeers);
Emeric Brun2b920a12010-09-23 18:30:22 +02002366 }
2367 else {
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002368 if (curpeer->statuscode == PEER_SESS_SC_ERRVERSION)
2369 curpeer->flags |= PEER_F_DWNGRD;
Emeric Brun2b920a12010-09-23 18:30:22 +02002370 /* Status code is not success, abort */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002371 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +02002372 goto switchstate;
2373 }
Olivier Houcharded879892019-03-08 18:53:43 +01002374 _HA_ATOMIC_ADD(&connected_peers, 1);
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002375 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +02002376 /* fall through */
2377 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002378 case PEER_SESS_ST_WAITMSG: {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002379 uint32_t msg_len = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002380 char *msg_cur = trash.area;
2381 char *msg_end = trash.area;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002382 unsigned char msg_head[7];
Emeric Brun2b920a12010-09-23 18:30:22 +02002383 int totl = 0;
2384
Willy Tarreau2d372c22018-11-05 17:12:27 +01002385 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002386 if (!curpeer) {
2387 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002388 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002389 if (curpeer->appctx != appctx) {
2390 appctx->st0 = PEER_SESS_ST_END;
2391 goto switchstate;
2392 }
2393 }
2394
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002395 reql = peer_recv_msg(appctx, (char *)msg_head, sizeof msg_head, &msg_len, &totl);
2396 if (reql <= 0) {
2397 if (reql == -1)
2398 goto switchstate;
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002399 goto send_msgs;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002400 }
Willy Tarreau86a446e2013-11-25 23:02:37 +01002401
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002402 msg_end += msg_len;
Frédéric Lécaille444243c2019-01-24 15:40:11 +01002403 if (!peer_treat_awaited_msg(appctx, curpeer, msg_head, &msg_cur, msg_end, msg_len, totl))
Emeric Brun2b920a12010-09-23 18:30:22 +02002404 goto switchstate;
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002405
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002406 curpeer->flags |= PEER_F_ALIVE;
2407
Emeric Brun2b920a12010-09-23 18:30:22 +02002408 /* skip consumed message */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002409 co_skip(si_oc(si), totl);
Emeric Brun2b920a12010-09-23 18:30:22 +02002410 /* loop on that state to peek next message */
Willy Tarreau72d6c162013-04-11 16:14:13 +02002411 goto switchstate;
2412
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002413send_msgs:
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002414 if (curpeer->flags & PEER_F_HEARTBEAT) {
2415 curpeer->flags &= ~PEER_F_HEARTBEAT;
2416 repl = peer_send_heartbeatmsg(appctx);
2417 if (repl <= 0) {
2418 if (repl == -1)
2419 goto out;
2420 goto switchstate;
2421 }
Frédéric Lécaille33cab3c2019-11-06 11:51:26 +01002422 curpeer->tx_hbt++;
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002423 }
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002424 /* we get here when a peer_recv_msg() returns 0 in reql */
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01002425 repl = peer_send_msgs(appctx, curpeer);
2426 if (repl <= 0) {
2427 if (repl == -1)
2428 goto out;
2429 goto switchstate;
Emeric Brun597b26e2016-08-12 11:23:31 +02002430 }
2431
Emeric Brun2b920a12010-09-23 18:30:22 +02002432 /* noting more to do */
2433 goto out;
2434 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002435 case PEER_SESS_ST_EXIT:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002436 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002437 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002438 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002439 if (peer_send_status_errormsg(appctx) == -1)
2440 goto out;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002441 appctx->st0 = PEER_SESS_ST_END;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002442 goto switchstate;
2443 case PEER_SESS_ST_ERRSIZE: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002444 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002445 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002446 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002447 if (peer_send_error_size_limitmsg(appctx) == -1)
2448 goto out;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002449 appctx->st0 = PEER_SESS_ST_END;
2450 goto switchstate;
2451 }
2452 case PEER_SESS_ST_ERRPROTO: {
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01002453 if (curpeer)
2454 curpeer->proto_err++;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002455 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002456 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002457 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002458 if (peer_send_error_protomsg(appctx) == -1)
2459 goto out;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002460 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002461 prev_state = appctx->st0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002462 /* fall through */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002463 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002464 case PEER_SESS_ST_END: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002465 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002466 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002467 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002468 if (curpeer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002469 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002470 curpeer = NULL;
2471 }
Willy Tarreau73b013b2012-05-21 16:31:45 +02002472 si_shutw(si);
2473 si_shutr(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002474 si_ic(si)->flags |= CF_READ_NULL;
Willy Tarreau828824a2015-04-19 17:20:03 +02002475 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002476 }
2477 }
2478 }
2479out:
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002480 si_oc(si)->flags |= CF_READ_DONTWAIT;
Emeric Brun80527f52017-06-19 17:46:37 +02002481
2482 if (curpeer)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002483 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +02002484 return;
2485}
2486
Willy Tarreau30576452015-04-13 13:50:30 +02002487static struct applet peer_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002488 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01002489 .name = "<PEER>", /* used for logging */
2490 .fct = peer_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07002491 .release = peer_session_release,
Willy Tarreaub24281b2011-02-13 13:16:36 +01002492};
Emeric Brun2b920a12010-09-23 18:30:22 +02002493
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002494
Emeric Brun2b920a12010-09-23 18:30:22 +02002495/*
2496 * Use this function to force a close of a peer session
2497 */
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002498static void peer_session_forceshutdown(struct peer *peer)
Emeric Brun2b920a12010-09-23 18:30:22 +02002499{
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002500 struct appctx *appctx = peer->appctx;
2501
Frédéric Lécaille5df11902017-06-13 16:39:57 +02002502 /* Note that the peer sessions which have just been created
2503 * (->st0 == PEER_SESS_ST_CONNECT) must not
2504 * be shutdown, if not, the TCP session will never be closed
2505 * and stay in CLOSE_WAIT state after having been closed by
2506 * the remote side.
2507 */
2508 if (!appctx || appctx->st0 == PEER_SESS_ST_CONNECT)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002509 return;
2510
Willy Tarreau81bc3b02016-10-31 17:37:39 +01002511 if (appctx->applet != &peer_applet)
2512 return;
2513
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002514 __peer_session_deinit(peer);
2515
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002516 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau78c0c502016-10-31 17:32:20 +01002517 appctx_wakeup(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002518}
2519
Willy Tarreau91d96282015-03-13 15:47:26 +01002520/* Pre-configures a peers frontend to accept incoming connections */
2521void peers_setup_frontend(struct proxy *fe)
2522{
2523 fe->last_change = now.tv_sec;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02002524 fe->cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau91d96282015-03-13 15:47:26 +01002525 fe->maxconn = 0;
2526 fe->conn_retries = CONN_RETRIES;
2527 fe->timeout.client = MS_TO_TICKS(5000);
Willy Tarreaud1d48d42015-03-13 16:15:46 +01002528 fe->accept = frontend_accept;
Willy Tarreauf87ab942015-03-13 15:55:16 +01002529 fe->default_target = &peer_applet.obj_type;
Willy Tarreau91d96282015-03-13 15:47:26 +01002530 fe->options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC;
Willy Tarreau0fca4832015-05-01 19:12:05 +02002531 fe->bind_proc = 0; /* will be filled by users */
Willy Tarreau91d96282015-03-13 15:47:26 +01002532}
2533
Emeric Brun2b920a12010-09-23 18:30:22 +02002534/*
Willy Tarreaubd55e312010-11-11 10:55:09 +01002535 * Create a new peer session in assigned state (connect will start automatically)
Emeric Brun2b920a12010-09-23 18:30:22 +02002536 */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002537static struct appctx *peer_session_create(struct peers *peers, struct peer *peer)
Emeric Brun2b920a12010-09-23 18:30:22 +02002538{
Willy Tarreau04b92862017-09-15 11:01:04 +02002539 struct proxy *p = peers->peers_fe; /* attached frontend */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002540 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02002541 struct session *sess;
Willy Tarreau87b09662015-04-03 00:22:06 +02002542 struct stream *s;
Emeric Brun2b920a12010-09-23 18:30:22 +02002543
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002544 peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002545 peer->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
Emeric Brunb3971ab2015-05-12 18:49:09 +02002546 peer->statuscode = PEER_SESS_SC_CONNECTCODE;
Willy Tarreaud990baf2015-04-05 00:32:03 +02002547 s = NULL;
2548
Emeric Brun1138fd02017-06-19 12:38:55 +02002549 appctx = appctx_new(&peer_applet, tid_bit);
Willy Tarreaud990baf2015-04-05 00:32:03 +02002550 if (!appctx)
2551 goto out_close;
2552
2553 appctx->st0 = PEER_SESS_ST_CONNECT;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002554 appctx->ctx.peers.ptr = (void *)peer;
Willy Tarreaud990baf2015-04-05 00:32:03 +02002555
Willy Tarreau04b92862017-09-15 11:01:04 +02002556 sess = session_new(p, NULL, &appctx->obj_type);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002557 if (!sess) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002558 ha_alert("out of memory in peer_session_create().\n");
Willy Tarreaud990baf2015-04-05 00:32:03 +02002559 goto out_free_appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02002560 }
2561
Willy Tarreau87787ac2017-08-28 16:22:54 +02002562 if ((s = stream_new(sess, &appctx->obj_type)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002563 ha_alert("Failed to initialize stream in peer_session_create().\n");
Willy Tarreau87787ac2017-08-28 16:22:54 +02002564 goto out_free_sess;
Willy Tarreau8baf9062015-04-05 00:46:36 +02002565 }
2566
Willy Tarreau6e2979c2015-04-27 13:21:15 +02002567 /* applet is waiting for data */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002568 si_cant_get(&s->si[0]);
Willy Tarreau6e2979c2015-04-27 13:21:15 +02002569 appctx_wakeup(appctx);
2570
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02002571 /* initiate an outgoing connection */
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002572 s->target = peer_session_target(peer, s);
2573 if (!sockaddr_alloc(&s->target_addr))
2574 goto out_free_strm;
2575 *s->target_addr = peer->addr;
Willy Tarreau02efeda2019-07-18 17:21:24 +02002576 s->flags = SF_ASSIGNED|SF_ADDR_SET;
Willy Tarreaudbd02672017-12-06 17:39:53 +01002577 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002578
Emeric Brun2b920a12010-09-23 18:30:22 +02002579 s->do_log = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002580 s->uniq_id = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002581
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002582 s->res.flags |= CF_READ_DONTWAIT;
Willy Tarreau696a2912014-11-24 11:36:57 +01002583
Emeric Brunb3971ab2015-05-12 18:49:09 +02002584 peer->appctx = appctx;
Willy Tarreau87787ac2017-08-28 16:22:54 +02002585 task_wakeup(s->task, TASK_WOKEN_INIT);
Olivier Houcharded879892019-03-08 18:53:43 +01002586 _HA_ATOMIC_ADD(&active_peers, 1);
Willy Tarreau9df94c22016-10-31 18:42:52 +01002587 return appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02002588
2589 /* Error unrolling */
Willy Tarreau15b5e142015-04-04 14:38:25 +02002590 out_free_strm:
Emeric Brun2b920a12010-09-23 18:30:22 +02002591 LIST_DEL(&s->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002592 pool_free(pool_head_stream, s);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002593 out_free_sess:
Willy Tarreau11c36242015-04-04 15:54:03 +02002594 session_free(sess);
Willy Tarreaud990baf2015-04-05 00:32:03 +02002595 out_free_appctx:
2596 appctx_free(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002597 out_close:
Willy Tarreaub21d08e2016-10-31 17:46:57 +01002598 return NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002599}
2600
2601/*
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002602 * Task processing function to manage re-connect, peer session
2603 * tasks wakeup on local update and heartbeat.
Emeric Brun2b920a12010-09-23 18:30:22 +02002604 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002605static struct task *process_peer_sync(struct task * task, void *context, unsigned short state)
Emeric Brun2b920a12010-09-23 18:30:22 +02002606{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002607 struct peers *peers = context;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002608 struct peer *ps;
2609 struct shared_table *st;
Emeric Brun2b920a12010-09-23 18:30:22 +02002610
2611 task->expire = TICK_ETERNITY;
2612
Emeric Brunb3971ab2015-05-12 18:49:09 +02002613 if (!peers->peers_fe) {
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02002614 /* this one was never started, kill it */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002615 signal_unregister_handler(peers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002616 task_destroy(peers->sync_task);
Willy Tarreau37bb7be2015-09-21 15:24:58 +02002617 peers->sync_task = NULL;
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02002618 return NULL;
2619 }
2620
Emeric Brun80527f52017-06-19 17:46:37 +02002621 /* Acquire lock for all peers of the section */
2622 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002623 HA_SPIN_LOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002624
Emeric Brun2b920a12010-09-23 18:30:22 +02002625 if (!stopping) {
2626 /* Normal case (not soft stop)*/
Emeric Brunb3971ab2015-05-12 18:49:09 +02002627
2628 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL) &&
2629 (!nb_oldpids || tick_is_expired(peers->resync_timeout, now_ms)) &&
2630 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002631 /* Resync from local peer needed
2632 no peer was assigned for the lesson
2633 and no old local peer found
2634 or resync timeout expire */
2635
2636 /* flag no more resync from local, to try resync from remotes */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002637 peers->flags |= PEERS_F_RESYNC_LOCAL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002638
2639 /* reschedule a resync */
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002640 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT));
Emeric Brun2b920a12010-09-23 18:30:22 +02002641 }
2642
2643 /* For each session */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002644 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002645 /* For each remote peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002646 if (!ps->local) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002647 if (!ps->appctx) {
2648 /* no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002649 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002650 ((ps->statuscode == PEER_SESS_SC_CONNECTCODE ||
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002651 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002652 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002653 tick_is_expired(ps->reconnect, now_ms))) {
2654 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002655 * or previous peer connection established with success
2656 * or previous peer connection failed while connecting
Emeric Brun2b920a12010-09-23 18:30:22 +02002657 * and reconnection timer is expired */
2658
2659 /* retry a connect */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002660 ps->appctx = peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002661 }
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002662 else if (!tick_is_expired(ps->reconnect, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002663 /* If previous session failed during connection
2664 * but reconnection timer is not expired */
2665
2666 /* reschedule task for reconnect */
2667 task->expire = tick_first(task->expire, ps->reconnect);
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01002668 ps->new_conn++;
Emeric Brun2b920a12010-09-23 18:30:22 +02002669 }
2670 /* else do nothing */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002671 } /* !ps->appctx */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002672 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002673 /* current peer connection is active and established */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002674 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2675 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002676 !(ps->flags & PEER_F_LEARN_NOTUP2DATE)) {
2677 /* Resync from a remote is needed
2678 * and no peer was assigned for lesson
2679 * and current peer may be up2date */
2680
2681 /* assign peer for the lesson */
2682 ps->flags |= PEER_F_LEARN_ASSIGN;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002683 peers->flags |= PEERS_F_RESYNC_ASSIGN;
Emeric Brun2b920a12010-09-23 18:30:22 +02002684
Willy Tarreau9df94c22016-10-31 18:42:52 +01002685 /* wake up peer handler to handle a request of resync */
Willy Tarreaue5843b32015-04-27 18:40:14 +02002686 appctx_wakeup(ps->appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002687 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002688 else {
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002689 int update_to_push = 0;
2690
Emeric Brunb3971ab2015-05-12 18:49:09 +02002691 /* Awake session if there is data to push */
2692 for (st = ps->tables; st ; st = st->next) {
2693 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002694 /* wake up the peer handler to push local updates */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002695 update_to_push = 1;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002696 /* There is no need to send a heartbeat message
2697 * when some updates must be pushed. The remote
2698 * peer will consider <ps> peer as alive when it will
2699 * receive these updates.
2700 */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002701 ps->flags &= ~PEER_F_HEARTBEAT;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002702 /* Re-schedule another one later. */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002703 ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002704 /* We are going to send updates, let's ensure we will
2705 * come back to send heartbeat messages or to reconnect.
2706 */
2707 task->expire = tick_first(ps->reconnect, ps->heartbeat);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002708 appctx_wakeup(ps->appctx);
2709 break;
2710 }
2711 }
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002712 /* When there are updates to send we do not reconnect
2713 * and do not send heartbeat message either.
2714 */
2715 if (!update_to_push) {
2716 if (tick_is_expired(ps->reconnect, now_ms)) {
2717 if (ps->flags & PEER_F_ALIVE) {
2718 /* This peer was alive during a 'reconnect' period.
2719 * Flag it as not alive again for the next period.
2720 */
2721 ps->flags &= ~PEER_F_ALIVE;
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002722 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002723 }
2724 else {
Willy Tarreau52bf8392020-03-08 00:42:37 +01002725 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + ha_random() % 2000));
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002726 peer_session_forceshutdown(ps);
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01002727 ps->no_hbt++;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002728 }
2729 }
2730 else if (tick_is_expired(ps->heartbeat, now_ms)) {
2731 ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
2732 ps->flags |= PEER_F_HEARTBEAT;
2733 appctx_wakeup(ps->appctx);
2734 }
Frédéric Lécailleb7405c12019-03-27 14:32:39 +01002735 task->expire = tick_first(ps->reconnect, ps->heartbeat);
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002736 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002737 }
2738 /* else do nothing */
2739 } /* SUCCESSCODE */
2740 } /* !ps->peer->local */
2741 } /* for */
2742
2743 /* Resync from remotes expired: consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002744 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2745 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
2746 tick_is_expired(peers->resync_timeout, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002747 /* Resync from remote peer needed
2748 * no peer was assigned for the lesson
2749 * and resync timeout expire */
2750
2751 /* flag no more resync from remote, consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002752 peers->flags |= PEERS_F_RESYNC_REMOTE;
Emeric Brun2b920a12010-09-23 18:30:22 +02002753 }
2754
Emeric Brunb3971ab2015-05-12 18:49:09 +02002755 if ((peers->flags & PEERS_RESYNC_STATEMASK) != PEERS_RESYNC_FINISHED) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002756 /* Resync not finished*/
Frédéric Lécaille5d6e5f82017-05-29 13:47:16 +02002757 /* reschedule task to resync timeout if not expired, to ended resync if needed */
2758 if (!tick_is_expired(peers->resync_timeout, now_ms))
2759 task->expire = tick_first(task->expire, peers->resync_timeout);
Emeric Brun2b920a12010-09-23 18:30:22 +02002760 }
2761 } /* !stopping */
2762 else {
2763 /* soft stop case */
Willy Tarreau086735a2018-11-05 15:09:47 +01002764 if (state & TASK_WOKEN_SIGNAL) {
Joseph Herlant82b2f542018-11-15 12:19:14 -08002765 /* We've just received the signal */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002766 if (!(peers->flags & PEERS_F_DONOTSTOP)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002767 /* add DO NOT STOP flag if not present */
Olivier Houcharded879892019-03-08 18:53:43 +01002768 _HA_ATOMIC_ADD(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002769 peers->flags |= PEERS_F_DONOTSTOP;
2770 ps = peers->local;
2771 for (st = ps->tables; st ; st = st->next)
2772 st->table->syncing++;
Emeric Brun2b920a12010-09-23 18:30:22 +02002773 }
2774
2775 /* disconnect all connected peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002776 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun80527f52017-06-19 17:46:37 +02002777 /* we're killing a connection, we must apply a random delay before
2778 * retrying otherwise the other end will do the same and we can loop
2779 * for a while.
2780 */
Willy Tarreau52bf8392020-03-08 00:42:37 +01002781 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + ha_random() % 2000));
Willy Tarreau9df94c22016-10-31 18:42:52 +01002782 if (ps->appctx) {
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002783 peer_session_forceshutdown(ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002784 }
2785 }
2786 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002787
Emeric Brunb3971ab2015-05-12 18:49:09 +02002788 ps = peers->local;
Emeric Brun2b920a12010-09-23 18:30:22 +02002789 if (ps->flags & PEER_F_TEACH_COMPLETE) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002790 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002791 /* resync of new process was complete, current process can die now */
Olivier Houcharded879892019-03-08 18:53:43 +01002792 _HA_ATOMIC_SUB(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002793 peers->flags &= ~PEERS_F_DONOTSTOP;
2794 for (st = ps->tables; st ; st = st->next)
2795 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002796 }
2797 }
Willy Tarreau9df94c22016-10-31 18:42:52 +01002798 else if (!ps->appctx) {
2799 /* If there's no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002800 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002801 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
2802 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE ||
2803 ps->statuscode == PEER_SESS_SC_TRYAGAIN) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002804 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002805 * or previous peer connection was successfully established
2806 * or previous tcp connect succeeded but init state incomplete
Emeric Brun2b920a12010-09-23 18:30:22 +02002807 * or during previous connect, peer replies a try again statuscode */
2808
2809 /* connect to the peer */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002810 peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002811 }
2812 else {
2813 /* Other error cases */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002814 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002815 /* unable to resync new process, current process can die now */
Olivier Houcharded879892019-03-08 18:53:43 +01002816 _HA_ATOMIC_SUB(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002817 peers->flags &= ~PEERS_F_DONOTSTOP;
2818 for (st = ps->tables; st ; st = st->next)
2819 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002820 }
2821 }
2822 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002823 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE ) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002824 /* current peer connection is active and established
2825 * wake up all peer handlers to push remaining local updates */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002826 for (st = ps->tables; st ; st = st->next) {
2827 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002828 appctx_wakeup(ps->appctx);
2829 break;
2830 }
2831 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002832 }
2833 } /* stopping */
Emeric Brun80527f52017-06-19 17:46:37 +02002834
2835 /* Release lock for all peers of the section */
2836 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002837 HA_SPIN_UNLOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002838
Emeric Brun2b920a12010-09-23 18:30:22 +02002839 /* Wakeup for re-connect */
2840 return task;
2841}
2842
Emeric Brunb3971ab2015-05-12 18:49:09 +02002843
Emeric Brun2b920a12010-09-23 18:30:22 +02002844/*
Willy Tarreaud9443442018-10-15 11:18:03 +02002845 * returns 0 in case of error.
Emeric Brun2b920a12010-09-23 18:30:22 +02002846 */
Willy Tarreaud9443442018-10-15 11:18:03 +02002847int peers_init_sync(struct peers *peers)
Emeric Brun2b920a12010-09-23 18:30:22 +02002848{
Emeric Brun2b920a12010-09-23 18:30:22 +02002849 struct peer * curpeer;
Emeric Brun2b920a12010-09-23 18:30:22 +02002850
Emeric Brun2b920a12010-09-23 18:30:22 +02002851 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002852 peers->peers_fe->maxconn += 3;
2853 }
2854
Emeric Brunc60def82017-09-27 14:59:38 +02002855 peers->sync_task = task_new(MAX_THREADS_MASK);
Willy Tarreaud9443442018-10-15 11:18:03 +02002856 if (!peers->sync_task)
2857 return 0;
2858
Emeric Brunb3971ab2015-05-12 18:49:09 +02002859 peers->sync_task->process = process_peer_sync;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002860 peers->sync_task->context = (void *)peers;
2861 peers->sighandler = signal_register_task(0, peers->sync_task, 0);
2862 task_wakeup(peers->sync_task, TASK_WOKEN_INIT);
Willy Tarreaud9443442018-10-15 11:18:03 +02002863 return 1;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002864}
2865
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002866/*
2867 * Allocate a cache a dictionary entries used upon transmission.
2868 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002869static struct dcache_tx *new_dcache_tx(size_t max_entries)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002870{
2871 struct dcache_tx *d;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002872 struct ebpt_node *entries;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002873
2874 d = malloc(sizeof *d);
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002875 entries = calloc(max_entries, sizeof *entries);
2876 if (!d || !entries)
2877 goto err;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002878
2879 d->lru_key = 0;
Frédéric Lécailleb65717f2019-06-07 14:25:25 +02002880 d->prev_lookup = NULL;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002881 d->cached_entries = EB_ROOT_UNIQUE;
2882 d->entries = entries;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002883
2884 return d;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002885
2886 err:
2887 free(d);
2888 free(entries);
2889 return NULL;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002890}
2891
2892/*
2893 * Allocate a cache of dictionary entries with <name> as name and <max_entries>
2894 * as maximum of entries.
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002895 * Return the dictionary cache if succeeded, NULL if not.
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002896 * Must be deallocated calling free_dcache().
2897 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002898static struct dcache *new_dcache(size_t max_entries)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002899{
2900 struct dcache_tx *dc_tx;
2901 struct dcache *dc;
2902 struct dcache_rx *dc_rx;
2903
2904 dc = calloc(1, sizeof *dc);
2905 dc_tx = new_dcache_tx(max_entries);
2906 dc_rx = calloc(max_entries, sizeof *dc_rx);
2907 if (!dc || !dc_tx || !dc_rx)
2908 goto err;
2909
2910 dc->tx = dc_tx;
2911 dc->rx = dc_rx;
2912 dc->max_entries = max_entries;
2913
2914 return dc;
2915
2916 err:
2917 free(dc);
2918 free(dc_tx);
2919 free(dc_rx);
2920 return NULL;
2921}
2922
2923/*
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002924 * Look for the dictionary entry with the value of <i> in <d> cache of dictionary
2925 * entries used upon transmission.
2926 * Return the entry if found, NULL if not.
2927 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002928static struct ebpt_node *dcache_tx_lookup_value(struct dcache_tx *d,
2929 struct dcache_tx_entry *i)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002930{
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002931 return ebpt_lookup(&d->cached_entries, i->entry.key);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002932}
2933
2934/*
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002935 * Flush <dc> cache.
2936 * Always succeeds.
2937 */
2938static inline void flush_dcache(struct peer *peer)
2939{
2940 int i;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02002941 struct dcache *dc = peer->dcache;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002942
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002943 for (i = 0; i < dc->max_entries; i++)
2944 ebpt_delete(&dc->tx->entries[i]);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002945
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002946 memset(dc->rx, 0, dc->max_entries * sizeof *dc->rx);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002947}
2948
2949/*
2950 * Insert a dictionary entry in <dc> cache part used upon transmission (->tx)
2951 * with information provided by <i> dictionary cache entry (especially the value
2952 * to be inserted if not already). Return <i> if already present in the cache
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002953 * or something different of <i> if not.
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002954 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002955static struct ebpt_node *dcache_tx_insert(struct dcache *dc, struct dcache_tx_entry *i)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002956{
2957 struct dcache_tx *dc_tx;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002958 struct ebpt_node *o;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002959
2960 dc_tx = dc->tx;
Frédéric Lécailleb65717f2019-06-07 14:25:25 +02002961
2962 if (dc_tx->prev_lookup && dc_tx->prev_lookup->key == i->entry.key) {
2963 o = dc_tx->prev_lookup;
2964 } else {
2965 o = dcache_tx_lookup_value(dc_tx, i);
2966 if (o) {
2967 /* Save it */
2968 dc_tx->prev_lookup = o;
2969 }
2970 }
2971
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002972 if (o) {
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002973 /* Copy the ID. */
2974 i->id = o - dc->tx->entries;
2975 return &i->entry;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002976 }
2977
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002978 /* The new entry to put in cache */
Frédéric Lécailleb65717f2019-06-07 14:25:25 +02002979 dc_tx->prev_lookup = o = &dc_tx->entries[dc_tx->lru_key];
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002980
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002981 ebpt_delete(o);
2982 o->key = i->entry.key;
2983 ebpt_insert(&dc_tx->cached_entries, o);
2984 i->id = dc_tx->lru_key;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002985
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002986 /* Update the index for the next entry to put in cache */
2987 dc_tx->lru_key = (dc_tx->lru_key + 1) & (dc->max_entries - 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002988
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002989 return o;
2990}
Emeric Brunb3971ab2015-05-12 18:49:09 +02002991
2992/*
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02002993 * Allocate a dictionary cache for each peer of <peers> section.
2994 * Return 1 if succeeded, 0 if not.
2995 */
2996int peers_alloc_dcache(struct peers *peers)
2997{
2998 struct peer *p;
2999
3000 for (p = peers->remote; p; p = p->next) {
3001 p->dcache = new_dcache(PEER_STKT_CACHE_MAX_ENTRIES);
3002 if (!p->dcache)
3003 return 0;
3004 }
3005
3006 return 1;
3007}
3008
3009/*
Emeric Brunb3971ab2015-05-12 18:49:09 +02003010 * Function used to register a table for sync on a group of peers
3011 *
3012 */
3013void peers_register_table(struct peers *peers, struct stktable *table)
3014{
3015 struct shared_table *st;
3016 struct peer * curpeer;
3017 int id = 0;
3018
3019 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Vincent Bernat02779b62016-04-03 13:48:43 +02003020 st = calloc(1,sizeof(*st));
Emeric Brunb3971ab2015-05-12 18:49:09 +02003021 st->table = table;
3022 st->next = curpeer->tables;
3023 if (curpeer->tables)
3024 id = curpeer->tables->local_id;
3025 st->local_id = id + 1;
3026
3027 curpeer->tables = st;
3028 }
3029
3030 table->sync_task = peers->sync_task;
Emeric Brun2b920a12010-09-23 18:30:22 +02003031}
3032
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003033/*
3034 * Parse the "show peers" command arguments.
3035 * Returns 0 if succeeded, 1 if not with the ->msg of the appctx set as
3036 * error message.
3037 */
3038static int cli_parse_show_peers(char **args, char *payload, struct appctx *appctx, void *private)
3039{
3040 appctx->ctx.cfgpeers.target = NULL;
3041
3042 if (*args[2]) {
3043 struct peers *p;
3044
3045 for (p = cfg_peers; p; p = p->next) {
3046 if (!strcmp(p->id, args[2])) {
3047 appctx->ctx.cfgpeers.target = p;
3048 break;
3049 }
3050 }
3051
Willy Tarreau9d008692019-08-09 11:21:01 +02003052 if (!p)
3053 return cli_err(appctx, "No such peers\n");
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003054 }
3055
3056 return 0;
3057}
3058
3059/*
3060 * This function dumps the peer state information of <peers> "peers" section.
3061 * Returns 0 if the output buffer is full and needs to be called again, non-zero if not.
3062 * Dedicated to be called by cli_io_handler_show_peers() cli I/O handler.
3063 */
3064static int peers_dump_head(struct buffer *msg, struct stream_interface *si, struct peers *peers)
3065{
3066 struct tm tm;
3067
3068 get_localtime(peers->last_change, &tm);
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003069 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 +02003070 peers,
3071 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
3072 tm.tm_hour, tm.tm_min, tm.tm_sec,
3073 peers->id, peers->state, peers->flags,
3074 peers->resync_timeout ?
3075 tick_is_expired(peers->resync_timeout, now_ms) ? "<PAST>" :
3076 human_time(TICKS_TO_MS(peers->resync_timeout - now_ms),
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003077 TICKS_TO_MS(1000)) : "<NEVER>",
3078 peers->sync_task ? peers->sync_task->calls : 0);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003079
3080 if (ci_putchk(si_ic(si), msg) == -1) {
3081 si_rx_room_blk(si);
3082 return 0;
3083 }
3084
3085 return 1;
3086}
3087
3088/*
3089 * This function dumps <peer> state information.
3090 * Returns 0 if the output buffer is full and needs to be called again, non-zero
3091 * if not. Dedicated to be called by cli_io_handler_show_peers() cli I/O handler.
3092 */
3093static int peers_dump_peer(struct buffer *msg, struct stream_interface *si, struct peer *peer)
3094{
3095 struct connection *conn;
3096 char pn[INET6_ADDRSTRLEN];
3097 struct stream_interface *peer_si;
3098 struct stream *peer_s;
3099 struct appctx *appctx;
3100 struct shared_table *st;
3101
3102 addr_to_str(&peer->addr, pn, sizeof pn);
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01003103 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 +02003104 peer, peer->id,
3105 peer->local ? "local" : "remote",
3106 pn, get_host_port(&peer->addr),
3107 statuscode_str(peer->statuscode),
3108 peer->reconnect ?
3109 tick_is_expired(peer->reconnect, now_ms) ? "<PAST>" :
3110 human_time(TICKS_TO_MS(peer->reconnect - now_ms),
3111 TICKS_TO_MS(1000)) : "<NEVER>",
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +01003112 peer->confirm, peer->tx_hbt, peer->rx_hbt,
3113 peer->no_hbt, peer->new_conn, peer->proto_err);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003114
3115 chunk_appendf(&trash, " flags=0x%x", peer->flags);
3116
3117 appctx = peer->appctx;
3118 if (!appctx)
Frédéric Lécaille470502b2019-11-06 10:41:03 +01003119 goto table_info;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003120
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003121 chunk_appendf(&trash, " appctx:%p st0=%d st1=%d task_calls=%u", appctx, appctx->st0, appctx->st1,
3122 appctx->t ? appctx->t->calls : 0);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003123
3124 peer_si = peer->appctx->owner;
3125 if (!peer_si)
Frédéric Lécaille470502b2019-11-06 10:41:03 +01003126 goto table_info;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003127
3128 peer_s = si_strm(peer_si);
3129 if (!peer_s)
Frédéric Lécaille470502b2019-11-06 10:41:03 +01003130 goto table_info;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003131
3132 chunk_appendf(&trash, " state=%s", si_state_str(si_opposite(peer_si)->state));
3133
3134 conn = objt_conn(strm_orig(peer_s));
3135 if (conn)
3136 chunk_appendf(&trash, "\n xprt=%s", conn_get_xprt_name(conn));
3137
Willy Tarreau3ca14902019-07-17 14:53:15 +02003138 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 +02003139 case AF_INET:
3140 case AF_INET6:
Willy Tarreau3ca14902019-07-17 14:53:15 +02003141 chunk_appendf(&trash, " src=%s:%d", pn, get_host_port(conn->src));
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003142 break;
3143 case AF_UNIX:
3144 chunk_appendf(&trash, " src=unix:%d", strm_li(peer_s)->luid);
3145 break;
3146 }
3147
Willy Tarreau3ca14902019-07-17 14:53:15 +02003148 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 +02003149 case AF_INET:
3150 case AF_INET6:
Willy Tarreau3ca14902019-07-17 14:53:15 +02003151 chunk_appendf(&trash, " addr=%s:%d", pn, get_host_port(conn->dst));
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003152 break;
3153 case AF_UNIX:
3154 chunk_appendf(&trash, " addr=unix:%d", strm_li(peer_s)->luid);
3155 break;
3156 }
3157
Frédéric Lécaille470502b2019-11-06 10:41:03 +01003158 table_info:
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003159 if (peer->remote_table)
3160 chunk_appendf(&trash, "\n remote_table:%p id=%s local_id=%d remote_id=%d",
3161 peer->remote_table,
3162 peer->remote_table->table->id,
3163 peer->remote_table->local_id,
3164 peer->remote_table->remote_id);
3165
3166 if (peer->last_local_table)
3167 chunk_appendf(&trash, "\n last_local_table:%p id=%s local_id=%d remote_id=%d",
3168 peer->last_local_table,
3169 peer->last_local_table->table->id,
3170 peer->last_local_table->local_id,
3171 peer->last_local_table->remote_id);
3172
3173 if (peer->tables) {
3174 chunk_appendf(&trash, "\n shared tables:");
3175 for (st = peer->tables; st; st = st->next) {
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003176 int i, count;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003177 struct stktable *t;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003178 struct dcache *dcache;
3179
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003180 t = st->table;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003181 dcache = peer->dcache;
3182
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003183 chunk_appendf(&trash, "\n %p local_id=%d remote_id=%d "
3184 "flags=0x%x remote_data=0x%llx",
3185 st, st->local_id, st->remote_id,
3186 st->flags, (unsigned long long)st->remote_data);
3187 chunk_appendf(&trash, "\n last_acked=%u last_pushed=%u last_get=%u"
3188 " teaching_origin=%u update=%u",
3189 st->last_acked, st->last_pushed, st->last_get,
3190 st->teaching_origin, st->update);
3191 chunk_appendf(&trash, "\n table:%p id=%s update=%u localupdate=%u"
3192 " commitupdate=%u syncing=%u",
3193 t, t->id, t->update, t->localupdate, t->commitupdate, t->syncing);
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003194 chunk_appendf(&trash, "\n TX dictionary cache:");
3195 count = 0;
3196 for (i = 0; i < dcache->max_entries; i++) {
3197 struct ebpt_node *node;
3198 struct dict_entry *de;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003199
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003200 node = &dcache->tx->entries[i];
3201 if (!node->key)
3202 break;
3203
3204 if (!count++)
3205 chunk_appendf(&trash, "\n ");
3206 de = node->key;
3207 chunk_appendf(&trash, " %3u -> %s", i, (char *)de->value.key);
3208 count &= 0x3;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003209 }
3210 chunk_appendf(&trash, "\n RX dictionary cache:");
3211 count = 0;
3212 for (i = 0; i < dcache->max_entries; i++) {
3213 if (!count++)
3214 chunk_appendf(&trash, "\n ");
3215 chunk_appendf(&trash, " %3u -> %s", i,
3216 dcache->rx[i].de ?
3217 (char *)dcache->rx[i].de->value.key : "-");
3218 count &= 0x3;
3219 }
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003220 }
3221 }
3222
3223 end:
3224 chunk_appendf(&trash, "\n");
3225 if (ci_putchk(si_ic(si), msg) == -1) {
3226 si_rx_room_blk(si);
3227 return 0;
3228 }
3229
3230 return 1;
3231}
3232
3233/*
3234 * This function dumps all the peers of "peers" section.
3235 * Returns 0 if the output buffer is full and needs to be called
3236 * again, non-zero if not. It proceeds in an isolated thread, so
3237 * there is no thread safety issue here.
3238 */
3239static int cli_io_handler_show_peers(struct appctx *appctx)
3240{
3241 int show_all;
3242 int ret = 0, first_peers = 1;
3243 struct stream_interface *si = appctx->owner;
3244
3245 thread_isolate();
3246
3247 show_all = !appctx->ctx.cfgpeers.target;
3248
3249 chunk_reset(&trash);
3250
3251 while (appctx->st2 != STAT_ST_FIN) {
3252 switch (appctx->st2) {
3253 case STAT_ST_INIT:
3254 if (show_all)
3255 appctx->ctx.cfgpeers.peers = cfg_peers;
3256 else
3257 appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.target;
3258
3259 appctx->st2 = STAT_ST_LIST;
3260 /* fall through */
3261
3262 case STAT_ST_LIST:
3263 if (!appctx->ctx.cfgpeers.peers) {
3264 /* No more peers list. */
3265 appctx->st2 = STAT_ST_END;
3266 }
3267 else {
3268 if (!first_peers)
3269 chunk_appendf(&trash, "\n");
3270 else
3271 first_peers = 0;
3272 if (!peers_dump_head(&trash, si, appctx->ctx.cfgpeers.peers))
3273 goto out;
3274
3275 appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peers->remote;
3276 appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.peers->next;
3277 appctx->st2 = STAT_ST_INFO;
3278 }
3279 break;
3280
3281 case STAT_ST_INFO:
3282 if (!appctx->ctx.cfgpeers.peer) {
3283 /* End of peer list */
3284 if (show_all)
3285 appctx->st2 = STAT_ST_LIST;
3286 else
3287 appctx->st2 = STAT_ST_END;
3288 }
3289 else {
3290 if (!peers_dump_peer(&trash, si, appctx->ctx.cfgpeers.peer))
3291 goto out;
3292
3293 appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peer->next;
3294 }
3295 break;
3296
3297 case STAT_ST_END:
3298 appctx->st2 = STAT_ST_FIN;
3299 break;
3300 }
3301 }
3302 ret = 1;
3303 out:
3304 thread_release();
3305 return ret;
3306}
3307
3308/*
3309 * CLI keywords.
3310 */
3311static struct cli_kw_list cli_kws = {{ }, {
3312 { { "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, },
3313 {},
3314}};
3315
3316/* Register cli keywords */
3317INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
3318