blob: 6cb01a946c3e13f0413f0c2b20b1faf24db678f2 [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
23#include <common/compat.h>
24#include <common/config.h>
25#include <common/time.h>
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +020026#include <common/standard.h>
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020027#include <common/hathreads.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020028
29#include <types/global.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010030#include <types/listener.h>
31#include <types/obj_type.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020032#include <types/peers.h>
Frédéric Lécaille95679dc2019-04-15 10:25:27 +020033#include <types/stats.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020034
35#include <proto/acl.h>
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020036#include <proto/applet.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020037#include <proto/channel.h>
Frédéric Lécaille95679dc2019-04-15 10:25:27 +020038#include <proto/cli.h>
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +020039#include <proto/dict.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020040#include <proto/fd.h>
Willy Tarreaud1d48d42015-03-13 16:15:46 +010041#include <proto/frontend.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020042#include <proto/log.h>
43#include <proto/hdr_idx.h>
Willy Tarreau53a47662017-08-28 10:53:00 +020044#include <proto/mux_pt.h>
Frédéric Lécaille1055e682018-04-26 14:35:21 +020045#include <proto/peers.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020046#include <proto/proxy.h>
Willy Tarreaufeb76402015-04-03 14:10:06 +020047#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020048#include <proto/stream.h>
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010049#include <proto/signal.h>
50#include <proto/stick_table.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020051#include <proto/stream_interface.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020052#include <proto/task.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020053
54
55/*******************************/
56/* Current peer learning state */
57/*******************************/
58
59/******************************/
Emeric Brunb3971ab2015-05-12 18:49:09 +020060/* Current peers section resync state */
Emeric Brun2b920a12010-09-23 18:30:22 +020061/******************************/
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010062#define PEERS_F_RESYNC_LOCAL 0x00000001 /* Learn from local finished or no more needed */
63#define PEERS_F_RESYNC_REMOTE 0x00000002 /* Learn from remote finished or no more needed */
64#define PEERS_F_RESYNC_ASSIGN 0x00000004 /* A peer was assigned to learn our lesson */
65#define PEERS_F_RESYNC_PROCESS 0x00000008 /* The assigned peer was requested for resync */
66#define PEERS_F_DONOTSTOP 0x00010000 /* Main table sync task block process during soft stop
67 to push data to new process */
Emeric Brun2b920a12010-09-23 18:30:22 +020068
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010069#define PEERS_RESYNC_STATEMASK (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE)
70#define PEERS_RESYNC_FROMLOCAL 0x00000000
71#define PEERS_RESYNC_FROMREMOTE PEERS_F_RESYNC_LOCAL
72#define PEERS_RESYNC_FINISHED (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE)
Emeric Brunb3971ab2015-05-12 18:49:09 +020073
74/***********************************/
75/* Current shared table sync state */
76/***********************************/
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010077#define SHTABLE_F_TEACH_STAGE1 0x00000001 /* Teach state 1 complete */
78#define SHTABLE_F_TEACH_STAGE2 0x00000002 /* Teach state 2 complete */
Emeric Brun2b920a12010-09-23 18:30:22 +020079
80/******************************/
81/* Remote peer teaching state */
82/******************************/
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010083#define PEER_F_TEACH_PROCESS 0x00000001 /* Teach a lesson to current peer */
84#define PEER_F_TEACH_FINISHED 0x00000008 /* Teach conclude, (wait for confirm) */
85#define PEER_F_TEACH_COMPLETE 0x00000010 /* All that we know already taught to current peer, used only for a local peer */
86#define PEER_F_LEARN_ASSIGN 0x00000100 /* Current peer was assigned for a lesson */
87#define PEER_F_LEARN_NOTUP2DATE 0x00000200 /* Learn from peer finished but peer is not up to date */
88#define PEER_F_ALIVE 0x20000000 /* Used to flag a peer a alive. */
89#define PEER_F_HEARTBEAT 0x40000000 /* Heartbeat message to send. */
90#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 +020091
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010092#define PEER_TEACH_RESET ~(PEER_F_TEACH_PROCESS|PEER_F_TEACH_FINISHED) /* PEER_F_TEACH_COMPLETE should never be reset */
93#define PEER_LEARN_RESET ~(PEER_F_LEARN_ASSIGN|PEER_F_LEARN_NOTUP2DATE)
Emeric Brun2b920a12010-09-23 18:30:22 +020094
Frédéric Lécaille54bff832019-03-26 10:25:20 +010095#define PEER_RESYNC_TIMEOUT 5000 /* 5 seconds */
96#define PEER_RECONNECT_TIMEOUT 5000 /* 5 seconds */
Frédéric Lécaille645635d2019-02-11 17:49:39 +010097#define PEER_HEARTBEAT_TIMEOUT 3000 /* 3 seconds */
98
Emeric Brunb3971ab2015-05-12 18:49:09 +020099/*****************************/
100/* Sync message class */
101/*****************************/
102enum {
103 PEER_MSG_CLASS_CONTROL = 0,
104 PEER_MSG_CLASS_ERROR,
105 PEER_MSG_CLASS_STICKTABLE = 10,
106 PEER_MSG_CLASS_RESERVED = 255,
107};
108
109/*****************************/
110/* control message types */
111/*****************************/
112enum {
113 PEER_MSG_CTRL_RESYNCREQ = 0,
114 PEER_MSG_CTRL_RESYNCFINISHED,
115 PEER_MSG_CTRL_RESYNCPARTIAL,
116 PEER_MSG_CTRL_RESYNCCONFIRM,
Frédéric Lécaille645635d2019-02-11 17:49:39 +0100117 PEER_MSG_CTRL_HEARTBEAT,
Emeric Brunb3971ab2015-05-12 18:49:09 +0200118};
119
120/*****************************/
121/* error message types */
122/*****************************/
123enum {
124 PEER_MSG_ERR_PROTOCOL = 0,
125 PEER_MSG_ERR_SIZELIMIT,
126};
127
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100128/*
129 * Parameters used by functions to build peer protocol messages. */
130struct peer_prep_params {
131 struct {
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100132 struct peer *peer;
133 } hello;
134 struct {
135 unsigned int st1;
136 } error_status;
137 struct {
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100138 struct stksess *stksess;
139 struct shared_table *shared_table;
140 unsigned int updateid;
141 int use_identifier;
142 int use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200143 struct peer *peer;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100144 } updt;
145 struct {
146 struct shared_table *shared_table;
147 } swtch;
148 struct {
149 struct shared_table *shared_table;
150 } ack;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100151 struct {
152 unsigned char head[2];
153 } control;
154 struct {
155 unsigned char head[2];
156 } error;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100157};
Emeric Brunb3971ab2015-05-12 18:49:09 +0200158
159/*******************************/
160/* stick table sync mesg types */
161/* Note: ids >= 128 contains */
162/* id message cotains data */
163/*******************************/
Olivier Houchard33992262018-10-16 18:49:26 +0200164#define PEER_MSG_STKT_UPDATE 0x80
165#define PEER_MSG_STKT_INCUPDATE 0x81
166#define PEER_MSG_STKT_DEFINE 0x82
167#define PEER_MSG_STKT_SWITCH 0x83
168#define PEER_MSG_STKT_ACK 0x84
169#define PEER_MSG_STKT_UPDATE_TIMED 0x85
170#define PEER_MSG_STKT_INCUPDATE_TIMED 0x86
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +0200171/* All the stick-table message identifiers abova have the #7 bit set */
172#define PEER_MSG_STKT_BIT 7
173#define PEER_MSG_STKT_BIT_MASK (1 << PEER_MSG_STKT_BIT)
Emeric Brun2b920a12010-09-23 18:30:22 +0200174
Frédéric Lécaille39143342019-05-24 14:32:27 +0200175/* The maximum length of an encoded data length. */
176#define PEER_MSG_ENC_LENGTH_MAXLEN 5
177
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200178/* Minimum 64-bits value encoded with 2 bytes */
179#define PEER_ENC_2BYTES_MIN 0xf0 /* 0xf0 (or 240) */
180/* 3 bytes */
181#define PEER_ENC_3BYTES_MIN ((1ULL << 11) | PEER_ENC_2BYTES_MIN) /* 0x8f0 (or 2288) */
182/* 4 bytes */
183#define PEER_ENC_4BYTES_MIN ((1ULL << 18) | PEER_ENC_3BYTES_MIN) /* 0x408f0 (or 264432) */
184/* 5 bytes */
185#define PEER_ENC_5BYTES_MIN ((1ULL << 25) | PEER_ENC_4BYTES_MIN) /* 0x20408f0 (or 33818864) */
186/* 6 bytes */
187#define PEER_ENC_6BYTES_MIN ((1ULL << 32) | PEER_ENC_5BYTES_MIN) /* 0x1020408f0 (or 4328786160) */
188/* 7 bytes */
189#define PEER_ENC_7BYTES_MIN ((1ULL << 39) | PEER_ENC_6BYTES_MIN) /* 0x81020408f0 (or 554084600048) */
190/* 8 bytes */
191#define PEER_ENC_8BYTES_MIN ((1ULL << 46) | PEER_ENC_7BYTES_MIN) /* 0x4081020408f0 (or 70922828777712) */
192/* 9 bytes */
193#define PEER_ENC_9BYTES_MIN ((1ULL << 53) | PEER_ENC_8BYTES_MIN) /* 0x204081020408f0 (or 9078122083518704) */
194/* 10 bytes */
195#define PEER_ENC_10BYTES_MIN ((1ULL << 60) | PEER_ENC_9BYTES_MIN) /* 0x10204081020408f0 (or 1161999626690365680) */
196
197/* #7 bit used to detect the last byte to be encoded */
198#define PEER_ENC_STOP_BIT 7
199/* The byte minimum value with #7 bit set */
200#define PEER_ENC_STOP_BYTE (1 << PEER_ENC_STOP_BIT)
201/* The left most number of bits set for PEER_ENC_2BYTES_MIN */
202#define PEER_ENC_2BYTES_MIN_BITS 4
203
Frédéric Lécaille39143342019-05-24 14:32:27 +0200204#define PEER_MSG_HEADER_LEN 2
205
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200206#define PEER_STKT_CACHE_MAX_ENTRIES 128
207
Emeric Brun2b920a12010-09-23 18:30:22 +0200208/**********************************/
209/* Peer Session IO handler states */
210/**********************************/
211
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100212enum {
213 PEER_SESS_ST_ACCEPT = 0, /* Initial state for session create by an accept, must be zero! */
214 PEER_SESS_ST_GETVERSION, /* Validate supported protocol version */
215 PEER_SESS_ST_GETHOST, /* Validate host ID correspond to local host id */
216 PEER_SESS_ST_GETPEER, /* Validate peer ID correspond to a known remote peer id */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100217 /* after this point, data were possibly exchanged */
218 PEER_SESS_ST_SENDSUCCESS, /* Send ret code 200 (success) and wait for message */
219 PEER_SESS_ST_CONNECT, /* Initial state for session create on a connect, push presentation into buffer */
220 PEER_SESS_ST_GETSTATUS, /* Wait for the welcome message */
221 PEER_SESS_ST_WAITMSG, /* Wait for data messages */
222 PEER_SESS_ST_EXIT, /* Exit with status code */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200223 PEER_SESS_ST_ERRPROTO, /* Send error proto message before exit */
224 PEER_SESS_ST_ERRSIZE, /* Send error size message before exit */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100225 PEER_SESS_ST_END, /* Killed session */
226};
Emeric Brun2b920a12010-09-23 18:30:22 +0200227
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100228/***************************************************/
229/* Peer Session status code - part of the protocol */
230/***************************************************/
Emeric Brun2b920a12010-09-23 18:30:22 +0200231
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100232#define PEER_SESS_SC_CONNECTCODE 100 /* connect in progress */
233#define PEER_SESS_SC_CONNECTEDCODE 110 /* tcp connect success */
Emeric Brun2b920a12010-09-23 18:30:22 +0200234
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100235#define PEER_SESS_SC_SUCCESSCODE 200 /* accept or connect successful */
Emeric Brun2b920a12010-09-23 18:30:22 +0200236
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100237#define PEER_SESS_SC_TRYAGAIN 300 /* try again later */
Emeric Brun2b920a12010-09-23 18:30:22 +0200238
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100239#define PEER_SESS_SC_ERRPROTO 501 /* error protocol */
240#define PEER_SESS_SC_ERRVERSION 502 /* unknown protocol version */
241#define PEER_SESS_SC_ERRHOST 503 /* bad host name */
242#define PEER_SESS_SC_ERRPEER 504 /* unknown peer */
Emeric Brun2b920a12010-09-23 18:30:22 +0200243
244#define PEER_SESSION_PROTO_NAME "HAProxyS"
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200245#define PEER_MAJOR_VER 2
246#define PEER_MINOR_VER 1
247#define PEER_DWNGRD_MINOR_VER 0
Emeric Brun2b920a12010-09-23 18:30:22 +0200248
Willy Tarreau6254a922019-01-29 17:45:23 +0100249static size_t proto_len = sizeof(PEER_SESSION_PROTO_NAME) - 1;
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200250struct peers *cfg_peers = NULL;
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200251static void peer_session_forceshutdown(struct peer *peer);
Emeric Brun2b920a12010-09-23 18:30:22 +0200252
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200253static struct ebpt_node *dcache_tx_insert(struct dcache *dc,
254 struct dcache_tx_entry *i);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200255static inline void flush_dcache(struct peer *peer);
256
Frédéric Lécaille95679dc2019-04-15 10:25:27 +0200257static const char *statuscode_str(int statuscode)
258{
259 switch (statuscode) {
260 case PEER_SESS_SC_CONNECTCODE:
261 return "CONN";
262 case PEER_SESS_SC_CONNECTEDCODE:
263 return "HSHK";
264 case PEER_SESS_SC_SUCCESSCODE:
265 return "ESTA";
266 case PEER_SESS_SC_TRYAGAIN:
267 return "RETR";
268 case PEER_SESS_SC_ERRPROTO:
269 return "PROT";
270 case PEER_SESS_SC_ERRVERSION:
271 return "VERS";
272 case PEER_SESS_SC_ERRHOST:
273 return "NAME";
274 case PEER_SESS_SC_ERRPEER:
275 return "UNKN";
276 default:
277 return "NONE";
278 }
279}
280
Emeric Brun18928af2017-03-29 16:32:53 +0200281/* This function encode an uint64 to 'dynamic' length format.
282 The encoded value is written at address *str, and the
283 caller must assure that size after *str is large enought.
284 At return, the *str is set at the next Byte after then
285 encoded integer. The function returns then length of the
286 encoded integer in Bytes */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200287int intencode(uint64_t i, char **str) {
288 int idx = 0;
289 unsigned char *msg;
290
Emeric Brunb3971ab2015-05-12 18:49:09 +0200291 msg = (unsigned char *)*str;
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200292 if (i < PEER_ENC_2BYTES_MIN) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200293 msg[0] = (unsigned char)i;
294 *str = (char *)&msg[idx+1];
295 return (idx+1);
296 }
297
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200298 msg[idx] =(unsigned char)i | PEER_ENC_2BYTES_MIN;
299 i = (i - PEER_ENC_2BYTES_MIN) >> PEER_ENC_2BYTES_MIN_BITS;
300 while (i >= PEER_ENC_STOP_BYTE) {
301 msg[++idx] = (unsigned char)i | PEER_ENC_STOP_BYTE;
302 i = (i - PEER_ENC_STOP_BYTE) >> PEER_ENC_STOP_BIT;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200303 }
304 msg[++idx] = (unsigned char)i;
305 *str = (char *)&msg[idx+1];
306 return (idx+1);
307}
308
309
310/* This function returns the decoded integer or 0
311 if decode failed
312 *str point on the beginning of the integer to decode
313 at the end of decoding *str point on the end of the
314 encoded integer or to null if end is reached */
Emeric Brun18928af2017-03-29 16:32:53 +0200315uint64_t intdecode(char **str, char *end)
316{
Emeric Brunb3971ab2015-05-12 18:49:09 +0200317 unsigned char *msg;
Emeric Brun18928af2017-03-29 16:32:53 +0200318 uint64_t i;
319 int shift;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200320
321 if (!*str)
322 return 0;
323
324 msg = (unsigned char *)*str;
Emeric Brun18928af2017-03-29 16:32:53 +0200325 if (msg >= (unsigned char *)end)
326 goto fail;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200327
Emeric Brun18928af2017-03-29 16:32:53 +0200328 i = *(msg++);
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200329 if (i >= PEER_ENC_2BYTES_MIN) {
330 shift = PEER_ENC_2BYTES_MIN_BITS;
Emeric Brun18928af2017-03-29 16:32:53 +0200331 do {
332 if (msg >= (unsigned char *)end)
333 goto fail;
334 i += (uint64_t)*msg << shift;
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200335 shift += PEER_ENC_STOP_BIT;
336 } while (*(msg++) >= PEER_ENC_STOP_BYTE);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200337 }
Frédéric Lécaillea8725ec2019-01-22 10:31:39 +0100338 *str = (char *)msg;
339 return i;
Emeric Brun18928af2017-03-29 16:32:53 +0200340
Frédéric Lécaillea8725ec2019-01-22 10:31:39 +0100341 fail:
342 *str = NULL;
343 return 0;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200344}
Emeric Brun2b920a12010-09-23 18:30:22 +0200345
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100346/*
347 * Build a "hello" peer protocol message.
348 * Return the number of written bytes written to build this messages if succeeded,
349 * 0 if not.
350 */
351static int peer_prepare_hellomsg(char *msg, size_t size, struct peer_prep_params *p)
352{
353 int min_ver, ret;
354 struct peer *peer;
355
356 peer = p->hello.peer;
357 min_ver = (peer->flags & PEER_F_DWNGRD) ? PEER_DWNGRD_MINOR_VER : PEER_MINOR_VER;
358 /* Prepare headers */
359 ret = snprintf(msg, size, PEER_SESSION_PROTO_NAME " %u.%u\n%s\n%s %d %d\n",
360 PEER_MAJOR_VER, min_ver, peer->id, localpeer, (int)getpid(), relative_pid);
361 if (ret >= size)
362 return 0;
363
364 return ret;
365}
366
367/*
368 * Build a "handshake succeeded" status message.
369 * Return the number of written bytes written to build this messages if succeeded,
370 * 0 if not.
371 */
372static int peer_prepare_status_successmsg(char *msg, size_t size, struct peer_prep_params *p)
373{
374 int ret;
375
376 ret = snprintf(msg, size, "%d\n", PEER_SESS_SC_SUCCESSCODE);
377 if (ret >= size)
378 return 0;
379
380 return ret;
381}
382
383/*
384 * Build an error status message.
385 * Return the number of written bytes written to build this messages if succeeded,
386 * 0 if not.
387 */
388static int peer_prepare_status_errormsg(char *msg, size_t size, struct peer_prep_params *p)
389{
390 int ret;
391 unsigned int st1;
392
393 st1 = p->error_status.st1;
394 ret = snprintf(msg, size, "%d\n", st1);
395 if (ret >= size)
396 return 0;
397
398 return ret;
399}
400
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200401/* Set the stick-table UPDATE message type byte at <msg_type> address,
402 * depending on <use_identifier> and <use_timed> boolean parameters.
403 * Always successful.
404 */
405static inline void peer_set_update_msg_type(char *msg_type, int use_identifier, int use_timed)
406{
407 if (use_timed) {
408 if (use_identifier)
409 *msg_type = PEER_MSG_STKT_UPDATE_TIMED;
410 else
411 *msg_type = PEER_MSG_STKT_INCUPDATE_TIMED;
412 }
413 else {
414 if (use_identifier)
415 *msg_type = PEER_MSG_STKT_UPDATE;
416 else
417 *msg_type = PEER_MSG_STKT_INCUPDATE;
418 }
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200419}
Emeric Brun2b920a12010-09-23 18:30:22 +0200420/*
Emeric Brunb3971ab2015-05-12 18:49:09 +0200421 * This prepare the data update message on the stick session <ts>, <st> is the considered
422 * stick table.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800423 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200424 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
425 * check size)
Emeric Brun2b920a12010-09-23 18:30:22 +0200426 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100427static int peer_prepare_updatemsg(char *msg, size_t size, struct peer_prep_params *p)
Emeric Brun2b920a12010-09-23 18:30:22 +0200428{
429 uint32_t netinteger;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200430 unsigned short datalen;
431 char *cursor, *datamsg;
Emeric Brun94900952015-06-11 18:25:54 +0200432 unsigned int data_type;
433 void *data_ptr;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100434 struct stksess *ts;
435 struct shared_table *st;
436 unsigned int updateid;
437 int use_identifier;
438 int use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200439 struct peer *peer;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100440
441 ts = p->updt.stksess;
442 st = p->updt.shared_table;
443 updateid = p->updt.updateid;
444 use_identifier = p->updt.use_identifier;
445 use_timed = p->updt.use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200446 peer = p->updt.peer;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200447
Frédéric Lécaille0e8db972019-05-24 14:34:34 +0200448 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200449
Emeric Brun2b920a12010-09-23 18:30:22 +0200450 /* construct message */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200451
452 /* check if we need to send the update identifer */
Emeric Brun819fc6f2017-06-13 19:37:32 +0200453 if (!st->last_pushed || updateid < st->last_pushed || ((updateid - st->last_pushed) != 1)) {
Emeric Bruna6a09982015-09-22 15:34:19 +0200454 use_identifier = 1;
Emeric Brun2b920a12010-09-23 18:30:22 +0200455 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200456
457 /* encode update identifier if needed */
458 if (use_identifier) {
Emeric Brun819fc6f2017-06-13 19:37:32 +0200459 netinteger = htonl(updateid);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200460 memcpy(cursor, &netinteger, sizeof(netinteger));
461 cursor += sizeof(netinteger);
Emeric Brun2b920a12010-09-23 18:30:22 +0200462 }
463
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200464 if (use_timed) {
465 netinteger = htonl(tick_remain(now_ms, ts->expire));
466 memcpy(cursor, &netinteger, sizeof(netinteger));
467 cursor += sizeof(netinteger);
468 }
469
Emeric Brunb3971ab2015-05-12 18:49:09 +0200470 /* encode the key */
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +0200471 if (st->table->type == SMP_T_STR) {
Emeric Brun2b920a12010-09-23 18:30:22 +0200472 int stlen = strlen((char *)ts->key.key);
473
Emeric Brunb3971ab2015-05-12 18:49:09 +0200474 intencode(stlen, &cursor);
475 memcpy(cursor, ts->key.key, stlen);
476 cursor += stlen;
Emeric Brun2b920a12010-09-23 18:30:22 +0200477 }
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +0200478 else if (st->table->type == SMP_T_SINT) {
Emeric Brun2b920a12010-09-23 18:30:22 +0200479 netinteger = htonl(*((uint32_t *)ts->key.key));
Emeric Brunb3971ab2015-05-12 18:49:09 +0200480 memcpy(cursor, &netinteger, sizeof(netinteger));
481 cursor += sizeof(netinteger);
Emeric Brun2b920a12010-09-23 18:30:22 +0200482 }
483 else {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200484 memcpy(cursor, ts->key.key, st->table->key_size);
485 cursor += st->table->key_size;
Emeric Brun2b920a12010-09-23 18:30:22 +0200486 }
487
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100488 HA_RWLOCK_RDLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200489 /* encode values */
Emeric Brun94900952015-06-11 18:25:54 +0200490 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200491
Emeric Brun94900952015-06-11 18:25:54 +0200492 data_ptr = stktable_data_ptr(st->table, ts, data_type);
493 if (data_ptr) {
494 switch (stktable_data_types[data_type].std_type) {
495 case STD_T_SINT: {
496 int data;
497
498 data = stktable_data_cast(data_ptr, std_t_sint);
499 intencode(data, &cursor);
500 break;
501 }
502 case STD_T_UINT: {
503 unsigned int data;
504
505 data = stktable_data_cast(data_ptr, std_t_uint);
506 intencode(data, &cursor);
507 break;
508 }
509 case STD_T_ULL: {
510 unsigned long long data;
511
512 data = stktable_data_cast(data_ptr, std_t_ull);
513 intencode(data, &cursor);
514 break;
515 }
516 case STD_T_FRQP: {
517 struct freq_ctr_period *frqp;
518
519 frqp = &stktable_data_cast(data_ptr, std_t_frqp);
520 intencode((unsigned int)(now_ms - frqp->curr_tick), &cursor);
521 intencode(frqp->curr_ctr, &cursor);
522 intencode(frqp->prev_ctr, &cursor);
523 break;
524 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200525 case STD_T_DICT: {
526 struct dict_entry *de;
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200527 struct ebpt_node *cached_de;
Willy Tarreau237f8ae2019-06-06 16:40:43 +0200528 struct dcache_tx_entry cde = { };
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200529 char *beg, *end;
530 size_t value_len, data_len;
531 struct dcache *dc;
532
533 de = stktable_data_cast(data_ptr, std_t_dict);
534 if (!de)
535 break;
536
537 dc = peer->dcache;
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200538 cde.entry.key = de;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200539 cached_de = dcache_tx_insert(dc, &cde);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200540 /* Leave enough room to encode the remaining data length. */
541 end = beg = cursor + PEER_MSG_ENC_LENGTH_MAXLEN;
542 /* Encode the dictionary entry key */
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200543 intencode(cde.id + 1, &end);
544 if (cached_de != &cde.entry) {
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200545 /* Encode the length of the dictionary entry data */
546 value_len = strlen(de->value.key);
547 intencode(value_len, &end);
548 /* Copy the data */
549 memcpy(end, de->value.key, value_len);
550 end += value_len;
551 }
552 /* Encode the length of the data */
553 data_len = end - beg;
554 intencode(data_len, &cursor);
555 memmove(cursor, beg, data_len);
556 cursor += data_len;
557 break;
558 }
Emeric Brun94900952015-06-11 18:25:54 +0200559 }
560 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200561 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100562 HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200563
564 /* Compute datalen */
565 datalen = (cursor - datamsg);
566
567 /* prepare message header */
568 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200569 peer_set_update_msg_type(&msg[1], use_identifier, use_timed);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200570 cursor = &msg[2];
571 intencode(datalen, &cursor);
572
573 /* move data after header */
574 memmove(cursor, datamsg, datalen);
575
576 /* return header size + data_len */
577 return (cursor - msg) + datalen;
578}
579
580/*
581 * This prepare the switch table message to targeted share table <st>.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800582 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200583 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
584 * check size)
585 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100586static int peer_prepare_switchmsg(char *msg, size_t size, struct peer_prep_params *params)
Emeric Brunb3971ab2015-05-12 18:49:09 +0200587{
588 int len;
589 unsigned short datalen;
Willy Tarreau83061a82018-07-13 11:56:34 +0200590 struct buffer *chunk;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200591 char *cursor, *datamsg, *chunkp, *chunkq;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200592 uint64_t data = 0;
Emeric Brun94900952015-06-11 18:25:54 +0200593 unsigned int data_type;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100594 struct shared_table *st;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200595
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100596 st = params->swtch.shared_table;
Frédéric Lécaille39143342019-05-24 14:32:27 +0200597 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200598
599 /* Encode data */
600
601 /* encode local id */
602 intencode(st->local_id, &cursor);
603
604 /* encode table name */
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100605 len = strlen(st->table->nid);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200606 intencode(len, &cursor);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100607 memcpy(cursor, st->table->nid, len);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200608 cursor += len;
609
610 /* encode table type */
611
612 intencode(st->table->type, &cursor);
613
614 /* encode table key size */
615 intencode(st->table->key_size, &cursor);
616
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200617 chunk = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200618 chunkp = chunkq = chunk->area;
Emeric Brun94900952015-06-11 18:25:54 +0200619 /* encode available known data types in table */
620 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
621 if (st->table->data_ofs[data_type]) {
622 switch (stktable_data_types[data_type].std_type) {
623 case STD_T_SINT:
624 case STD_T_UINT:
625 case STD_T_ULL:
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200626 case STD_T_DICT:
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200627 data |= 1 << data_type;
628 break;
Emeric Brun94900952015-06-11 18:25:54 +0200629 case STD_T_FRQP:
630 data |= 1 << data_type;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200631 intencode(data_type, &chunkq);
632 intencode(st->table->data_arg[data_type].u, &chunkq);
Emeric Brun94900952015-06-11 18:25:54 +0200633 break;
634 }
635 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200636 }
637 intencode(data, &cursor);
638
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200639 /* Encode stick-table entries duration. */
640 intencode(st->table->expire, &cursor);
641
642 if (chunkq > chunkp) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200643 chunk->data = chunkq - chunkp;
644 memcpy(cursor, chunk->area, chunk->data);
645 cursor += chunk->data;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200646 }
647
Emeric Brunb3971ab2015-05-12 18:49:09 +0200648 /* Compute datalen */
649 datalen = (cursor - datamsg);
Emeric Brun2b920a12010-09-23 18:30:22 +0200650
Emeric Brunb3971ab2015-05-12 18:49:09 +0200651 /* prepare message header */
652 msg[0] = PEER_MSG_CLASS_STICKTABLE;
653 msg[1] = PEER_MSG_STKT_DEFINE;
654 cursor = &msg[2];
655 intencode(datalen, &cursor);
Emeric Brun2b920a12010-09-23 18:30:22 +0200656
Emeric Brunb3971ab2015-05-12 18:49:09 +0200657 /* move data after header */
658 memmove(cursor, datamsg, datalen);
659
660 /* return header size + data_len */
661 return (cursor - msg) + datalen;
Emeric Brun2b920a12010-09-23 18:30:22 +0200662}
663
Emeric Brunb3971ab2015-05-12 18:49:09 +0200664/*
665 * This prepare the acknowledge message on the stick session <ts>, <st> is the considered
666 * stick table.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800667 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200668 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
669 * check size)
670 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100671static int peer_prepare_ackmsg(char *msg, size_t size, struct peer_prep_params *p)
Emeric Brunb3971ab2015-05-12 18:49:09 +0200672{
673 unsigned short datalen;
674 char *cursor, *datamsg;
675 uint32_t netinteger;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100676 struct shared_table *st;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200677
Frédéric Lécaille39143342019-05-24 14:32:27 +0200678 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200679
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100680 st = p->ack.shared_table;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200681 intencode(st->remote_id, &cursor);
682 netinteger = htonl(st->last_get);
683 memcpy(cursor, &netinteger, sizeof(netinteger));
684 cursor += sizeof(netinteger);
685
686 /* Compute datalen */
687 datalen = (cursor - datamsg);
688
689 /* prepare message header */
690 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Emeric Brune1ab8082015-08-21 11:48:54 +0200691 msg[1] = PEER_MSG_STKT_ACK;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200692 cursor = &msg[2];
693 intencode(datalen, &cursor);
694
695 /* move data after header */
696 memmove(cursor, datamsg, datalen);
697
698 /* return header size + data_len */
699 return (cursor - msg) + datalen;
700}
Emeric Brun2b920a12010-09-23 18:30:22 +0200701
702/*
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200703 * Function to deinit connected peer
704 */
705void __peer_session_deinit(struct peer *peer)
706{
707 struct stream_interface *si;
708 struct stream *s;
709 struct peers *peers;
710
711 if (!peer->appctx)
712 return;
713
714 si = peer->appctx->owner;
715 if (!si)
716 return;
717
718 s = si_strm(si);
719 if (!s)
720 return;
721
722 peers = strm_fe(s)->parent;
723 if (!peers)
724 return;
725
726 if (peer->appctx->st0 == PEER_SESS_ST_WAITMSG)
727 HA_ATOMIC_SUB(&connected_peers, 1);
728
729 HA_ATOMIC_SUB(&active_peers, 1);
730
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200731 flush_dcache(peer);
732
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200733 /* Re-init current table pointers to force announcement on re-connect */
734 peer->remote_table = peer->last_local_table = NULL;
735 peer->appctx = NULL;
736 if (peer->flags & PEER_F_LEARN_ASSIGN) {
737 /* unassign current peer for learning */
738 peer->flags &= ~(PEER_F_LEARN_ASSIGN);
739 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
740
741 /* reschedule a resync */
742 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000));
743 }
744 /* reset teaching and learning flags to 0 */
745 peer->flags &= PEER_TEACH_RESET;
746 peer->flags &= PEER_LEARN_RESET;
747 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
748}
749
750/*
Emeric Brun2b920a12010-09-23 18:30:22 +0200751 * Callback to release a session with a peer
752 */
Willy Tarreau00a37f02015-04-13 12:05:19 +0200753static void peer_session_release(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +0200754{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200755 struct peer *peer = appctx->ctx.peers.ptr;
Emeric Brun2b920a12010-09-23 18:30:22 +0200756
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100757 /* appctx->ctx.peers.ptr is not a peer session */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100758 if (appctx->st0 < PEER_SESS_ST_SENDSUCCESS)
Emeric Brun2b920a12010-09-23 18:30:22 +0200759 return;
760
761 /* peer session identified */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200762 if (peer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100763 HA_SPIN_LOCK(PEER_LOCK, &peer->lock);
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200764 if (peer->appctx == appctx)
765 __peer_session_deinit(peer);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100766 HA_SPIN_UNLOCK(PEER_LOCK, &peer->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +0200767 }
768}
769
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200770/* Retrieve the major and minor versions of peers protocol
771 * announced by a remote peer. <str> is a null-terminated
772 * string with the following format: "<maj_ver>.<min_ver>".
773 */
774static int peer_get_version(const char *str,
775 unsigned int *maj_ver, unsigned int *min_ver)
776{
777 unsigned int majv, minv;
778 const char *pos, *saved;
779 const char *end;
780
781 saved = pos = str;
782 end = str + strlen(str);
783
784 majv = read_uint(&pos, end);
785 if (saved == pos || *pos++ != '.')
786 return -1;
787
788 saved = pos;
789 minv = read_uint(&pos, end);
790 if (saved == pos || pos != end)
791 return -1;
792
793 *maj_ver = majv;
794 *min_ver = minv;
795
796 return 0;
797}
Emeric Brun2b920a12010-09-23 18:30:22 +0200798
799/*
Frédéric Lécaillece025572019-01-21 13:38:06 +0100800 * Parse a line terminated by an optional '\r' character, followed by a mandatory
801 * '\n' character.
802 * Returns 1 if succeeded or 0 if a '\n' character could not be found, and -1 if
803 * a line could not be read because the communication channel is closed.
804 */
805static inline int peer_getline(struct appctx *appctx)
806{
807 int n;
808 struct stream_interface *si = appctx->owner;
809
810 n = co_getline(si_oc(si), trash.area, trash.size);
811 if (!n)
812 return 0;
813
814 if (n < 0 || trash.area[n - 1] != '\n') {
815 appctx->st0 = PEER_SESS_ST_END;
816 return -1;
817 }
818
819 if (n > 1 && (trash.area[n - 2] == '\r'))
820 trash.area[n - 2] = 0;
821 else
822 trash.area[n - 1] = 0;
823
824 co_skip(si_oc(si), n);
825
826 return n;
827}
828
829/*
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100830 * Send a message after having called <peer_prepare_msg> to build it.
831 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
832 * Returns -1 if there was not enough room left to send the message,
833 * any other negative returned value must be considered as an error with an appcxt st0
834 * returned value equal to PEER_SESS_ST_END.
835 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100836static inline int peer_send_msg(struct appctx *appctx,
837 int (*peer_prepare_msg)(char *, size_t, struct peer_prep_params *),
838 struct peer_prep_params *params)
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100839{
840 int ret, msglen;
841 struct stream_interface *si = appctx->owner;
842
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100843 msglen = peer_prepare_msg(trash.area, trash.size, params);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100844 if (!msglen) {
845 /* internal error: message does not fit in trash */
846 appctx->st0 = PEER_SESS_ST_END;
847 return 0;
848 }
849
850 /* message to buffer */
851 ret = ci_putblk(si_ic(si), trash.area, msglen);
852 if (ret <= 0) {
853 if (ret == -1) {
854 /* No more write possible */
855 si_rx_room_blk(si);
856 return -1;
857 }
858 appctx->st0 = PEER_SESS_ST_END;
859 }
860
861 return ret;
862}
863
864/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100865 * Send a hello message.
866 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
867 * Returns -1 if there was not enough room left to send the message,
868 * any other negative returned value must be considered as an error with an appcxt st0
869 * returned value equal to PEER_SESS_ST_END.
870 */
871static inline int peer_send_hellomsg(struct appctx *appctx, struct peer *peer)
872{
873 struct peer_prep_params p = {
874 .hello.peer = peer,
875 };
876
877 return peer_send_msg(appctx, peer_prepare_hellomsg, &p);
878}
879
880/*
881 * Send a success peer handshake status message.
882 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
883 * Returns -1 if there was not enough room left to send the message,
884 * any other negative returned value must be considered as an error with an appcxt st0
885 * returned value equal to PEER_SESS_ST_END.
886 */
887static inline int peer_send_status_successmsg(struct appctx *appctx)
888{
889 return peer_send_msg(appctx, peer_prepare_status_successmsg, NULL);
890}
891
892/*
893 * Send a peer handshake status error message.
894 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
895 * Returns -1 if there was not enough room left to send the message,
896 * any other negative returned value must be considered as an error with an appcxt st0
897 * returned value equal to PEER_SESS_ST_END.
898 */
899static inline int peer_send_status_errormsg(struct appctx *appctx)
900{
901 struct peer_prep_params p = {
902 .error_status.st1 = appctx->st1,
903 };
904
905 return peer_send_msg(appctx, peer_prepare_status_errormsg, &p);
906}
907
908/*
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100909 * Send a stick-table switch message.
910 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
911 * Returns -1 if there was not enough room left to send the message,
912 * any other negative returned value must be considered as an error with an appcxt st0
913 * returned value equal to PEER_SESS_ST_END.
914 */
915static inline int peer_send_switchmsg(struct shared_table *st, struct appctx *appctx)
916{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100917 struct peer_prep_params p = {
918 .swtch.shared_table = st,
919 };
920
921 return peer_send_msg(appctx, peer_prepare_switchmsg, &p);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100922}
923
924/*
925 * Send a stick-table update acknowledgement message.
926 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
927 * Returns -1 if there was not enough room left to send the message,
928 * any other negative returned value must be considered as an error with an appcxt st0
929 * returned value equal to PEER_SESS_ST_END.
930 */
931static inline int peer_send_ackmsg(struct shared_table *st, struct appctx *appctx)
932{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100933 struct peer_prep_params p = {
934 .ack.shared_table = st,
935 };
936
937 return peer_send_msg(appctx, peer_prepare_ackmsg, &p);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100938}
939
940/*
Frédéric Lécaille87f554c2019-01-22 17:26:50 +0100941 * Send a stick-table update message.
942 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
943 * Returns -1 if there was not enough room left to send the message,
944 * any other negative returned value must be considered as an error with an appcxt st0
945 * returned value equal to PEER_SESS_ST_END.
946 */
947static inline int peer_send_updatemsg(struct shared_table *st, struct appctx *appctx, struct stksess *ts,
948 unsigned int updateid, int use_identifier, int use_timed)
949{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100950 struct peer_prep_params p = {
951 .updt.stksess = ts,
952 .updt.shared_table = st,
953 .updt.updateid = updateid,
954 .updt.use_identifier = use_identifier,
955 .updt.use_timed = use_timed,
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200956 .updt.peer = appctx->ctx.peers.ptr,
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100957 };
958
959 return peer_send_msg(appctx, peer_prepare_updatemsg, &p);
Frédéric Lécaille87f554c2019-01-22 17:26:50 +0100960}
961
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100962/*
963 * Build a peer protocol control class message.
964 * Returns the number of written bytes used to build the message if succeeded,
965 * 0 if not.
966 */
967static int peer_prepare_control_msg(char *msg, size_t size, struct peer_prep_params *p)
968{
969 if (size < sizeof p->control.head)
970 return 0;
971
972 msg[0] = p->control.head[0];
973 msg[1] = p->control.head[1];
974
975 return 2;
976}
Frédéric Lécaille6a8303d2019-01-22 22:25:17 +0100977
978/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100979 * Send a stick-table synchronization request message.
980 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
981 * Returns -1 if there was not enough room left to send the message,
982 * any other negative returned value must be considered as an error with an appctx st0
983 * returned value equal to PEER_SESS_ST_END.
984 */
985static inline int peer_send_resync_reqmsg(struct appctx *appctx)
986{
987 struct peer_prep_params p = {
988 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCREQ, },
989 };
990
991 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
992}
993
994/*
995 * Send a stick-table synchronization confirmation message.
996 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
997 * Returns -1 if there was not enough room left to send the message,
998 * any other negative returned value must be considered as an error with an appctx st0
999 * returned value equal to PEER_SESS_ST_END.
1000 */
1001static inline int peer_send_resync_confirmsg(struct appctx *appctx)
1002{
1003 struct peer_prep_params p = {
1004 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCCONFIRM, },
1005 };
1006
1007 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1008}
1009
1010/*
1011 * Send a stick-table synchronization finished message.
1012 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1013 * Returns -1 if there was not enough room left to send the message,
1014 * any other negative returned value must be considered as an error with an appctx st0
1015 * returned value equal to PEER_SESS_ST_END.
1016 */
1017static inline int peer_send_resync_finishedmsg(struct appctx *appctx, struct peer *peer)
1018{
1019 struct peer_prep_params p = {
1020 .control.head = { PEER_MSG_CLASS_CONTROL, },
1021 };
1022
1023 p.control.head[1] = (peer->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FINISHED ?
1024 PEER_MSG_CTRL_RESYNCFINISHED : PEER_MSG_CTRL_RESYNCPARTIAL;
1025
1026 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1027}
1028
1029/*
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001030 * Send a heartbeat message.
1031 * Return 0 if the message could not be built modifying the appctx st0 to PEER_SESS_ST_END value.
1032 * Returns -1 if there was not enough room left to send the message,
1033 * any other negative returned value must be considered as an error with an appctx st0
1034 * returned value equal to PEER_SESS_ST_END.
1035 */
1036static inline int peer_send_heartbeatmsg(struct appctx *appctx)
1037{
1038 struct peer_prep_params p = {
1039 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_HEARTBEAT, },
1040 };
1041
1042 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1043}
1044
1045/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001046 * Build a peer protocol error class message.
1047 * Returns the number of written bytes used to build the message if succeeded,
1048 * 0 if not.
1049 */
1050static int peer_prepare_error_msg(char *msg, size_t size, struct peer_prep_params *p)
1051{
1052 if (size < sizeof p->error.head)
1053 return 0;
1054
1055 msg[0] = p->error.head[0];
1056 msg[1] = p->error.head[1];
1057
1058 return 2;
1059}
1060
1061/*
1062 * Send a "size limit reached" error message.
1063 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1064 * Returns -1 if there was not enough room left to send the message,
1065 * any other negative returned value must be considered as an error with an appctx st0
1066 * returned value equal to PEER_SESS_ST_END.
1067 */
1068static inline int peer_send_error_size_limitmsg(struct appctx *appctx)
1069{
1070 struct peer_prep_params p = {
1071 .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_SIZELIMIT, },
1072 };
1073
1074 return peer_send_msg(appctx, peer_prepare_error_msg, &p);
1075}
1076
1077/*
1078 * Send a "peer protocol" error message.
1079 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1080 * Returns -1 if there was not enough room left to send the message,
1081 * any other negative returned value must be considered as an error with an appctx st0
1082 * returned value equal to PEER_SESS_ST_END.
1083 */
1084static inline int peer_send_error_protomsg(struct appctx *appctx)
1085{
1086 struct peer_prep_params p = {
1087 .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_PROTOCOL, },
1088 };
1089
1090 return peer_send_msg(appctx, peer_prepare_error_msg, &p);
1091}
1092
1093/*
Frédéric Lécaille6a8303d2019-01-22 22:25:17 +01001094 * Function used to lookup for recent stick-table updates associated with
1095 * <st> shared stick-table when a lesson must be taught a peer (PEER_F_LEARN_ASSIGN flag set).
1096 */
1097static inline struct stksess *peer_teach_process_stksess_lookup(struct shared_table *st)
1098{
1099 struct eb32_node *eb;
1100
1101 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1102 if (!eb) {
1103 eb = eb32_first(&st->table->updates);
1104 if (!eb || ((int)(eb->key - st->last_pushed) <= 0)) {
1105 st->table->commitupdate = st->last_pushed = st->table->localupdate;
1106 return NULL;
1107 }
1108 }
1109
1110 if ((int)(eb->key - st->table->localupdate) > 0) {
1111 st->table->commitupdate = st->last_pushed = st->table->localupdate;
1112 return NULL;
1113 }
1114
1115 return eb32_entry(eb, struct stksess, upd);
1116}
1117
1118/*
1119 * Function used to lookup for recent stick-table updates associated with
1120 * <st> shared stick-table during teach state 1 step.
1121 */
1122static inline struct stksess *peer_teach_stage1_stksess_lookup(struct shared_table *st)
1123{
1124 struct eb32_node *eb;
1125
1126 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1127 if (!eb) {
1128 st->flags |= SHTABLE_F_TEACH_STAGE1;
1129 eb = eb32_first(&st->table->updates);
1130 if (eb)
1131 st->last_pushed = eb->key - 1;
1132 return NULL;
1133 }
1134
1135 return eb32_entry(eb, struct stksess, upd);
1136}
1137
1138/*
1139 * Function used to lookup for recent stick-table updates associated with
1140 * <st> shared stick-table during teach state 2 step.
1141 */
1142static inline struct stksess *peer_teach_stage2_stksess_lookup(struct shared_table *st)
1143{
1144 struct eb32_node *eb;
1145
1146 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1147 if (!eb || eb->key > st->teaching_origin) {
1148 st->flags |= SHTABLE_F_TEACH_STAGE2;
1149 return NULL;
1150 }
1151
1152 return eb32_entry(eb, struct stksess, upd);
1153}
1154
1155/*
1156 * Generic function to emit update messages for <st> stick-table when a lesson must
1157 * be taught to the peer <p>.
1158 * <locked> must be set to 1 if the shared table <st> is already locked when entering
1159 * this function, 0 if not.
1160 *
1161 * This function temporary unlock/lock <st> when it sends stick-table updates or
1162 * when decrementing its refcount in case of any error when it sends this updates.
1163 *
1164 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1165 * Returns -1 if there was not enough room left to send the message,
1166 * any other negative returned value must be considered as an error with an appcxt st0
1167 * returned value equal to PEER_SESS_ST_END.
1168 * If it returns 0 or -1, this function leave <st> locked if already locked when entering this function
1169 * unlocked if not already locked when entering this function.
1170 */
1171static inline int peer_send_teachmsgs(struct appctx *appctx, struct peer *p,
1172 struct stksess *(*peer_stksess_lookup)(struct shared_table *),
1173 struct shared_table *st, int locked)
1174{
1175 int ret, new_pushed, use_timed;
1176
1177 ret = 1;
1178 use_timed = 0;
1179 if (st != p->last_local_table) {
1180 ret = peer_send_switchmsg(st, appctx);
1181 if (ret <= 0)
1182 return ret;
1183
1184 p->last_local_table = st;
1185 }
1186
1187 if (peer_stksess_lookup != peer_teach_process_stksess_lookup)
1188 use_timed = !(p->flags & PEER_F_DWNGRD);
1189
1190 /* We force new pushed to 1 to force identifier in update message */
1191 new_pushed = 1;
1192
1193 if (!locked)
1194 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1195
1196 while (1) {
1197 struct stksess *ts;
1198 unsigned updateid;
1199
1200 /* push local updates */
1201 ts = peer_stksess_lookup(st);
1202 if (!ts)
1203 break;
1204
1205 updateid = ts->upd.key;
1206 ts->ref_cnt++;
1207 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1208
1209 ret = peer_send_updatemsg(st, appctx, ts, updateid, new_pushed, use_timed);
1210 if (ret <= 0) {
1211 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1212 ts->ref_cnt--;
1213 if (!locked)
1214 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1215 return ret;
1216 }
1217
1218 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1219 ts->ref_cnt--;
1220 st->last_pushed = updateid;
1221
1222 if (peer_stksess_lookup == peer_teach_process_stksess_lookup &&
1223 (int)(st->last_pushed - st->table->commitupdate) > 0)
1224 st->table->commitupdate = st->last_pushed;
1225
1226 /* identifier may not needed in next update message */
1227 new_pushed = 0;
1228 }
1229
1230 out:
1231 if (!locked)
1232 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1233 return 1;
1234}
1235
1236/*
1237 * Function to emit update messages for <st> stick-table when a lesson must
1238 * be taught to the peer <p> (PEER_F_LEARN_ASSIGN flag set).
1239 *
1240 * Note that <st> shared stick-table is locked when calling this function.
1241 *
1242 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1243 * Returns -1 if there was not enough room left to send the message,
1244 * any other negative returned value must be considered as an error with an appcxt st0
1245 * returned value equal to PEER_SESS_ST_END.
1246 */
1247static inline int peer_send_teach_process_msgs(struct appctx *appctx, struct peer *p,
1248 struct shared_table *st)
1249{
1250 return peer_send_teachmsgs(appctx, p, peer_teach_process_stksess_lookup, st, 1);
1251}
1252
1253/*
1254 * Function to emit update messages for <st> stick-table when a lesson must
1255 * be taught to the peer <p> during teach state 1 step.
1256 *
1257 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1258 * Returns -1 if there was not enough room left to send the message,
1259 * any other negative returned value must be considered as an error with an appcxt st0
1260 * returned value equal to PEER_SESS_ST_END.
1261 */
1262static inline int peer_send_teach_stage1_msgs(struct appctx *appctx, struct peer *p,
1263 struct shared_table *st)
1264{
1265 return peer_send_teachmsgs(appctx, p, peer_teach_stage1_stksess_lookup, st, 0);
1266}
1267
1268/*
1269 * Function to emit update messages for <st> stick-table when a lesson must
1270 * be taught to the peer <p> during teach state 1 step.
1271 *
1272 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1273 * Returns -1 if there was not enough room left to send the message,
1274 * any other negative returned value must be considered as an error with an appcxt st0
1275 * returned value equal to PEER_SESS_ST_END.
1276 */
1277static inline int peer_send_teach_stage2_msgs(struct appctx *appctx, struct peer *p,
1278 struct shared_table *st)
1279{
1280 return peer_send_teachmsgs(appctx, p, peer_teach_stage2_stksess_lookup, st, 0);
1281}
1282
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001283
1284/*
1285 * Function used to parse a stick-table update message after it has been received
1286 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1287 * receipt buffer with <msg_end> being position of the end of the stick-table message.
1288 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1289 * was encountered.
1290 * <exp> must be set if the stick-table entry expires.
1291 * <updt> must be set for PEER_MSG_STKT_UPDATE or PEER_MSG_STKT_UPDATE_TIMED stick-table
1292 * messages, in this case the stick-table udpate message is received with a stick-table
1293 * update ID.
1294 * <totl> is the length of the stick-table update message computed upon receipt.
1295 */
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001296static int peer_treat_updatemsg(struct appctx *appctx, struct peer *p, int updt, int exp,
1297 char **msg_cur, char *msg_end, int msg_len, int totl)
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001298{
1299 struct stream_interface *si = appctx->owner;
1300 struct shared_table *st = p->remote_table;
1301 struct stksess *ts, *newts;
1302 uint32_t update;
1303 int expire;
1304 unsigned int data_type;
1305 void *data_ptr;
1306
1307 /* Here we have data message */
1308 if (!st)
1309 goto ignore_msg;
1310
1311 expire = MS_TO_TICKS(st->table->expire);
1312
1313 if (updt) {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001314 if (msg_len < sizeof(update))
1315 goto malformed_exit;
1316
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001317 memcpy(&update, *msg_cur, sizeof(update));
1318 *msg_cur += sizeof(update);
1319 st->last_get = htonl(update);
1320 }
1321 else {
1322 st->last_get++;
1323 }
1324
1325 if (exp) {
1326 size_t expire_sz = sizeof expire;
1327
Willy Tarreau1e82a142019-01-29 11:08:06 +01001328 if (*msg_cur + expire_sz > msg_end)
1329 goto malformed_exit;
1330
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001331 memcpy(&expire, *msg_cur, expire_sz);
1332 *msg_cur += expire_sz;
1333 expire = ntohl(expire);
1334 }
1335
1336 newts = stksess_new(st->table, NULL);
1337 if (!newts)
1338 goto ignore_msg;
1339
1340 if (st->table->type == SMP_T_STR) {
1341 unsigned int to_read, to_store;
1342
1343 to_read = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001344 if (!*msg_cur)
1345 goto malformed_free_newts;
1346
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001347 to_store = MIN(to_read, st->table->key_size - 1);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001348 if (*msg_cur + to_store > msg_end)
1349 goto malformed_free_newts;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001350
1351 memcpy(newts->key.key, *msg_cur, to_store);
1352 newts->key.key[to_store] = 0;
1353 *msg_cur += to_read;
1354 }
1355 else if (st->table->type == SMP_T_SINT) {
1356 unsigned int netinteger;
1357
Willy Tarreau1e82a142019-01-29 11:08:06 +01001358 if (*msg_cur + sizeof(netinteger) > msg_end)
1359 goto malformed_free_newts;
1360
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001361 memcpy(&netinteger, *msg_cur, sizeof(netinteger));
1362 netinteger = ntohl(netinteger);
1363 memcpy(newts->key.key, &netinteger, sizeof(netinteger));
1364 *msg_cur += sizeof(netinteger);
1365 }
1366 else {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001367 if (*msg_cur + st->table->key_size > msg_end)
1368 goto malformed_free_newts;
1369
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001370 memcpy(newts->key.key, *msg_cur, st->table->key_size);
1371 *msg_cur += st->table->key_size;
1372 }
1373
1374 /* lookup for existing entry */
1375 ts = stktable_set_entry(st->table, newts);
1376 if (ts != newts) {
1377 stksess_free(st->table, newts);
1378 newts = NULL;
1379 }
1380
1381 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
1382
1383 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001384 uint64_t decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001385
1386 if (!((1 << data_type) & st->remote_data))
1387 continue;
1388
Willy Tarreau1e82a142019-01-29 11:08:06 +01001389 decoded_int = intdecode(msg_cur, msg_end);
1390 if (!*msg_cur)
1391 goto malformed_unlock;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001392
Willy Tarreau1e82a142019-01-29 11:08:06 +01001393 switch (stktable_data_types[data_type].std_type) {
1394 case STD_T_SINT:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001395 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1396 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001397 stktable_data_cast(data_ptr, std_t_sint) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001398 break;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001399
Willy Tarreau1e82a142019-01-29 11:08:06 +01001400 case STD_T_UINT:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001401 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1402 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001403 stktable_data_cast(data_ptr, std_t_uint) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001404 break;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001405
Willy Tarreau1e82a142019-01-29 11:08:06 +01001406 case STD_T_ULL:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001407 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1408 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001409 stktable_data_cast(data_ptr, std_t_ull) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001410 break;
Willy Tarreau1e82a142019-01-29 11:08:06 +01001411
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001412 case STD_T_FRQP: {
1413 struct freq_ctr_period data;
1414
1415 /* First bit is reserved for the freq_ctr_period lock
1416 Note: here we're still protected by the stksess lock
1417 so we don't need to update the update the freq_ctr_period
1418 using its internal lock */
1419
Willy Tarreau1e82a142019-01-29 11:08:06 +01001420 data.curr_tick = tick_add(now_ms, -decoded_int) & ~0x1;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001421 data.curr_ctr = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001422 if (!*msg_cur)
1423 goto malformed_unlock;
1424
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001425 data.prev_ctr = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001426 if (!*msg_cur)
1427 goto malformed_unlock;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001428
1429 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1430 if (data_ptr)
1431 stktable_data_cast(data_ptr, std_t_frqp) = data;
1432 break;
1433 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001434 case STD_T_DICT: {
1435 struct buffer *chunk;
1436 size_t data_len, value_len;
1437 unsigned int id;
1438 struct dict_entry *de;
1439 struct dcache *dc;
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001440 char *end;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001441
1442 data_len = decoded_int;
1443 if (*msg_cur + data_len > msg_end)
1444 goto malformed_unlock;
1445
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001446 /* Compute the end of the current data, <msg_end> being at the end of
1447 * the entire message.
1448 */
1449 end = *msg_cur + data_len;
1450 id = intdecode(msg_cur, end);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001451 if (!*msg_cur || !id)
1452 goto malformed_unlock;
1453
1454 dc = p->dcache;
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001455 if (*msg_cur == end) {
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001456 /* Dictionary entry key without value. */
1457 if (id > dc->max_entries)
1458 break;
1459 /* IDs sent over the network are numbered from 1. */
1460 de = dc->rx[id - 1].de;
1461 }
1462 else {
1463 chunk = get_trash_chunk();
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001464 value_len = intdecode(msg_cur, end);
1465 if (!*msg_cur || *msg_cur + value_len > end ||
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001466 unlikely(value_len + 1 >= chunk->size))
1467 goto malformed_unlock;
1468
1469 chunk_memcpy(chunk, *msg_cur, value_len);
1470 chunk->area[chunk->data] = '\0';
Frédéric Lécaille56aec0d2019-06-06 14:14:15 +02001471 *msg_cur += value_len;
1472
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001473 de = dict_insert(&server_name_dict, chunk->area);
1474 dc->rx[id - 1].de = de;
1475 }
1476 if (de) {
1477 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1478 if (data_ptr)
1479 stktable_data_cast(data_ptr, std_t_dict) = de;
1480 }
1481 break;
1482 }
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001483 }
1484 }
1485 /* Force new expiration */
1486 ts->expire = tick_add(now_ms, expire);
1487
1488 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1489 stktable_touch_remote(st->table, ts, 1);
1490 return 1;
1491
1492 ignore_msg:
1493 /* skip consumed message */
1494 co_skip(si_oc(si), totl);
1495 return 0;
Willy Tarreau1e82a142019-01-29 11:08:06 +01001496
1497 malformed_unlock:
1498 /* malformed message */
1499 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1500 stktable_touch_remote(st->table, ts, 1);
1501 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1502 return 0;
1503
1504 malformed_free_newts:
1505 /* malformed message */
1506 stksess_free(st->table, newts);
1507 malformed_exit:
1508 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1509 return 0;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001510}
1511
Frédéric Lécaille87f554c2019-01-22 17:26:50 +01001512/*
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001513 * Function used to parse a stick-table update acknowledgement message after it
1514 * has been received by <p> peer with <msg_cur> as address of the pointer to the position in the
1515 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1516 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1517 * was encountered.
1518 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1519 */
1520static inline int peer_treat_ackmsg(struct appctx *appctx, struct peer *p,
1521 char **msg_cur, char *msg_end)
1522{
1523 /* ack message */
1524 uint32_t table_id ;
1525 uint32_t update;
1526 struct shared_table *st;
1527
1528 table_id = intdecode(msg_cur, msg_end);
1529 if (!*msg_cur || (*msg_cur + sizeof(update) > msg_end)) {
1530 /* malformed message */
1531 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1532 return 0;
1533 }
1534
1535 memcpy(&update, *msg_cur, sizeof(update));
1536 update = ntohl(update);
1537
1538 for (st = p->tables; st; st = st->next) {
1539 if (st->local_id == table_id) {
1540 st->update = update;
1541 break;
1542 }
1543 }
1544
1545 return 1;
1546}
1547
1548/*
1549 * Function used to parse a stick-table switch message after it has been received
1550 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1551 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1552 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1553 * was encountered.
1554 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1555 */
1556static inline int peer_treat_switchmsg(struct appctx *appctx, struct peer *p,
1557 char **msg_cur, char *msg_end)
1558{
1559 struct shared_table *st;
1560 int table_id;
1561
1562 table_id = intdecode(msg_cur, msg_end);
1563 if (!*msg_cur) {
1564 /* malformed message */
1565 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1566 return 0;
1567 }
1568
1569 p->remote_table = NULL;
1570 for (st = p->tables; st; st = st->next) {
1571 if (st->remote_id == table_id) {
1572 p->remote_table = st;
1573 break;
1574 }
1575 }
1576
1577 return 1;
1578}
1579
1580/*
1581 * Function used to parse a stick-table definition message after it has been received
1582 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1583 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1584 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1585 * was encountered.
1586 * <totl> is the length of the stick-table update message computed upon receipt.
1587 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1588 */
1589static inline int peer_treat_definemsg(struct appctx *appctx, struct peer *p,
1590 char **msg_cur, char *msg_end, int totl)
1591{
1592 struct stream_interface *si = appctx->owner;
1593 int table_id_len;
1594 struct shared_table *st;
1595 int table_type;
1596 int table_keylen;
1597 int table_id;
1598 uint64_t table_data;
1599
1600 table_id = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001601 if (!*msg_cur)
1602 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001603
1604 table_id_len = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001605 if (!*msg_cur)
1606 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001607
1608 p->remote_table = NULL;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001609 if (!table_id_len || (*msg_cur + table_id_len) >= msg_end)
1610 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001611
1612 for (st = p->tables; st; st = st->next) {
1613 /* Reset IDs */
1614 if (st->remote_id == table_id)
1615 st->remote_id = 0;
1616
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001617 if (!p->remote_table && (table_id_len == strlen(st->table->nid)) &&
1618 (memcmp(st->table->nid, *msg_cur, table_id_len) == 0))
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001619 p->remote_table = st;
1620 }
1621
1622 if (!p->remote_table)
1623 goto ignore_msg;
1624
1625 *msg_cur += table_id_len;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001626 if (*msg_cur >= msg_end)
1627 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001628
1629 table_type = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001630 if (!*msg_cur)
1631 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001632
1633 table_keylen = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001634 if (!*msg_cur)
1635 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001636
1637 table_data = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001638 if (!*msg_cur)
1639 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001640
1641 if (p->remote_table->table->type != table_type
1642 || p->remote_table->table->key_size != table_keylen) {
1643 p->remote_table = NULL;
1644 goto ignore_msg;
1645 }
1646
1647 p->remote_table->remote_data = table_data;
1648 p->remote_table->remote_id = table_id;
1649 return 1;
1650
1651 ignore_msg:
1652 co_skip(si_oc(si), totl);
1653 return 0;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001654
1655 malformed_exit:
1656 /* malformed message */
1657 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1658 return 0;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001659}
1660
1661/*
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001662 * Receive a stick-table message.
1663 * Returns 1 if there was no error, if not, returns 0 if not enough data were available,
1664 * -1 if there was an error updating the appctx state st0 accordingly.
1665 */
1666static inline int peer_recv_msg(struct appctx *appctx, char *msg_head, size_t msg_head_sz,
1667 uint32_t *msg_len, int *totl)
1668{
1669 int reql;
1670 struct stream_interface *si = appctx->owner;
1671
1672 reql = co_getblk(si_oc(si), msg_head, 2 * sizeof(char), *totl);
1673 if (reql <= 0) /* closed or EOL not found */
1674 goto incomplete;
1675
1676 *totl += reql;
1677
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +02001678 if (!(msg_head[1] & PEER_MSG_STKT_BIT_MASK))
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001679 return 1;
1680
1681 /* Read and Decode message length */
1682 reql = co_getblk(si_oc(si), &msg_head[2], sizeof(char), *totl);
1683 if (reql <= 0) /* closed */
1684 goto incomplete;
1685
1686 *totl += reql;
1687
Frédéric Lécaille32b55732019-06-03 18:29:51 +02001688 if ((unsigned int)msg_head[2] < PEER_ENC_2BYTES_MIN) {
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001689 *msg_len = msg_head[2];
1690 }
1691 else {
1692 int i;
1693 char *cur;
1694 char *end;
1695
1696 for (i = 3 ; i < msg_head_sz ; i++) {
1697 reql = co_getblk(si_oc(si), &msg_head[i], sizeof(char), *totl);
1698 if (reql <= 0) /* closed */
1699 goto incomplete;
1700
1701 *totl += reql;
1702
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +02001703 if (!(msg_head[i] & PEER_MSG_STKT_BIT_MASK))
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001704 break;
1705 }
1706
1707 if (i == msg_head_sz) {
1708 /* malformed message */
1709 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1710 return -1;
1711 }
1712 end = msg_head + msg_head_sz;
1713 cur = &msg_head[2];
1714 *msg_len = intdecode(&cur, end);
1715 if (!cur) {
1716 /* malformed message */
1717 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1718 return -1;
1719 }
1720 }
1721
1722 /* Read message content */
1723 if (*msg_len) {
1724 if (*msg_len > trash.size) {
1725 /* Status code is not success, abort */
1726 appctx->st0 = PEER_SESS_ST_ERRSIZE;
1727 return -1;
1728 }
1729
1730 reql = co_getblk(si_oc(si), trash.area, *msg_len, *totl);
1731 if (reql <= 0) /* closed */
1732 goto incomplete;
1733 *totl += reql;
1734 }
1735
1736 return 1;
1737
1738 incomplete:
1739 if (reql < 0) {
1740 /* there was an error */
1741 appctx->st0 = PEER_SESS_ST_END;
1742 return -1;
1743 }
1744
1745 return 0;
1746}
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001747
1748/*
1749 * Treat the awaited message with <msg_head> as header.*
1750 * Return 1 if succeeded, 0 if not.
1751 */
1752static inline int peer_treat_awaited_msg(struct appctx *appctx, struct peer *peer, unsigned char *msg_head,
1753 char **msg_cur, char *msg_end, int msg_len, int totl)
1754{
1755 struct stream_interface *si = appctx->owner;
1756 struct stream *s = si_strm(si);
1757 struct peers *peers = strm_fe(s)->parent;
1758
1759 if (msg_head[0] == PEER_MSG_CLASS_CONTROL) {
1760 if (msg_head[1] == PEER_MSG_CTRL_RESYNCREQ) {
1761 struct shared_table *st;
1762 /* Reset message: remote need resync */
1763
1764 /* prepare tables fot a global push */
1765 for (st = peer->tables; st; st = st->next) {
1766 st->teaching_origin = st->last_pushed = st->table->update;
1767 st->flags = 0;
1768 }
1769
1770 /* reset teaching flags to 0 */
1771 peer->flags &= PEER_TEACH_RESET;
1772
1773 /* flag to start to teach lesson */
1774 peer->flags |= PEER_F_TEACH_PROCESS;
1775 }
1776 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCFINISHED) {
1777 if (peer->flags & PEER_F_LEARN_ASSIGN) {
1778 peer->flags &= ~PEER_F_LEARN_ASSIGN;
1779 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
1780 peers->flags |= (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE);
1781 }
1782 peer->confirm++;
1783 }
1784 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCPARTIAL) {
1785 if (peer->flags & PEER_F_LEARN_ASSIGN) {
1786 peer->flags &= ~PEER_F_LEARN_ASSIGN;
1787 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
1788
1789 peer->flags |= PEER_F_LEARN_NOTUP2DATE;
Frédéric Lécaille54bff832019-03-26 10:25:20 +01001790 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT));
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001791 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
1792 }
1793 peer->confirm++;
1794 }
1795 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCCONFIRM) {
1796 struct shared_table *st;
1797
1798 /* If stopping state */
1799 if (stopping) {
1800 /* Close session, push resync no more needed */
1801 peer->flags |= PEER_F_TEACH_COMPLETE;
1802 appctx->st0 = PEER_SESS_ST_END;
1803 return 0;
1804 }
1805 for (st = peer->tables; st; st = st->next) {
1806 st->update = st->last_pushed = st->teaching_origin;
1807 st->flags = 0;
1808 }
1809
1810 /* reset teaching flags to 0 */
1811 peer->flags &= PEER_TEACH_RESET;
1812 }
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001813 else if (msg_head[1] == PEER_MSG_CTRL_HEARTBEAT) {
Frédéric Lécaille54bff832019-03-26 10:25:20 +01001814 peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001815 }
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001816 }
1817 else if (msg_head[0] == PEER_MSG_CLASS_STICKTABLE) {
1818 if (msg_head[1] == PEER_MSG_STKT_DEFINE) {
1819 if (!peer_treat_definemsg(appctx, peer, msg_cur, msg_end, totl))
1820 return 0;
1821 }
1822 else if (msg_head[1] == PEER_MSG_STKT_SWITCH) {
1823 if (!peer_treat_switchmsg(appctx, peer, msg_cur, msg_end))
1824 return 0;
1825 }
1826 else if (msg_head[1] == PEER_MSG_STKT_UPDATE ||
1827 msg_head[1] == PEER_MSG_STKT_INCUPDATE ||
1828 msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED ||
1829 msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED) {
1830 int update, expire;
1831
1832 update = msg_head[1] == PEER_MSG_STKT_UPDATE || msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED;
1833 expire = msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED || msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED;
1834 if (!peer_treat_updatemsg(appctx, peer, update, expire,
1835 msg_cur, msg_end, msg_len, totl))
1836 return 0;
1837
1838 }
1839 else if (msg_head[1] == PEER_MSG_STKT_ACK) {
1840 if (!peer_treat_ackmsg(appctx, peer, msg_cur, msg_end))
1841 return 0;
1842 }
1843 }
1844 else if (msg_head[0] == PEER_MSG_CLASS_RESERVED) {
1845 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1846 return 0;
1847 }
1848
1849 return 1;
1850}
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01001851
1852
1853/*
1854 * Send any message to <peer> peer.
1855 * Returns 1 if succeeded, or -1 or 0 if failed.
1856 * -1 means an internal error occured, 0 is for a peer protocol error leading
1857 * to a peer state change (from the peer I/O handler point of view).
1858 */
1859static inline int peer_send_msgs(struct appctx *appctx, struct peer *peer)
1860{
1861 int repl;
1862 struct stream_interface *si = appctx->owner;
1863 struct stream *s = si_strm(si);
1864 struct peers *peers = strm_fe(s)->parent;
1865
1866 /* Need to request a resync */
1867 if ((peer->flags & PEER_F_LEARN_ASSIGN) &&
1868 (peers->flags & PEERS_F_RESYNC_ASSIGN) &&
1869 !(peers->flags & PEERS_F_RESYNC_PROCESS)) {
1870
1871 repl = peer_send_resync_reqmsg(appctx);
1872 if (repl <= 0)
1873 return repl;
1874
1875 peers->flags |= PEERS_F_RESYNC_PROCESS;
1876 }
1877
1878 /* Nothing to read, now we start to write */
1879 if (peer->tables) {
1880 struct shared_table *st;
1881 struct shared_table *last_local_table;
1882
1883 last_local_table = peer->last_local_table;
1884 if (!last_local_table)
1885 last_local_table = peer->tables;
1886 st = last_local_table->next;
1887
1888 while (1) {
1889 if (!st)
1890 st = peer->tables;
1891
1892 /* It remains some updates to ack */
1893 if (st->last_get != st->last_acked) {
1894 repl = peer_send_ackmsg(st, appctx);
1895 if (repl <= 0)
1896 return repl;
1897
1898 st->last_acked = st->last_get;
1899 }
1900
1901 if (!(peer->flags & PEER_F_TEACH_PROCESS)) {
1902 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1903 if (!(peer->flags & PEER_F_LEARN_ASSIGN) &&
1904 ((int)(st->last_pushed - st->table->localupdate) < 0)) {
1905
1906 repl = peer_send_teach_process_msgs(appctx, peer, st);
1907 if (repl <= 0) {
1908 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1909 return repl;
1910 }
1911 }
1912 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1913 }
1914 else {
1915 if (!(st->flags & SHTABLE_F_TEACH_STAGE1)) {
1916 repl = peer_send_teach_stage1_msgs(appctx, peer, st);
1917 if (repl <= 0)
1918 return repl;
1919 }
1920
1921 if (!(st->flags & SHTABLE_F_TEACH_STAGE2)) {
1922 repl = peer_send_teach_stage2_msgs(appctx, peer, st);
1923 if (repl <= 0)
1924 return repl;
1925 }
1926 }
1927
1928 if (st == last_local_table)
1929 break;
1930 st = st->next;
1931 }
1932 }
1933
1934 if ((peer->flags & PEER_F_TEACH_PROCESS) && !(peer->flags & PEER_F_TEACH_FINISHED)) {
1935 repl = peer_send_resync_finishedmsg(appctx, peer);
1936 if (repl <= 0)
1937 return repl;
1938
1939 /* flag finished message sent */
1940 peer->flags |= PEER_F_TEACH_FINISHED;
1941 }
1942
1943 /* Confirm finished or partial messages */
1944 while (peer->confirm) {
1945 repl = peer_send_resync_confirmsg(appctx);
1946 if (repl <= 0)
1947 return repl;
1948
1949 peer->confirm--;
1950 }
1951
1952 return 1;
1953}
1954
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001955/*
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01001956 * Read and parse a first line of a "hello" peer protocol message.
1957 * Returns 0 if could not read a line, -1 if there was a read error or
1958 * the line is malformed, 1 if succeeded.
1959 */
1960static inline int peer_getline_version(struct appctx *appctx,
1961 unsigned int *maj_ver, unsigned int *min_ver)
1962{
1963 int reql;
1964
1965 reql = peer_getline(appctx);
1966 if (!reql)
1967 return 0;
1968
1969 if (reql < 0)
1970 return -1;
1971
1972 /* test protocol */
1973 if (strncmp(PEER_SESSION_PROTO_NAME " ", trash.area, proto_len + 1) != 0) {
1974 appctx->st0 = PEER_SESS_ST_EXIT;
1975 appctx->st1 = PEER_SESS_SC_ERRPROTO;
1976 return -1;
1977 }
1978 if (peer_get_version(trash.area + proto_len + 1, maj_ver, min_ver) == -1 ||
1979 *maj_ver != PEER_MAJOR_VER || *min_ver > PEER_MINOR_VER) {
1980 appctx->st0 = PEER_SESS_ST_EXIT;
1981 appctx->st1 = PEER_SESS_SC_ERRVERSION;
1982 return -1;
1983 }
1984
1985 return 1;
1986}
1987
1988/*
1989 * Read and parse a second line of a "hello" peer protocol message.
1990 * Returns 0 if could not read a line, -1 if there was a read error or
1991 * the line is malformed, 1 if succeeded.
1992 */
1993static inline int peer_getline_host(struct appctx *appctx)
1994{
1995 int reql;
1996
1997 reql = peer_getline(appctx);
1998 if (!reql)
1999 return 0;
2000
2001 if (reql < 0)
2002 return -1;
2003
2004 /* test hostname match */
2005 if (strcmp(localpeer, trash.area) != 0) {
2006 appctx->st0 = PEER_SESS_ST_EXIT;
2007 appctx->st1 = PEER_SESS_SC_ERRHOST;
2008 return -1;
2009 }
2010
2011 return 1;
2012}
2013
2014/*
2015 * Read and parse a last line of a "hello" peer protocol message.
2016 * Returns 0 if could not read a character, -1 if there was a read error or
2017 * the line is malformed, 1 if succeeded.
2018 * Set <curpeer> accordingly (the remote peer sending the "hello" message).
2019 */
2020static inline int peer_getline_last(struct appctx *appctx, struct peer **curpeer)
2021{
2022 char *p;
2023 int reql;
2024 struct peer *peer;
2025 struct stream_interface *si = appctx->owner;
2026 struct stream *s = si_strm(si);
2027 struct peers *peers = strm_fe(s)->parent;
2028
2029 reql = peer_getline(appctx);
2030 if (!reql)
2031 return 0;
2032
2033 if (reql < 0)
2034 return -1;
2035
2036 /* parse line "<peer name> <pid> <relative_pid>" */
2037 p = strchr(trash.area, ' ');
2038 if (!p) {
2039 appctx->st0 = PEER_SESS_ST_EXIT;
2040 appctx->st1 = PEER_SESS_SC_ERRPROTO;
2041 return -1;
2042 }
2043 *p = 0;
2044
2045 /* lookup known peer */
2046 for (peer = peers->remote; peer; peer = peer->next) {
2047 if (strcmp(peer->id, trash.area) == 0)
2048 break;
2049 }
2050
2051 /* if unknown peer */
2052 if (!peer) {
2053 appctx->st0 = PEER_SESS_ST_EXIT;
2054 appctx->st1 = PEER_SESS_SC_ERRPEER;
2055 return -1;
2056 }
2057 *curpeer = peer;
2058
2059 return 1;
2060}
2061
2062/*
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002063 * Init <peer> peer after having accepted it at peer protocol level.
2064 */
2065static inline void init_accepted_peer(struct peer *peer, struct peers *peers)
2066{
2067 struct shared_table *st;
2068
2069 /* Register status code */
2070 peer->statuscode = PEER_SESS_SC_SUCCESSCODE;
2071
2072 /* Awake main task */
2073 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
2074
2075 /* Init confirm counter */
2076 peer->confirm = 0;
2077
2078 /* Init cursors */
2079 for (st = peer->tables; st ; st = st->next) {
2080 st->last_get = st->last_acked = 0;
2081 st->teaching_origin = st->last_pushed = st->update;
2082 }
2083
2084 /* reset teaching and learning flags to 0 */
2085 peer->flags &= PEER_TEACH_RESET;
2086 peer->flags &= PEER_LEARN_RESET;
2087
2088 /* if current peer is local */
2089 if (peer->local) {
2090 /* if current host need resyncfrom local and no process assined */
2091 if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL &&
2092 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2093 /* assign local peer for a lesson, consider lesson already requested */
2094 peer->flags |= PEER_F_LEARN_ASSIGN;
2095 peers->flags |= (PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
2096 }
2097
2098 }
2099 else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
2100 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2101 /* assign peer for a lesson */
2102 peer->flags |= PEER_F_LEARN_ASSIGN;
2103 peers->flags |= PEERS_F_RESYNC_ASSIGN;
2104 }
2105}
2106
2107/*
2108 * Init <peer> peer after having connected it at peer protocol level.
2109 */
2110static inline void init_connected_peer(struct peer *peer, struct peers *peers)
2111{
2112 struct shared_table *st;
2113
2114 /* Init cursors */
2115 for (st = peer->tables; st ; st = st->next) {
2116 st->last_get = st->last_acked = 0;
2117 st->teaching_origin = st->last_pushed = st->update;
2118 }
2119
2120 /* Init confirm counter */
2121 peer->confirm = 0;
2122
2123 /* reset teaching and learning flags to 0 */
2124 peer->flags &= PEER_TEACH_RESET;
2125 peer->flags &= PEER_LEARN_RESET;
2126
2127 /* If current peer is local */
2128 if (peer->local) {
2129 /* flag to start to teach lesson */
2130 peer->flags |= PEER_F_TEACH_PROCESS;
2131 }
2132 else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
2133 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2134 /* If peer is remote and resync from remote is needed,
2135 and no peer currently assigned */
2136
2137 /* assign peer for a lesson */
2138 peer->flags |= PEER_F_LEARN_ASSIGN;
2139 peers->flags |= PEERS_F_RESYNC_ASSIGN;
2140 }
2141}
2142
2143/*
Emeric Brun2b920a12010-09-23 18:30:22 +02002144 * IO Handler to handle message exchance with a peer
2145 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02002146static void peer_io_handler(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +02002147{
Willy Tarreau00a37f02015-04-13 12:05:19 +02002148 struct stream_interface *si = appctx->owner;
Willy Tarreau87b09662015-04-03 00:22:06 +02002149 struct stream *s = si_strm(si);
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002150 struct peers *curpeers = strm_fe(s)->parent;
Emeric Brun80527f52017-06-19 17:46:37 +02002151 struct peer *curpeer = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002152 int reql = 0;
2153 int repl = 0;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002154 unsigned int maj_ver, min_ver;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002155 int prev_state;
Emeric Brun2b920a12010-09-23 18:30:22 +02002156
Joseph Herlant82b2f542018-11-15 12:19:14 -08002157 /* Check if the input buffer is available. */
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002158 if (si_ic(si)->buf.size == 0) {
2159 si_rx_room_blk(si);
2160 goto out;
2161 }
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002162
Emeric Brun2b920a12010-09-23 18:30:22 +02002163 while (1) {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002164 prev_state = appctx->st0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002165switchstate:
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002166 maj_ver = min_ver = (unsigned int)-1;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002167 switch(appctx->st0) {
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002168 case PEER_SESS_ST_ACCEPT:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002169 prev_state = appctx->st0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002170 appctx->ctx.peers.ptr = NULL;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002171 appctx->st0 = PEER_SESS_ST_GETVERSION;
Emeric Brun2b920a12010-09-23 18:30:22 +02002172 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002173 case PEER_SESS_ST_GETVERSION:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002174 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002175 reql = peer_getline_version(appctx, &maj_ver, &min_ver);
2176 if (reql <= 0) {
2177 if (!reql)
2178 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002179 goto switchstate;
2180 }
2181
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002182 appctx->st0 = PEER_SESS_ST_GETHOST;
Emeric Brun2b920a12010-09-23 18:30:22 +02002183 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002184 case PEER_SESS_ST_GETHOST:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002185 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002186 reql = peer_getline_host(appctx);
2187 if (reql <= 0) {
2188 if (!reql)
2189 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002190 goto switchstate;
2191 }
2192
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002193 appctx->st0 = PEER_SESS_ST_GETPEER;
Emeric Brun2b920a12010-09-23 18:30:22 +02002194 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002195 case PEER_SESS_ST_GETPEER: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002196 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002197 reql = peer_getline_last(appctx, &curpeer);
2198 if (reql <= 0) {
2199 if (!reql)
2200 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002201 goto switchstate;
2202 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002203
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002204 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Willy Tarreau9df94c22016-10-31 18:42:52 +01002205 if (curpeer->appctx && curpeer->appctx != appctx) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002206 if (curpeer->local) {
2207 /* Local connection, reply a retry */
2208 appctx->st0 = PEER_SESS_ST_EXIT;
2209 appctx->st1 = PEER_SESS_SC_TRYAGAIN;
2210 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02002211 }
Emeric Brun80527f52017-06-19 17:46:37 +02002212
2213 /* we're killing a connection, we must apply a random delay before
2214 * retrying otherwise the other end will do the same and we can loop
2215 * for a while.
2216 */
2217 curpeer->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + random() % 2000));
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002218 peer_session_forceshutdown(curpeer);
Emeric Brun2b920a12010-09-23 18:30:22 +02002219 }
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002220 if (maj_ver != (unsigned int)-1 && min_ver != (unsigned int)-1) {
2221 if (min_ver == PEER_DWNGRD_MINOR_VER) {
2222 curpeer->flags |= PEER_F_DWNGRD;
2223 }
2224 else {
2225 curpeer->flags &= ~PEER_F_DWNGRD;
2226 }
2227 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002228 curpeer->appctx = appctx;
2229 appctx->ctx.peers.ptr = curpeer;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002230 appctx->st0 = PEER_SESS_ST_SENDSUCCESS;
Olivier Houcharded879892019-03-08 18:53:43 +01002231 _HA_ATOMIC_ADD(&active_peers, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02002232 /* fall through */
2233 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002234 case PEER_SESS_ST_SENDSUCCESS: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002235 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002236 if (!curpeer) {
2237 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002238 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002239 if (curpeer->appctx != appctx) {
2240 appctx->st0 = PEER_SESS_ST_END;
2241 goto switchstate;
2242 }
2243 }
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002244
2245 repl = peer_send_status_successmsg(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002246 if (repl <= 0) {
2247 if (repl == -1)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002248 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002249 goto switchstate;
2250 }
2251
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002252 init_accepted_peer(curpeer, curpeers);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002253
Emeric Brun2b920a12010-09-23 18:30:22 +02002254 /* switch to waiting message state */
Olivier Houcharded879892019-03-08 18:53:43 +01002255 _HA_ATOMIC_ADD(&connected_peers, 1);
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002256 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +02002257 goto switchstate;
2258 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002259 case PEER_SESS_ST_CONNECT: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002260 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002261 if (!curpeer) {
2262 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002263 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002264 if (curpeer->appctx != appctx) {
2265 appctx->st0 = PEER_SESS_ST_END;
2266 goto switchstate;
2267 }
2268 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002269
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002270 repl = peer_send_hellomsg(appctx, curpeer);
Emeric Brun2b920a12010-09-23 18:30:22 +02002271 if (repl <= 0) {
2272 if (repl == -1)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002273 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002274 goto switchstate;
2275 }
2276
2277 /* switch to the waiting statuscode state */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002278 appctx->st0 = PEER_SESS_ST_GETSTATUS;
Emeric Brun2b920a12010-09-23 18:30:22 +02002279 /* fall through */
2280 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002281 case PEER_SESS_ST_GETSTATUS: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002282 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002283 if (!curpeer) {
2284 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002285 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002286 if (curpeer->appctx != appctx) {
2287 appctx->st0 = PEER_SESS_ST_END;
2288 goto switchstate;
2289 }
2290 }
2291
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002292 if (si_ic(si)->flags & CF_WRITE_PARTIAL)
Emeric Brunb3971ab2015-05-12 18:49:09 +02002293 curpeer->statuscode = PEER_SESS_SC_CONNECTEDCODE;
Emeric Brun2b920a12010-09-23 18:30:22 +02002294
Frédéric Lécaillece025572019-01-21 13:38:06 +01002295 reql = peer_getline(appctx);
2296 if (!reql)
2297 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002298
Frédéric Lécaillece025572019-01-21 13:38:06 +01002299 if (reql < 0)
2300 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02002301
2302 /* Register status code */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002303 curpeer->statuscode = atoi(trash.area);
Emeric Brun2b920a12010-09-23 18:30:22 +02002304
2305 /* Awake main task */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002306 task_wakeup(curpeers->sync_task, TASK_WOKEN_MSG);
Emeric Brun2b920a12010-09-23 18:30:22 +02002307
2308 /* If status code is success */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002309 if (curpeer->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002310 init_connected_peer(curpeer, curpeers);
Emeric Brun2b920a12010-09-23 18:30:22 +02002311 }
2312 else {
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002313 if (curpeer->statuscode == PEER_SESS_SC_ERRVERSION)
2314 curpeer->flags |= PEER_F_DWNGRD;
Emeric Brun2b920a12010-09-23 18:30:22 +02002315 /* Status code is not success, abort */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002316 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +02002317 goto switchstate;
2318 }
Olivier Houcharded879892019-03-08 18:53:43 +01002319 _HA_ATOMIC_ADD(&connected_peers, 1);
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002320 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +02002321 /* fall through */
2322 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002323 case PEER_SESS_ST_WAITMSG: {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002324 uint32_t msg_len = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002325 char *msg_cur = trash.area;
2326 char *msg_end = trash.area;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002327 unsigned char msg_head[7];
Emeric Brun2b920a12010-09-23 18:30:22 +02002328 int totl = 0;
2329
Willy Tarreau2d372c22018-11-05 17:12:27 +01002330 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002331 if (!curpeer) {
2332 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002333 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002334 if (curpeer->appctx != appctx) {
2335 appctx->st0 = PEER_SESS_ST_END;
2336 goto switchstate;
2337 }
2338 }
2339
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002340 reql = peer_recv_msg(appctx, (char *)msg_head, sizeof msg_head, &msg_len, &totl);
2341 if (reql <= 0) {
2342 if (reql == -1)
2343 goto switchstate;
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002344 goto send_msgs;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002345 }
Willy Tarreau86a446e2013-11-25 23:02:37 +01002346
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002347 msg_end += msg_len;
Frédéric Lécaille444243c2019-01-24 15:40:11 +01002348 if (!peer_treat_awaited_msg(appctx, curpeer, msg_head, &msg_cur, msg_end, msg_len, totl))
Emeric Brun2b920a12010-09-23 18:30:22 +02002349 goto switchstate;
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002350
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002351 curpeer->flags |= PEER_F_ALIVE;
2352
Emeric Brun2b920a12010-09-23 18:30:22 +02002353 /* skip consumed message */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002354 co_skip(si_oc(si), totl);
Emeric Brun2b920a12010-09-23 18:30:22 +02002355 /* loop on that state to peek next message */
Willy Tarreau72d6c162013-04-11 16:14:13 +02002356 goto switchstate;
2357
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002358send_msgs:
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002359 if (curpeer->flags & PEER_F_HEARTBEAT) {
2360 curpeer->flags &= ~PEER_F_HEARTBEAT;
2361 repl = peer_send_heartbeatmsg(appctx);
2362 if (repl <= 0) {
2363 if (repl == -1)
2364 goto out;
2365 goto switchstate;
2366 }
2367 }
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002368 /* we get here when a peer_recv_msg() returns 0 in reql */
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01002369 repl = peer_send_msgs(appctx, curpeer);
2370 if (repl <= 0) {
2371 if (repl == -1)
2372 goto out;
2373 goto switchstate;
Emeric Brun597b26e2016-08-12 11:23:31 +02002374 }
2375
Emeric Brun2b920a12010-09-23 18:30:22 +02002376 /* noting more to do */
2377 goto out;
2378 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002379 case PEER_SESS_ST_EXIT:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002380 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002381 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002382 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002383 if (peer_send_status_errormsg(appctx) == -1)
2384 goto out;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002385 appctx->st0 = PEER_SESS_ST_END;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002386 goto switchstate;
2387 case PEER_SESS_ST_ERRSIZE: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002388 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002389 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002390 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002391 if (peer_send_error_size_limitmsg(appctx) == -1)
2392 goto out;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002393 appctx->st0 = PEER_SESS_ST_END;
2394 goto switchstate;
2395 }
2396 case PEER_SESS_ST_ERRPROTO: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002397 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002398 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002399 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002400 if (peer_send_error_protomsg(appctx) == -1)
2401 goto out;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002402 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002403 prev_state = appctx->st0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002404 /* fall through */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002405 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002406 case PEER_SESS_ST_END: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002407 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002408 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002409 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002410 if (curpeer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002411 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002412 curpeer = NULL;
2413 }
Willy Tarreau73b013b2012-05-21 16:31:45 +02002414 si_shutw(si);
2415 si_shutr(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002416 si_ic(si)->flags |= CF_READ_NULL;
Willy Tarreau828824a2015-04-19 17:20:03 +02002417 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002418 }
2419 }
2420 }
2421out:
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002422 si_oc(si)->flags |= CF_READ_DONTWAIT;
Emeric Brun80527f52017-06-19 17:46:37 +02002423
2424 if (curpeer)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002425 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +02002426 return;
2427}
2428
Willy Tarreau30576452015-04-13 13:50:30 +02002429static struct applet peer_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002430 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01002431 .name = "<PEER>", /* used for logging */
2432 .fct = peer_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07002433 .release = peer_session_release,
Willy Tarreaub24281b2011-02-13 13:16:36 +01002434};
Emeric Brun2b920a12010-09-23 18:30:22 +02002435
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002436
Emeric Brun2b920a12010-09-23 18:30:22 +02002437/*
2438 * Use this function to force a close of a peer session
2439 */
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002440static void peer_session_forceshutdown(struct peer *peer)
Emeric Brun2b920a12010-09-23 18:30:22 +02002441{
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002442 struct appctx *appctx = peer->appctx;
2443
Frédéric Lécaille5df11902017-06-13 16:39:57 +02002444 /* Note that the peer sessions which have just been created
2445 * (->st0 == PEER_SESS_ST_CONNECT) must not
2446 * be shutdown, if not, the TCP session will never be closed
2447 * and stay in CLOSE_WAIT state after having been closed by
2448 * the remote side.
2449 */
2450 if (!appctx || appctx->st0 == PEER_SESS_ST_CONNECT)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002451 return;
2452
Willy Tarreau81bc3b02016-10-31 17:37:39 +01002453 if (appctx->applet != &peer_applet)
2454 return;
2455
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002456 __peer_session_deinit(peer);
2457
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002458 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau78c0c502016-10-31 17:32:20 +01002459 appctx_wakeup(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002460}
2461
Willy Tarreau91d96282015-03-13 15:47:26 +01002462/* Pre-configures a peers frontend to accept incoming connections */
2463void peers_setup_frontend(struct proxy *fe)
2464{
2465 fe->last_change = now.tv_sec;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02002466 fe->cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau91d96282015-03-13 15:47:26 +01002467 fe->maxconn = 0;
2468 fe->conn_retries = CONN_RETRIES;
2469 fe->timeout.client = MS_TO_TICKS(5000);
Willy Tarreaud1d48d42015-03-13 16:15:46 +01002470 fe->accept = frontend_accept;
Willy Tarreauf87ab942015-03-13 15:55:16 +01002471 fe->default_target = &peer_applet.obj_type;
Willy Tarreau91d96282015-03-13 15:47:26 +01002472 fe->options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC;
Willy Tarreau0fca4832015-05-01 19:12:05 +02002473 fe->bind_proc = 0; /* will be filled by users */
Willy Tarreau91d96282015-03-13 15:47:26 +01002474}
2475
Emeric Brun2b920a12010-09-23 18:30:22 +02002476/*
Willy Tarreaubd55e312010-11-11 10:55:09 +01002477 * Create a new peer session in assigned state (connect will start automatically)
Emeric Brun2b920a12010-09-23 18:30:22 +02002478 */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002479static struct appctx *peer_session_create(struct peers *peers, struct peer *peer)
Emeric Brun2b920a12010-09-23 18:30:22 +02002480{
Willy Tarreau04b92862017-09-15 11:01:04 +02002481 struct proxy *p = peers->peers_fe; /* attached frontend */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002482 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02002483 struct session *sess;
Willy Tarreau87b09662015-04-03 00:22:06 +02002484 struct stream *s;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002485 struct connection *conn;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002486 struct conn_stream *cs;
Emeric Brun2b920a12010-09-23 18:30:22 +02002487
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002488 peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002489 peer->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
Emeric Brunb3971ab2015-05-12 18:49:09 +02002490 peer->statuscode = PEER_SESS_SC_CONNECTCODE;
Willy Tarreaud990baf2015-04-05 00:32:03 +02002491 s = NULL;
2492
Emeric Brun1138fd02017-06-19 12:38:55 +02002493 appctx = appctx_new(&peer_applet, tid_bit);
Willy Tarreaud990baf2015-04-05 00:32:03 +02002494 if (!appctx)
2495 goto out_close;
2496
2497 appctx->st0 = PEER_SESS_ST_CONNECT;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002498 appctx->ctx.peers.ptr = (void *)peer;
Willy Tarreaud990baf2015-04-05 00:32:03 +02002499
Willy Tarreau04b92862017-09-15 11:01:04 +02002500 sess = session_new(p, NULL, &appctx->obj_type);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002501 if (!sess) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002502 ha_alert("out of memory in peer_session_create().\n");
Willy Tarreaud990baf2015-04-05 00:32:03 +02002503 goto out_free_appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02002504 }
2505
Willy Tarreau87787ac2017-08-28 16:22:54 +02002506 if ((s = stream_new(sess, &appctx->obj_type)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002507 ha_alert("Failed to initialize stream in peer_session_create().\n");
Willy Tarreau87787ac2017-08-28 16:22:54 +02002508 goto out_free_sess;
Willy Tarreau8baf9062015-04-05 00:46:36 +02002509 }
2510
Willy Tarreau342bfb12015-04-05 01:35:34 +02002511 /* The tasks below are normally what is supposed to be done by
2512 * fe->accept().
2513 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002514 s->flags = SF_ASSIGNED|SF_ADDR_SET;
Emeric Brun2b920a12010-09-23 18:30:22 +02002515
Willy Tarreau6e2979c2015-04-27 13:21:15 +02002516 /* applet is waiting for data */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002517 si_cant_get(&s->si[0]);
Willy Tarreau6e2979c2015-04-27 13:21:15 +02002518 appctx_wakeup(appctx);
2519
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02002520 /* initiate an outgoing connection */
Willy Tarreaudbd02672017-12-06 17:39:53 +01002521 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02002522 si_set_state(&s->si[1], SI_ST_ASS);
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02002523
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002524 /* automatically prepare the stream interface to connect to the
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002525 * pre-initialized connection in si->conn.
2526 */
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002527 if (unlikely((conn = conn_new()) == NULL))
Willy Tarreau8baf9062015-04-05 00:46:36 +02002528 goto out_free_strm;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002529
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002530 if (unlikely((cs = cs_new(conn)) == NULL))
2531 goto out_free_conn;
2532
Frédéric Lécaille1055e682018-04-26 14:35:21 +02002533 conn->target = s->target = peer_session_target(peer, s);
Willy Tarreaube373152018-09-06 11:45:30 +02002534 memcpy(&conn->addr.to, &peer->addr, sizeof(conn->addr.to));
2535
Frédéric Lécaille1055e682018-04-26 14:35:21 +02002536 conn_prepare(conn, peer->proto, peer_xprt(peer));
Olivier Houchardef60ff32019-01-29 19:00:33 +01002537 if (conn_install_mux(conn, &mux_pt_ops, cs, s->be, NULL) < 0)
2538 goto out_free_cs;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002539 si_attach_cs(&s->si[1], cs);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002540
Emeric Brun2b920a12010-09-23 18:30:22 +02002541 s->do_log = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002542 s->uniq_id = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002543
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002544 s->res.flags |= CF_READ_DONTWAIT;
Willy Tarreau696a2912014-11-24 11:36:57 +01002545
Emeric Brunb3971ab2015-05-12 18:49:09 +02002546 peer->appctx = appctx;
Willy Tarreau87787ac2017-08-28 16:22:54 +02002547 task_wakeup(s->task, TASK_WOKEN_INIT);
Olivier Houcharded879892019-03-08 18:53:43 +01002548 _HA_ATOMIC_ADD(&active_peers, 1);
Willy Tarreau9df94c22016-10-31 18:42:52 +01002549 return appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02002550
2551 /* Error unrolling */
Olivier Houchardef60ff32019-01-29 19:00:33 +01002552out_free_cs:
2553 cs_free(cs);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002554 out_free_conn:
2555 conn_free(conn);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002556 out_free_strm:
Emeric Brun2b920a12010-09-23 18:30:22 +02002557 LIST_DEL(&s->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002558 pool_free(pool_head_stream, s);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002559 out_free_sess:
Willy Tarreau11c36242015-04-04 15:54:03 +02002560 session_free(sess);
Willy Tarreaud990baf2015-04-05 00:32:03 +02002561 out_free_appctx:
2562 appctx_free(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002563 out_close:
Willy Tarreaub21d08e2016-10-31 17:46:57 +01002564 return NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002565}
2566
2567/*
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002568 * Task processing function to manage re-connect, peer session
2569 * tasks wakeup on local update and heartbeat.
Emeric Brun2b920a12010-09-23 18:30:22 +02002570 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002571static struct task *process_peer_sync(struct task * task, void *context, unsigned short state)
Emeric Brun2b920a12010-09-23 18:30:22 +02002572{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002573 struct peers *peers = context;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002574 struct peer *ps;
2575 struct shared_table *st;
Emeric Brun2b920a12010-09-23 18:30:22 +02002576
2577 task->expire = TICK_ETERNITY;
2578
Emeric Brunb3971ab2015-05-12 18:49:09 +02002579 if (!peers->peers_fe) {
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02002580 /* this one was never started, kill it */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002581 signal_unregister_handler(peers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002582 task_destroy(peers->sync_task);
Willy Tarreau37bb7be2015-09-21 15:24:58 +02002583 peers->sync_task = NULL;
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02002584 return NULL;
2585 }
2586
Emeric Brun80527f52017-06-19 17:46:37 +02002587 /* Acquire lock for all peers of the section */
2588 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002589 HA_SPIN_LOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002590
Emeric Brun2b920a12010-09-23 18:30:22 +02002591 if (!stopping) {
2592 /* Normal case (not soft stop)*/
Emeric Brunb3971ab2015-05-12 18:49:09 +02002593
2594 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL) &&
2595 (!nb_oldpids || tick_is_expired(peers->resync_timeout, now_ms)) &&
2596 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002597 /* Resync from local peer needed
2598 no peer was assigned for the lesson
2599 and no old local peer found
2600 or resync timeout expire */
2601
2602 /* flag no more resync from local, to try resync from remotes */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002603 peers->flags |= PEERS_F_RESYNC_LOCAL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002604
2605 /* reschedule a resync */
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002606 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT));
Emeric Brun2b920a12010-09-23 18:30:22 +02002607 }
2608
2609 /* For each session */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002610 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002611 /* For each remote peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002612 if (!ps->local) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002613 if (!ps->appctx) {
2614 /* no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002615 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002616 ((ps->statuscode == PEER_SESS_SC_CONNECTCODE ||
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002617 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002618 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002619 tick_is_expired(ps->reconnect, now_ms))) {
2620 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002621 * or previous peer connection established with success
2622 * or previous peer connection failed while connecting
Emeric Brun2b920a12010-09-23 18:30:22 +02002623 * and reconnection timer is expired */
2624
2625 /* retry a connect */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002626 ps->appctx = peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002627 }
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002628 else if (!tick_is_expired(ps->reconnect, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002629 /* If previous session failed during connection
2630 * but reconnection timer is not expired */
2631
2632 /* reschedule task for reconnect */
2633 task->expire = tick_first(task->expire, ps->reconnect);
2634 }
2635 /* else do nothing */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002636 } /* !ps->appctx */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002637 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002638 /* current peer connection is active and established */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002639 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2640 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002641 !(ps->flags & PEER_F_LEARN_NOTUP2DATE)) {
2642 /* Resync from a remote is needed
2643 * and no peer was assigned for lesson
2644 * and current peer may be up2date */
2645
2646 /* assign peer for the lesson */
2647 ps->flags |= PEER_F_LEARN_ASSIGN;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002648 peers->flags |= PEERS_F_RESYNC_ASSIGN;
Emeric Brun2b920a12010-09-23 18:30:22 +02002649
Willy Tarreau9df94c22016-10-31 18:42:52 +01002650 /* wake up peer handler to handle a request of resync */
Willy Tarreaue5843b32015-04-27 18:40:14 +02002651 appctx_wakeup(ps->appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002652 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002653 else {
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002654 int update_to_push = 0;
2655
Emeric Brunb3971ab2015-05-12 18:49:09 +02002656 /* Awake session if there is data to push */
2657 for (st = ps->tables; st ; st = st->next) {
2658 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002659 /* wake up the peer handler to push local updates */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002660 update_to_push = 1;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002661 /* There is no need to send a heartbeat message
2662 * when some updates must be pushed. The remote
2663 * peer will consider <ps> peer as alive when it will
2664 * receive these updates.
2665 */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002666 ps->flags &= ~PEER_F_HEARTBEAT;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002667 /* Re-schedule another one later. */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002668 ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002669 /* We are going to send updates, let's ensure we will
2670 * come back to send heartbeat messages or to reconnect.
2671 */
2672 task->expire = tick_first(ps->reconnect, ps->heartbeat);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002673 appctx_wakeup(ps->appctx);
2674 break;
2675 }
2676 }
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002677 /* When there are updates to send we do not reconnect
2678 * and do not send heartbeat message either.
2679 */
2680 if (!update_to_push) {
2681 if (tick_is_expired(ps->reconnect, now_ms)) {
2682 if (ps->flags & PEER_F_ALIVE) {
2683 /* This peer was alive during a 'reconnect' period.
2684 * Flag it as not alive again for the next period.
2685 */
2686 ps->flags &= ~PEER_F_ALIVE;
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002687 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002688 }
2689 else {
2690 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + random() % 2000));
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002691 peer_session_forceshutdown(ps);
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002692 }
2693 }
2694 else if (tick_is_expired(ps->heartbeat, now_ms)) {
2695 ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
2696 ps->flags |= PEER_F_HEARTBEAT;
2697 appctx_wakeup(ps->appctx);
2698 }
Frédéric Lécailleb7405c12019-03-27 14:32:39 +01002699 task->expire = tick_first(ps->reconnect, ps->heartbeat);
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002700 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002701 }
2702 /* else do nothing */
2703 } /* SUCCESSCODE */
2704 } /* !ps->peer->local */
2705 } /* for */
2706
2707 /* Resync from remotes expired: consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002708 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2709 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
2710 tick_is_expired(peers->resync_timeout, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002711 /* Resync from remote peer needed
2712 * no peer was assigned for the lesson
2713 * and resync timeout expire */
2714
2715 /* flag no more resync from remote, consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002716 peers->flags |= PEERS_F_RESYNC_REMOTE;
Emeric Brun2b920a12010-09-23 18:30:22 +02002717 }
2718
Emeric Brunb3971ab2015-05-12 18:49:09 +02002719 if ((peers->flags & PEERS_RESYNC_STATEMASK) != PEERS_RESYNC_FINISHED) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002720 /* Resync not finished*/
Frédéric Lécaille5d6e5f82017-05-29 13:47:16 +02002721 /* reschedule task to resync timeout if not expired, to ended resync if needed */
2722 if (!tick_is_expired(peers->resync_timeout, now_ms))
2723 task->expire = tick_first(task->expire, peers->resync_timeout);
Emeric Brun2b920a12010-09-23 18:30:22 +02002724 }
2725 } /* !stopping */
2726 else {
2727 /* soft stop case */
Willy Tarreau086735a2018-11-05 15:09:47 +01002728 if (state & TASK_WOKEN_SIGNAL) {
Joseph Herlant82b2f542018-11-15 12:19:14 -08002729 /* We've just received the signal */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002730 if (!(peers->flags & PEERS_F_DONOTSTOP)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002731 /* add DO NOT STOP flag if not present */
Olivier Houcharded879892019-03-08 18:53:43 +01002732 _HA_ATOMIC_ADD(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002733 peers->flags |= PEERS_F_DONOTSTOP;
2734 ps = peers->local;
2735 for (st = ps->tables; st ; st = st->next)
2736 st->table->syncing++;
Emeric Brun2b920a12010-09-23 18:30:22 +02002737 }
2738
2739 /* disconnect all connected peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002740 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun80527f52017-06-19 17:46:37 +02002741 /* we're killing a connection, we must apply a random delay before
2742 * retrying otherwise the other end will do the same and we can loop
2743 * for a while.
2744 */
2745 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + random() % 2000));
Willy Tarreau9df94c22016-10-31 18:42:52 +01002746 if (ps->appctx) {
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002747 peer_session_forceshutdown(ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002748 }
2749 }
2750 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002751
Emeric Brunb3971ab2015-05-12 18:49:09 +02002752 ps = peers->local;
Emeric Brun2b920a12010-09-23 18:30:22 +02002753 if (ps->flags & PEER_F_TEACH_COMPLETE) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002754 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002755 /* resync of new process was complete, current process can die now */
Olivier Houcharded879892019-03-08 18:53:43 +01002756 _HA_ATOMIC_SUB(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002757 peers->flags &= ~PEERS_F_DONOTSTOP;
2758 for (st = ps->tables; st ; st = st->next)
2759 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002760 }
2761 }
Willy Tarreau9df94c22016-10-31 18:42:52 +01002762 else if (!ps->appctx) {
2763 /* If there's no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002764 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002765 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
2766 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE ||
2767 ps->statuscode == PEER_SESS_SC_TRYAGAIN) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002768 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002769 * or previous peer connection was successfully established
2770 * or previous tcp connect succeeded but init state incomplete
Emeric Brun2b920a12010-09-23 18:30:22 +02002771 * or during previous connect, peer replies a try again statuscode */
2772
2773 /* connect to the peer */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002774 peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002775 }
2776 else {
2777 /* Other error cases */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002778 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002779 /* unable to resync new process, current process can die now */
Olivier Houcharded879892019-03-08 18:53:43 +01002780 _HA_ATOMIC_SUB(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002781 peers->flags &= ~PEERS_F_DONOTSTOP;
2782 for (st = ps->tables; st ; st = st->next)
2783 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002784 }
2785 }
2786 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002787 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE ) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002788 /* current peer connection is active and established
2789 * wake up all peer handlers to push remaining local updates */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002790 for (st = ps->tables; st ; st = st->next) {
2791 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002792 appctx_wakeup(ps->appctx);
2793 break;
2794 }
2795 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002796 }
2797 } /* stopping */
Emeric Brun80527f52017-06-19 17:46:37 +02002798
2799 /* Release lock for all peers of the section */
2800 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002801 HA_SPIN_UNLOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002802
Emeric Brun2b920a12010-09-23 18:30:22 +02002803 /* Wakeup for re-connect */
2804 return task;
2805}
2806
Emeric Brunb3971ab2015-05-12 18:49:09 +02002807
Emeric Brun2b920a12010-09-23 18:30:22 +02002808/*
Willy Tarreaud9443442018-10-15 11:18:03 +02002809 * returns 0 in case of error.
Emeric Brun2b920a12010-09-23 18:30:22 +02002810 */
Willy Tarreaud9443442018-10-15 11:18:03 +02002811int peers_init_sync(struct peers *peers)
Emeric Brun2b920a12010-09-23 18:30:22 +02002812{
Emeric Brun2b920a12010-09-23 18:30:22 +02002813 struct peer * curpeer;
Emeric Brun2b920a12010-09-23 18:30:22 +02002814
Emeric Brun2b920a12010-09-23 18:30:22 +02002815 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002816 peers->peers_fe->maxconn += 3;
2817 }
2818
Emeric Brunc60def82017-09-27 14:59:38 +02002819 peers->sync_task = task_new(MAX_THREADS_MASK);
Willy Tarreaud9443442018-10-15 11:18:03 +02002820 if (!peers->sync_task)
2821 return 0;
2822
Emeric Brunb3971ab2015-05-12 18:49:09 +02002823 peers->sync_task->process = process_peer_sync;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002824 peers->sync_task->context = (void *)peers;
2825 peers->sighandler = signal_register_task(0, peers->sync_task, 0);
2826 task_wakeup(peers->sync_task, TASK_WOKEN_INIT);
Willy Tarreaud9443442018-10-15 11:18:03 +02002827 return 1;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002828}
2829
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002830/*
2831 * Allocate a cache a dictionary entries used upon transmission.
2832 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002833static struct dcache_tx *new_dcache_tx(size_t max_entries)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002834{
2835 struct dcache_tx *d;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002836 struct ebpt_node *entries;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002837
2838 d = malloc(sizeof *d);
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002839 entries = calloc(max_entries, sizeof *entries);
2840 if (!d || !entries)
2841 goto err;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002842
2843 d->lru_key = 0;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002844 d->cached_entries = EB_ROOT_UNIQUE;
2845 d->entries = entries;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002846
2847 return d;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002848
2849 err:
2850 free(d);
2851 free(entries);
2852 return NULL;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002853}
2854
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002855static void free_dcache_tx(struct dcache_tx *dc)
2856{
2857 free(dc->entries);
2858 dc->entries = NULL;
2859 free(dc);
2860}
2861
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002862/*
2863 * Allocate a cache of dictionary entries with <name> as name and <max_entries>
2864 * as maximum of entries.
2865 * Return the dictionay cache if succeeded, NULL if not.
2866 * Must be deallocated calling free_dcache().
2867 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002868static struct dcache *new_dcache(size_t max_entries)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002869{
2870 struct dcache_tx *dc_tx;
2871 struct dcache *dc;
2872 struct dcache_rx *dc_rx;
2873
2874 dc = calloc(1, sizeof *dc);
2875 dc_tx = new_dcache_tx(max_entries);
2876 dc_rx = calloc(max_entries, sizeof *dc_rx);
2877 if (!dc || !dc_tx || !dc_rx)
2878 goto err;
2879
2880 dc->tx = dc_tx;
2881 dc->rx = dc_rx;
2882 dc->max_entries = max_entries;
2883
2884 return dc;
2885
2886 err:
2887 free(dc);
2888 free(dc_tx);
2889 free(dc_rx);
2890 return NULL;
2891}
2892
2893/*
2894 * Deallocate a cache of dictionary entries.
2895 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002896static inline void free_dcache(struct dcache *dc)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002897{
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002898 free_dcache_tx(dc->tx);
2899 dc->tx = NULL;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002900 free(dc->rx); dc->rx = NULL;
2901 free(dc);
2902}
2903
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002904
2905/*
2906 * Look for the dictionary entry with the value of <i> in <d> cache of dictionary
2907 * entries used upon transmission.
2908 * Return the entry if found, NULL if not.
2909 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002910static struct ebpt_node *dcache_tx_lookup_value(struct dcache_tx *d,
2911 struct dcache_tx_entry *i)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002912{
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002913 return ebpt_lookup(&d->cached_entries, i->entry.key);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002914}
2915
2916/*
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002917 * Flush <dc> cache.
2918 * Always succeeds.
2919 */
2920static inline void flush_dcache(struct peer *peer)
2921{
2922 int i;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02002923 struct dcache *dc = peer->dcache;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002924
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002925 for (i = 0; i < dc->max_entries; i++)
2926 ebpt_delete(&dc->tx->entries[i]);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002927
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002928 memset(dc->rx, 0, dc->max_entries * sizeof *dc->rx);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002929}
2930
2931/*
2932 * Insert a dictionary entry in <dc> cache part used upon transmission (->tx)
2933 * with information provided by <i> dictionary cache entry (especially the value
2934 * to be inserted if not already). Return <i> if already present in the cache
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002935 * or something different of <i> if not.
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002936 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002937static struct ebpt_node *dcache_tx_insert(struct dcache *dc, struct dcache_tx_entry *i)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002938{
2939 struct dcache_tx *dc_tx;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002940 struct ebpt_node *o;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002941
2942 dc_tx = dc->tx;
2943 o = dcache_tx_lookup_value(dc_tx, i);
2944 if (o) {
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002945 /* Copy the ID. */
2946 i->id = o - dc->tx->entries;
2947 return &i->entry;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002948 }
2949
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002950 /* The new entry to put in cache */
2951 o = &dc_tx->entries[dc_tx->lru_key];
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002952
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002953 ebpt_delete(o);
2954 o->key = i->entry.key;
2955 ebpt_insert(&dc_tx->cached_entries, o);
2956 i->id = dc_tx->lru_key;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002957
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002958 /* Update the index for the next entry to put in cache */
2959 dc_tx->lru_key = (dc_tx->lru_key + 1) & (dc->max_entries - 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002960
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002961 return o;
2962}
Emeric Brunb3971ab2015-05-12 18:49:09 +02002963
2964/*
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02002965 * Allocate a dictionary cache for each peer of <peers> section.
2966 * Return 1 if succeeded, 0 if not.
2967 */
2968int peers_alloc_dcache(struct peers *peers)
2969{
2970 struct peer *p;
2971
2972 for (p = peers->remote; p; p = p->next) {
2973 p->dcache = new_dcache(PEER_STKT_CACHE_MAX_ENTRIES);
2974 if (!p->dcache)
2975 return 0;
2976 }
2977
2978 return 1;
2979}
2980
2981/*
Emeric Brunb3971ab2015-05-12 18:49:09 +02002982 * Function used to register a table for sync on a group of peers
2983 *
2984 */
2985void peers_register_table(struct peers *peers, struct stktable *table)
2986{
2987 struct shared_table *st;
2988 struct peer * curpeer;
2989 int id = 0;
2990
2991 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Vincent Bernat02779b62016-04-03 13:48:43 +02002992 st = calloc(1,sizeof(*st));
Emeric Brunb3971ab2015-05-12 18:49:09 +02002993 st->table = table;
2994 st->next = curpeer->tables;
2995 if (curpeer->tables)
2996 id = curpeer->tables->local_id;
2997 st->local_id = id + 1;
2998
2999 curpeer->tables = st;
3000 }
3001
3002 table->sync_task = peers->sync_task;
Emeric Brun2b920a12010-09-23 18:30:22 +02003003}
3004
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003005/*
3006 * Parse the "show peers" command arguments.
3007 * Returns 0 if succeeded, 1 if not with the ->msg of the appctx set as
3008 * error message.
3009 */
3010static int cli_parse_show_peers(char **args, char *payload, struct appctx *appctx, void *private)
3011{
3012 appctx->ctx.cfgpeers.target = NULL;
3013
3014 if (*args[2]) {
3015 struct peers *p;
3016
3017 for (p = cfg_peers; p; p = p->next) {
3018 if (!strcmp(p->id, args[2])) {
3019 appctx->ctx.cfgpeers.target = p;
3020 break;
3021 }
3022 }
3023
3024 if (!p) {
3025 appctx->ctx.cli.severity = LOG_ERR;
3026 appctx->ctx.cli.msg = "No such peers\n";
3027 appctx->st0 = CLI_ST_PRINT;
3028 return 1;
3029 }
3030 }
3031
3032 return 0;
3033}
3034
3035/*
3036 * This function dumps the peer state information of <peers> "peers" section.
3037 * Returns 0 if the output buffer is full and needs to be called again, non-zero if not.
3038 * Dedicated to be called by cli_io_handler_show_peers() cli I/O handler.
3039 */
3040static int peers_dump_head(struct buffer *msg, struct stream_interface *si, struct peers *peers)
3041{
3042 struct tm tm;
3043
3044 get_localtime(peers->last_change, &tm);
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003045 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 +02003046 peers,
3047 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
3048 tm.tm_hour, tm.tm_min, tm.tm_sec,
3049 peers->id, peers->state, peers->flags,
3050 peers->resync_timeout ?
3051 tick_is_expired(peers->resync_timeout, now_ms) ? "<PAST>" :
3052 human_time(TICKS_TO_MS(peers->resync_timeout - now_ms),
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003053 TICKS_TO_MS(1000)) : "<NEVER>",
3054 peers->sync_task ? peers->sync_task->calls : 0);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003055
3056 if (ci_putchk(si_ic(si), msg) == -1) {
3057 si_rx_room_blk(si);
3058 return 0;
3059 }
3060
3061 return 1;
3062}
3063
3064/*
3065 * This function dumps <peer> state information.
3066 * Returns 0 if the output buffer is full and needs to be called again, non-zero
3067 * if not. Dedicated to be called by cli_io_handler_show_peers() cli I/O handler.
3068 */
3069static int peers_dump_peer(struct buffer *msg, struct stream_interface *si, struct peer *peer)
3070{
3071 struct connection *conn;
3072 char pn[INET6_ADDRSTRLEN];
3073 struct stream_interface *peer_si;
3074 struct stream *peer_s;
3075 struct appctx *appctx;
3076 struct shared_table *st;
3077
3078 addr_to_str(&peer->addr, pn, sizeof pn);
3079 chunk_appendf(msg, " %p: id=%s(%s) addr=%s:%d status=%s reconnect=%s confirm=%u\n",
3080 peer, peer->id,
3081 peer->local ? "local" : "remote",
3082 pn, get_host_port(&peer->addr),
3083 statuscode_str(peer->statuscode),
3084 peer->reconnect ?
3085 tick_is_expired(peer->reconnect, now_ms) ? "<PAST>" :
3086 human_time(TICKS_TO_MS(peer->reconnect - now_ms),
3087 TICKS_TO_MS(1000)) : "<NEVER>",
3088 peer->confirm);
3089
3090 chunk_appendf(&trash, " flags=0x%x", peer->flags);
3091
3092 appctx = peer->appctx;
3093 if (!appctx)
3094 goto end;
3095
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003096 chunk_appendf(&trash, " appctx:%p st0=%d st1=%d task_calls=%u", appctx, appctx->st0, appctx->st1,
3097 appctx->t ? appctx->t->calls : 0);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003098
3099 peer_si = peer->appctx->owner;
3100 if (!peer_si)
3101 goto end;
3102
3103 peer_s = si_strm(peer_si);
3104 if (!peer_s)
3105 goto end;
3106
3107 chunk_appendf(&trash, " state=%s", si_state_str(si_opposite(peer_si)->state));
3108
3109 conn = objt_conn(strm_orig(peer_s));
3110 if (conn)
3111 chunk_appendf(&trash, "\n xprt=%s", conn_get_xprt_name(conn));
3112
3113 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
3114 case AF_INET:
3115 case AF_INET6:
3116 chunk_appendf(&trash, " src=%s:%d", pn, get_host_port(&conn->addr.from));
3117 break;
3118 case AF_UNIX:
3119 chunk_appendf(&trash, " src=unix:%d", strm_li(peer_s)->luid);
3120 break;
3121 }
3122
3123 if (conn)
3124 conn_get_to_addr(conn);
3125
3126 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
3127 case AF_INET:
3128 case AF_INET6:
3129 chunk_appendf(&trash, " addr=%s:%d", pn, get_host_port(&conn->addr.to));
3130 break;
3131 case AF_UNIX:
3132 chunk_appendf(&trash, " addr=unix:%d", strm_li(peer_s)->luid);
3133 break;
3134 }
3135
3136 if (peer->remote_table)
3137 chunk_appendf(&trash, "\n remote_table:%p id=%s local_id=%d remote_id=%d",
3138 peer->remote_table,
3139 peer->remote_table->table->id,
3140 peer->remote_table->local_id,
3141 peer->remote_table->remote_id);
3142
3143 if (peer->last_local_table)
3144 chunk_appendf(&trash, "\n last_local_table:%p id=%s local_id=%d remote_id=%d",
3145 peer->last_local_table,
3146 peer->last_local_table->table->id,
3147 peer->last_local_table->local_id,
3148 peer->last_local_table->remote_id);
3149
3150 if (peer->tables) {
3151 chunk_appendf(&trash, "\n shared tables:");
3152 for (st = peer->tables; st; st = st->next) {
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003153 int i, count;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003154 struct stktable *t;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003155 struct dcache *dcache;
3156
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003157 t = st->table;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003158 dcache = peer->dcache;
3159
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003160 chunk_appendf(&trash, "\n %p local_id=%d remote_id=%d "
3161 "flags=0x%x remote_data=0x%llx",
3162 st, st->local_id, st->remote_id,
3163 st->flags, (unsigned long long)st->remote_data);
3164 chunk_appendf(&trash, "\n last_acked=%u last_pushed=%u last_get=%u"
3165 " teaching_origin=%u update=%u",
3166 st->last_acked, st->last_pushed, st->last_get,
3167 st->teaching_origin, st->update);
3168 chunk_appendf(&trash, "\n table:%p id=%s update=%u localupdate=%u"
3169 " commitupdate=%u syncing=%u",
3170 t, t->id, t->update, t->localupdate, t->commitupdate, t->syncing);
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003171 chunk_appendf(&trash, "\n TX dictionary cache:");
3172 count = 0;
3173 for (i = 0; i < dcache->max_entries; i++) {
3174 struct ebpt_node *node;
3175 struct dict_entry *de;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003176
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003177 node = &dcache->tx->entries[i];
3178 if (!node->key)
3179 break;
3180
3181 if (!count++)
3182 chunk_appendf(&trash, "\n ");
3183 de = node->key;
3184 chunk_appendf(&trash, " %3u -> %s", i, (char *)de->value.key);
3185 count &= 0x3;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003186 }
3187 chunk_appendf(&trash, "\n RX dictionary cache:");
3188 count = 0;
3189 for (i = 0; i < dcache->max_entries; i++) {
3190 if (!count++)
3191 chunk_appendf(&trash, "\n ");
3192 chunk_appendf(&trash, " %3u -> %s", i,
3193 dcache->rx[i].de ?
3194 (char *)dcache->rx[i].de->value.key : "-");
3195 count &= 0x3;
3196 }
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003197 }
3198 }
3199
3200 end:
3201 chunk_appendf(&trash, "\n");
3202 if (ci_putchk(si_ic(si), msg) == -1) {
3203 si_rx_room_blk(si);
3204 return 0;
3205 }
3206
3207 return 1;
3208}
3209
3210/*
3211 * This function dumps all the peers of "peers" section.
3212 * Returns 0 if the output buffer is full and needs to be called
3213 * again, non-zero if not. It proceeds in an isolated thread, so
3214 * there is no thread safety issue here.
3215 */
3216static int cli_io_handler_show_peers(struct appctx *appctx)
3217{
3218 int show_all;
3219 int ret = 0, first_peers = 1;
3220 struct stream_interface *si = appctx->owner;
3221
3222 thread_isolate();
3223
3224 show_all = !appctx->ctx.cfgpeers.target;
3225
3226 chunk_reset(&trash);
3227
3228 while (appctx->st2 != STAT_ST_FIN) {
3229 switch (appctx->st2) {
3230 case STAT_ST_INIT:
3231 if (show_all)
3232 appctx->ctx.cfgpeers.peers = cfg_peers;
3233 else
3234 appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.target;
3235
3236 appctx->st2 = STAT_ST_LIST;
3237 /* fall through */
3238
3239 case STAT_ST_LIST:
3240 if (!appctx->ctx.cfgpeers.peers) {
3241 /* No more peers list. */
3242 appctx->st2 = STAT_ST_END;
3243 }
3244 else {
3245 if (!first_peers)
3246 chunk_appendf(&trash, "\n");
3247 else
3248 first_peers = 0;
3249 if (!peers_dump_head(&trash, si, appctx->ctx.cfgpeers.peers))
3250 goto out;
3251
3252 appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peers->remote;
3253 appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.peers->next;
3254 appctx->st2 = STAT_ST_INFO;
3255 }
3256 break;
3257
3258 case STAT_ST_INFO:
3259 if (!appctx->ctx.cfgpeers.peer) {
3260 /* End of peer list */
3261 if (show_all)
3262 appctx->st2 = STAT_ST_LIST;
3263 else
3264 appctx->st2 = STAT_ST_END;
3265 }
3266 else {
3267 if (!peers_dump_peer(&trash, si, appctx->ctx.cfgpeers.peer))
3268 goto out;
3269
3270 appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peer->next;
3271 }
3272 break;
3273
3274 case STAT_ST_END:
3275 appctx->st2 = STAT_ST_FIN;
3276 break;
3277 }
3278 }
3279 ret = 1;
3280 out:
3281 thread_release();
3282 return ret;
3283}
3284
3285/*
3286 * CLI keywords.
3287 */
3288static struct cli_kw_list cli_kws = {{ }, {
3289 { { "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, },
3290 {},
3291}};
3292
3293/* Register cli keywords */
3294INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
3295