blob: bece5a6a58d9c9d277d732bab836b191b807f654 [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écaille8d78fa72019-05-20 18:22:52 +0200253struct dcache_tx_entry *dcache_tx_insert(struct dcache *dc,
254 struct dcache_tx_entry *i);
255static 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;
527 struct dcache_tx_entry *cached_de;
528 struct dcache_tx_entry cde = {0};
529 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;
538 cde.value.key = de;
539 cached_de = dcache_tx_insert(dc, &cde);
540 if (!cached_de)
541 break;
542
543 /* Leave enough room to encode the remaining data length. */
544 end = beg = cursor + PEER_MSG_ENC_LENGTH_MAXLEN;
545 /* Encode the dictionary entry key */
546 intencode(cached_de->key.key + 1, &end);
547 if (cached_de != &cde) {
548 /* Encode the length of the dictionary entry data */
549 value_len = strlen(de->value.key);
550 intencode(value_len, &end);
551 /* Copy the data */
552 memcpy(end, de->value.key, value_len);
553 end += value_len;
554 }
555 /* Encode the length of the data */
556 data_len = end - beg;
557 intencode(data_len, &cursor);
558 memmove(cursor, beg, data_len);
559 cursor += data_len;
560 break;
561 }
Emeric Brun94900952015-06-11 18:25:54 +0200562 }
563 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200564 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100565 HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200566
567 /* Compute datalen */
568 datalen = (cursor - datamsg);
569
570 /* prepare message header */
571 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200572 peer_set_update_msg_type(&msg[1], use_identifier, use_timed);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200573 cursor = &msg[2];
574 intencode(datalen, &cursor);
575
576 /* move data after header */
577 memmove(cursor, datamsg, datalen);
578
579 /* return header size + data_len */
580 return (cursor - msg) + datalen;
581}
582
583/*
584 * This prepare the switch table message to targeted share table <st>.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800585 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200586 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
587 * check size)
588 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100589static int peer_prepare_switchmsg(char *msg, size_t size, struct peer_prep_params *params)
Emeric Brunb3971ab2015-05-12 18:49:09 +0200590{
591 int len;
592 unsigned short datalen;
Willy Tarreau83061a82018-07-13 11:56:34 +0200593 struct buffer *chunk;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200594 char *cursor, *datamsg, *chunkp, *chunkq;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200595 uint64_t data = 0;
Emeric Brun94900952015-06-11 18:25:54 +0200596 unsigned int data_type;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100597 struct shared_table *st;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200598
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100599 st = params->swtch.shared_table;
Frédéric Lécaille39143342019-05-24 14:32:27 +0200600 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200601
602 /* Encode data */
603
604 /* encode local id */
605 intencode(st->local_id, &cursor);
606
607 /* encode table name */
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100608 len = strlen(st->table->nid);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200609 intencode(len, &cursor);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100610 memcpy(cursor, st->table->nid, len);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200611 cursor += len;
612
613 /* encode table type */
614
615 intencode(st->table->type, &cursor);
616
617 /* encode table key size */
618 intencode(st->table->key_size, &cursor);
619
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200620 chunk = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200621 chunkp = chunkq = chunk->area;
Emeric Brun94900952015-06-11 18:25:54 +0200622 /* encode available known data types in table */
623 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
624 if (st->table->data_ofs[data_type]) {
625 switch (stktable_data_types[data_type].std_type) {
626 case STD_T_SINT:
627 case STD_T_UINT:
628 case STD_T_ULL:
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200629 case STD_T_DICT:
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200630 data |= 1 << data_type;
631 break;
Emeric Brun94900952015-06-11 18:25:54 +0200632 case STD_T_FRQP:
633 data |= 1 << data_type;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200634 intencode(data_type, &chunkq);
635 intencode(st->table->data_arg[data_type].u, &chunkq);
Emeric Brun94900952015-06-11 18:25:54 +0200636 break;
637 }
638 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200639 }
640 intencode(data, &cursor);
641
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200642 /* Encode stick-table entries duration. */
643 intencode(st->table->expire, &cursor);
644
645 if (chunkq > chunkp) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200646 chunk->data = chunkq - chunkp;
647 memcpy(cursor, chunk->area, chunk->data);
648 cursor += chunk->data;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200649 }
650
Emeric Brunb3971ab2015-05-12 18:49:09 +0200651 /* Compute datalen */
652 datalen = (cursor - datamsg);
Emeric Brun2b920a12010-09-23 18:30:22 +0200653
Emeric Brunb3971ab2015-05-12 18:49:09 +0200654 /* prepare message header */
655 msg[0] = PEER_MSG_CLASS_STICKTABLE;
656 msg[1] = PEER_MSG_STKT_DEFINE;
657 cursor = &msg[2];
658 intencode(datalen, &cursor);
Emeric Brun2b920a12010-09-23 18:30:22 +0200659
Emeric Brunb3971ab2015-05-12 18:49:09 +0200660 /* move data after header */
661 memmove(cursor, datamsg, datalen);
662
663 /* return header size + data_len */
664 return (cursor - msg) + datalen;
Emeric Brun2b920a12010-09-23 18:30:22 +0200665}
666
Emeric Brunb3971ab2015-05-12 18:49:09 +0200667/*
668 * This prepare the acknowledge message on the stick session <ts>, <st> is the considered
669 * stick table.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800670 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200671 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
672 * check size)
673 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100674static int peer_prepare_ackmsg(char *msg, size_t size, struct peer_prep_params *p)
Emeric Brunb3971ab2015-05-12 18:49:09 +0200675{
676 unsigned short datalen;
677 char *cursor, *datamsg;
678 uint32_t netinteger;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100679 struct shared_table *st;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200680
Frédéric Lécaille39143342019-05-24 14:32:27 +0200681 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200682
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100683 st = p->ack.shared_table;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200684 intencode(st->remote_id, &cursor);
685 netinteger = htonl(st->last_get);
686 memcpy(cursor, &netinteger, sizeof(netinteger));
687 cursor += sizeof(netinteger);
688
689 /* Compute datalen */
690 datalen = (cursor - datamsg);
691
692 /* prepare message header */
693 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Emeric Brune1ab8082015-08-21 11:48:54 +0200694 msg[1] = PEER_MSG_STKT_ACK;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200695 cursor = &msg[2];
696 intencode(datalen, &cursor);
697
698 /* move data after header */
699 memmove(cursor, datamsg, datalen);
700
701 /* return header size + data_len */
702 return (cursor - msg) + datalen;
703}
Emeric Brun2b920a12010-09-23 18:30:22 +0200704
705/*
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200706 * Function to deinit connected peer
707 */
708void __peer_session_deinit(struct peer *peer)
709{
710 struct stream_interface *si;
711 struct stream *s;
712 struct peers *peers;
713
714 if (!peer->appctx)
715 return;
716
717 si = peer->appctx->owner;
718 if (!si)
719 return;
720
721 s = si_strm(si);
722 if (!s)
723 return;
724
725 peers = strm_fe(s)->parent;
726 if (!peers)
727 return;
728
729 if (peer->appctx->st0 == PEER_SESS_ST_WAITMSG)
730 HA_ATOMIC_SUB(&connected_peers, 1);
731
732 HA_ATOMIC_SUB(&active_peers, 1);
733
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200734 flush_dcache(peer);
735
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200736 /* Re-init current table pointers to force announcement on re-connect */
737 peer->remote_table = peer->last_local_table = NULL;
738 peer->appctx = NULL;
739 if (peer->flags & PEER_F_LEARN_ASSIGN) {
740 /* unassign current peer for learning */
741 peer->flags &= ~(PEER_F_LEARN_ASSIGN);
742 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
743
744 /* reschedule a resync */
745 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000));
746 }
747 /* reset teaching and learning flags to 0 */
748 peer->flags &= PEER_TEACH_RESET;
749 peer->flags &= PEER_LEARN_RESET;
750 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
751}
752
753/*
Emeric Brun2b920a12010-09-23 18:30:22 +0200754 * Callback to release a session with a peer
755 */
Willy Tarreau00a37f02015-04-13 12:05:19 +0200756static void peer_session_release(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +0200757{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200758 struct peer *peer = appctx->ctx.peers.ptr;
Emeric Brun2b920a12010-09-23 18:30:22 +0200759
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100760 /* appctx->ctx.peers.ptr is not a peer session */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100761 if (appctx->st0 < PEER_SESS_ST_SENDSUCCESS)
Emeric Brun2b920a12010-09-23 18:30:22 +0200762 return;
763
764 /* peer session identified */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200765 if (peer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100766 HA_SPIN_LOCK(PEER_LOCK, &peer->lock);
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200767 if (peer->appctx == appctx)
768 __peer_session_deinit(peer);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100769 HA_SPIN_UNLOCK(PEER_LOCK, &peer->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +0200770 }
771}
772
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200773/* Retrieve the major and minor versions of peers protocol
774 * announced by a remote peer. <str> is a null-terminated
775 * string with the following format: "<maj_ver>.<min_ver>".
776 */
777static int peer_get_version(const char *str,
778 unsigned int *maj_ver, unsigned int *min_ver)
779{
780 unsigned int majv, minv;
781 const char *pos, *saved;
782 const char *end;
783
784 saved = pos = str;
785 end = str + strlen(str);
786
787 majv = read_uint(&pos, end);
788 if (saved == pos || *pos++ != '.')
789 return -1;
790
791 saved = pos;
792 minv = read_uint(&pos, end);
793 if (saved == pos || pos != end)
794 return -1;
795
796 *maj_ver = majv;
797 *min_ver = minv;
798
799 return 0;
800}
Emeric Brun2b920a12010-09-23 18:30:22 +0200801
802/*
Frédéric Lécaillece025572019-01-21 13:38:06 +0100803 * Parse a line terminated by an optional '\r' character, followed by a mandatory
804 * '\n' character.
805 * Returns 1 if succeeded or 0 if a '\n' character could not be found, and -1 if
806 * a line could not be read because the communication channel is closed.
807 */
808static inline int peer_getline(struct appctx *appctx)
809{
810 int n;
811 struct stream_interface *si = appctx->owner;
812
813 n = co_getline(si_oc(si), trash.area, trash.size);
814 if (!n)
815 return 0;
816
817 if (n < 0 || trash.area[n - 1] != '\n') {
818 appctx->st0 = PEER_SESS_ST_END;
819 return -1;
820 }
821
822 if (n > 1 && (trash.area[n - 2] == '\r'))
823 trash.area[n - 2] = 0;
824 else
825 trash.area[n - 1] = 0;
826
827 co_skip(si_oc(si), n);
828
829 return n;
830}
831
832/*
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100833 * Send a message after having called <peer_prepare_msg> to build it.
834 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
835 * Returns -1 if there was not enough room left to send the message,
836 * any other negative returned value must be considered as an error with an appcxt st0
837 * returned value equal to PEER_SESS_ST_END.
838 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100839static inline int peer_send_msg(struct appctx *appctx,
840 int (*peer_prepare_msg)(char *, size_t, struct peer_prep_params *),
841 struct peer_prep_params *params)
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100842{
843 int ret, msglen;
844 struct stream_interface *si = appctx->owner;
845
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100846 msglen = peer_prepare_msg(trash.area, trash.size, params);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100847 if (!msglen) {
848 /* internal error: message does not fit in trash */
849 appctx->st0 = PEER_SESS_ST_END;
850 return 0;
851 }
852
853 /* message to buffer */
854 ret = ci_putblk(si_ic(si), trash.area, msglen);
855 if (ret <= 0) {
856 if (ret == -1) {
857 /* No more write possible */
858 si_rx_room_blk(si);
859 return -1;
860 }
861 appctx->st0 = PEER_SESS_ST_END;
862 }
863
864 return ret;
865}
866
867/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100868 * Send a hello message.
869 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
870 * Returns -1 if there was not enough room left to send the message,
871 * any other negative returned value must be considered as an error with an appcxt st0
872 * returned value equal to PEER_SESS_ST_END.
873 */
874static inline int peer_send_hellomsg(struct appctx *appctx, struct peer *peer)
875{
876 struct peer_prep_params p = {
877 .hello.peer = peer,
878 };
879
880 return peer_send_msg(appctx, peer_prepare_hellomsg, &p);
881}
882
883/*
884 * Send a success peer handshake status message.
885 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
886 * Returns -1 if there was not enough room left to send the message,
887 * any other negative returned value must be considered as an error with an appcxt st0
888 * returned value equal to PEER_SESS_ST_END.
889 */
890static inline int peer_send_status_successmsg(struct appctx *appctx)
891{
892 return peer_send_msg(appctx, peer_prepare_status_successmsg, NULL);
893}
894
895/*
896 * Send a peer handshake status error message.
897 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
898 * Returns -1 if there was not enough room left to send the message,
899 * any other negative returned value must be considered as an error with an appcxt st0
900 * returned value equal to PEER_SESS_ST_END.
901 */
902static inline int peer_send_status_errormsg(struct appctx *appctx)
903{
904 struct peer_prep_params p = {
905 .error_status.st1 = appctx->st1,
906 };
907
908 return peer_send_msg(appctx, peer_prepare_status_errormsg, &p);
909}
910
911/*
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100912 * Send a stick-table switch message.
913 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
914 * Returns -1 if there was not enough room left to send the message,
915 * any other negative returned value must be considered as an error with an appcxt st0
916 * returned value equal to PEER_SESS_ST_END.
917 */
918static inline int peer_send_switchmsg(struct shared_table *st, struct appctx *appctx)
919{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100920 struct peer_prep_params p = {
921 .swtch.shared_table = st,
922 };
923
924 return peer_send_msg(appctx, peer_prepare_switchmsg, &p);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100925}
926
927/*
928 * Send a stick-table update acknowledgement message.
929 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
930 * Returns -1 if there was not enough room left to send the message,
931 * any other negative returned value must be considered as an error with an appcxt st0
932 * returned value equal to PEER_SESS_ST_END.
933 */
934static inline int peer_send_ackmsg(struct shared_table *st, struct appctx *appctx)
935{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100936 struct peer_prep_params p = {
937 .ack.shared_table = st,
938 };
939
940 return peer_send_msg(appctx, peer_prepare_ackmsg, &p);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100941}
942
943/*
Frédéric Lécaille87f554c2019-01-22 17:26:50 +0100944 * Send a stick-table update message.
945 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
946 * Returns -1 if there was not enough room left to send the message,
947 * any other negative returned value must be considered as an error with an appcxt st0
948 * returned value equal to PEER_SESS_ST_END.
949 */
950static inline int peer_send_updatemsg(struct shared_table *st, struct appctx *appctx, struct stksess *ts,
951 unsigned int updateid, int use_identifier, int use_timed)
952{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100953 struct peer_prep_params p = {
954 .updt.stksess = ts,
955 .updt.shared_table = st,
956 .updt.updateid = updateid,
957 .updt.use_identifier = use_identifier,
958 .updt.use_timed = use_timed,
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200959 .updt.peer = appctx->ctx.peers.ptr,
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100960 };
961
962 return peer_send_msg(appctx, peer_prepare_updatemsg, &p);
Frédéric Lécaille87f554c2019-01-22 17:26:50 +0100963}
964
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100965/*
966 * Build a peer protocol control class message.
967 * Returns the number of written bytes used to build the message if succeeded,
968 * 0 if not.
969 */
970static int peer_prepare_control_msg(char *msg, size_t size, struct peer_prep_params *p)
971{
972 if (size < sizeof p->control.head)
973 return 0;
974
975 msg[0] = p->control.head[0];
976 msg[1] = p->control.head[1];
977
978 return 2;
979}
Frédéric Lécaille6a8303d2019-01-22 22:25:17 +0100980
981/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100982 * Send a stick-table synchronization request message.
983 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
984 * Returns -1 if there was not enough room left to send the message,
985 * any other negative returned value must be considered as an error with an appctx st0
986 * returned value equal to PEER_SESS_ST_END.
987 */
988static inline int peer_send_resync_reqmsg(struct appctx *appctx)
989{
990 struct peer_prep_params p = {
991 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCREQ, },
992 };
993
994 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
995}
996
997/*
998 * Send a stick-table synchronization confirmation message.
999 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1000 * Returns -1 if there was not enough room left to send the message,
1001 * any other negative returned value must be considered as an error with an appctx st0
1002 * returned value equal to PEER_SESS_ST_END.
1003 */
1004static inline int peer_send_resync_confirmsg(struct appctx *appctx)
1005{
1006 struct peer_prep_params p = {
1007 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCCONFIRM, },
1008 };
1009
1010 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1011}
1012
1013/*
1014 * Send a stick-table synchronization finished message.
1015 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1016 * Returns -1 if there was not enough room left to send the message,
1017 * any other negative returned value must be considered as an error with an appctx st0
1018 * returned value equal to PEER_SESS_ST_END.
1019 */
1020static inline int peer_send_resync_finishedmsg(struct appctx *appctx, struct peer *peer)
1021{
1022 struct peer_prep_params p = {
1023 .control.head = { PEER_MSG_CLASS_CONTROL, },
1024 };
1025
1026 p.control.head[1] = (peer->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FINISHED ?
1027 PEER_MSG_CTRL_RESYNCFINISHED : PEER_MSG_CTRL_RESYNCPARTIAL;
1028
1029 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1030}
1031
1032/*
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001033 * Send a heartbeat message.
1034 * Return 0 if the message could not be built modifying the appctx st0 to PEER_SESS_ST_END value.
1035 * Returns -1 if there was not enough room left to send the message,
1036 * any other negative returned value must be considered as an error with an appctx st0
1037 * returned value equal to PEER_SESS_ST_END.
1038 */
1039static inline int peer_send_heartbeatmsg(struct appctx *appctx)
1040{
1041 struct peer_prep_params p = {
1042 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_HEARTBEAT, },
1043 };
1044
1045 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1046}
1047
1048/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001049 * Build a peer protocol error class message.
1050 * Returns the number of written bytes used to build the message if succeeded,
1051 * 0 if not.
1052 */
1053static int peer_prepare_error_msg(char *msg, size_t size, struct peer_prep_params *p)
1054{
1055 if (size < sizeof p->error.head)
1056 return 0;
1057
1058 msg[0] = p->error.head[0];
1059 msg[1] = p->error.head[1];
1060
1061 return 2;
1062}
1063
1064/*
1065 * Send a "size limit reached" error message.
1066 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1067 * Returns -1 if there was not enough room left to send the message,
1068 * any other negative returned value must be considered as an error with an appctx st0
1069 * returned value equal to PEER_SESS_ST_END.
1070 */
1071static inline int peer_send_error_size_limitmsg(struct appctx *appctx)
1072{
1073 struct peer_prep_params p = {
1074 .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_SIZELIMIT, },
1075 };
1076
1077 return peer_send_msg(appctx, peer_prepare_error_msg, &p);
1078}
1079
1080/*
1081 * Send a "peer protocol" error message.
1082 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1083 * Returns -1 if there was not enough room left to send the message,
1084 * any other negative returned value must be considered as an error with an appctx st0
1085 * returned value equal to PEER_SESS_ST_END.
1086 */
1087static inline int peer_send_error_protomsg(struct appctx *appctx)
1088{
1089 struct peer_prep_params p = {
1090 .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_PROTOCOL, },
1091 };
1092
1093 return peer_send_msg(appctx, peer_prepare_error_msg, &p);
1094}
1095
1096/*
Frédéric Lécaille6a8303d2019-01-22 22:25:17 +01001097 * Function used to lookup for recent stick-table updates associated with
1098 * <st> shared stick-table when a lesson must be taught a peer (PEER_F_LEARN_ASSIGN flag set).
1099 */
1100static inline struct stksess *peer_teach_process_stksess_lookup(struct shared_table *st)
1101{
1102 struct eb32_node *eb;
1103
1104 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1105 if (!eb) {
1106 eb = eb32_first(&st->table->updates);
1107 if (!eb || ((int)(eb->key - st->last_pushed) <= 0)) {
1108 st->table->commitupdate = st->last_pushed = st->table->localupdate;
1109 return NULL;
1110 }
1111 }
1112
1113 if ((int)(eb->key - st->table->localupdate) > 0) {
1114 st->table->commitupdate = st->last_pushed = st->table->localupdate;
1115 return NULL;
1116 }
1117
1118 return eb32_entry(eb, struct stksess, upd);
1119}
1120
1121/*
1122 * Function used to lookup for recent stick-table updates associated with
1123 * <st> shared stick-table during teach state 1 step.
1124 */
1125static inline struct stksess *peer_teach_stage1_stksess_lookup(struct shared_table *st)
1126{
1127 struct eb32_node *eb;
1128
1129 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1130 if (!eb) {
1131 st->flags |= SHTABLE_F_TEACH_STAGE1;
1132 eb = eb32_first(&st->table->updates);
1133 if (eb)
1134 st->last_pushed = eb->key - 1;
1135 return NULL;
1136 }
1137
1138 return eb32_entry(eb, struct stksess, upd);
1139}
1140
1141/*
1142 * Function used to lookup for recent stick-table updates associated with
1143 * <st> shared stick-table during teach state 2 step.
1144 */
1145static inline struct stksess *peer_teach_stage2_stksess_lookup(struct shared_table *st)
1146{
1147 struct eb32_node *eb;
1148
1149 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1150 if (!eb || eb->key > st->teaching_origin) {
1151 st->flags |= SHTABLE_F_TEACH_STAGE2;
1152 return NULL;
1153 }
1154
1155 return eb32_entry(eb, struct stksess, upd);
1156}
1157
1158/*
1159 * Generic function to emit update messages for <st> stick-table when a lesson must
1160 * be taught to the peer <p>.
1161 * <locked> must be set to 1 if the shared table <st> is already locked when entering
1162 * this function, 0 if not.
1163 *
1164 * This function temporary unlock/lock <st> when it sends stick-table updates or
1165 * when decrementing its refcount in case of any error when it sends this updates.
1166 *
1167 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1168 * Returns -1 if there was not enough room left to send the message,
1169 * any other negative returned value must be considered as an error with an appcxt st0
1170 * returned value equal to PEER_SESS_ST_END.
1171 * If it returns 0 or -1, this function leave <st> locked if already locked when entering this function
1172 * unlocked if not already locked when entering this function.
1173 */
1174static inline int peer_send_teachmsgs(struct appctx *appctx, struct peer *p,
1175 struct stksess *(*peer_stksess_lookup)(struct shared_table *),
1176 struct shared_table *st, int locked)
1177{
1178 int ret, new_pushed, use_timed;
1179
1180 ret = 1;
1181 use_timed = 0;
1182 if (st != p->last_local_table) {
1183 ret = peer_send_switchmsg(st, appctx);
1184 if (ret <= 0)
1185 return ret;
1186
1187 p->last_local_table = st;
1188 }
1189
1190 if (peer_stksess_lookup != peer_teach_process_stksess_lookup)
1191 use_timed = !(p->flags & PEER_F_DWNGRD);
1192
1193 /* We force new pushed to 1 to force identifier in update message */
1194 new_pushed = 1;
1195
1196 if (!locked)
1197 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1198
1199 while (1) {
1200 struct stksess *ts;
1201 unsigned updateid;
1202
1203 /* push local updates */
1204 ts = peer_stksess_lookup(st);
1205 if (!ts)
1206 break;
1207
1208 updateid = ts->upd.key;
1209 ts->ref_cnt++;
1210 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1211
1212 ret = peer_send_updatemsg(st, appctx, ts, updateid, new_pushed, use_timed);
1213 if (ret <= 0) {
1214 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1215 ts->ref_cnt--;
1216 if (!locked)
1217 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1218 return ret;
1219 }
1220
1221 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1222 ts->ref_cnt--;
1223 st->last_pushed = updateid;
1224
1225 if (peer_stksess_lookup == peer_teach_process_stksess_lookup &&
1226 (int)(st->last_pushed - st->table->commitupdate) > 0)
1227 st->table->commitupdate = st->last_pushed;
1228
1229 /* identifier may not needed in next update message */
1230 new_pushed = 0;
1231 }
1232
1233 out:
1234 if (!locked)
1235 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1236 return 1;
1237}
1238
1239/*
1240 * Function to emit update messages for <st> stick-table when a lesson must
1241 * be taught to the peer <p> (PEER_F_LEARN_ASSIGN flag set).
1242 *
1243 * Note that <st> shared stick-table is locked when calling this function.
1244 *
1245 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1246 * Returns -1 if there was not enough room left to send the message,
1247 * any other negative returned value must be considered as an error with an appcxt st0
1248 * returned value equal to PEER_SESS_ST_END.
1249 */
1250static inline int peer_send_teach_process_msgs(struct appctx *appctx, struct peer *p,
1251 struct shared_table *st)
1252{
1253 return peer_send_teachmsgs(appctx, p, peer_teach_process_stksess_lookup, st, 1);
1254}
1255
1256/*
1257 * Function to emit update messages for <st> stick-table when a lesson must
1258 * be taught to the peer <p> during teach state 1 step.
1259 *
1260 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1261 * Returns -1 if there was not enough room left to send the message,
1262 * any other negative returned value must be considered as an error with an appcxt st0
1263 * returned value equal to PEER_SESS_ST_END.
1264 */
1265static inline int peer_send_teach_stage1_msgs(struct appctx *appctx, struct peer *p,
1266 struct shared_table *st)
1267{
1268 return peer_send_teachmsgs(appctx, p, peer_teach_stage1_stksess_lookup, st, 0);
1269}
1270
1271/*
1272 * Function to emit update messages for <st> stick-table when a lesson must
1273 * be taught to the peer <p> during teach state 1 step.
1274 *
1275 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1276 * Returns -1 if there was not enough room left to send the message,
1277 * any other negative returned value must be considered as an error with an appcxt st0
1278 * returned value equal to PEER_SESS_ST_END.
1279 */
1280static inline int peer_send_teach_stage2_msgs(struct appctx *appctx, struct peer *p,
1281 struct shared_table *st)
1282{
1283 return peer_send_teachmsgs(appctx, p, peer_teach_stage2_stksess_lookup, st, 0);
1284}
1285
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001286
1287/*
1288 * Function used to parse a stick-table update message after it has been received
1289 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1290 * receipt buffer with <msg_end> being position of the end of the stick-table message.
1291 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1292 * was encountered.
1293 * <exp> must be set if the stick-table entry expires.
1294 * <updt> must be set for PEER_MSG_STKT_UPDATE or PEER_MSG_STKT_UPDATE_TIMED stick-table
1295 * messages, in this case the stick-table udpate message is received with a stick-table
1296 * update ID.
1297 * <totl> is the length of the stick-table update message computed upon receipt.
1298 */
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001299static int peer_treat_updatemsg(struct appctx *appctx, struct peer *p, int updt, int exp,
1300 char **msg_cur, char *msg_end, int msg_len, int totl)
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001301{
1302 struct stream_interface *si = appctx->owner;
1303 struct shared_table *st = p->remote_table;
1304 struct stksess *ts, *newts;
1305 uint32_t update;
1306 int expire;
1307 unsigned int data_type;
1308 void *data_ptr;
1309
1310 /* Here we have data message */
1311 if (!st)
1312 goto ignore_msg;
1313
1314 expire = MS_TO_TICKS(st->table->expire);
1315
1316 if (updt) {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001317 if (msg_len < sizeof(update))
1318 goto malformed_exit;
1319
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001320 memcpy(&update, *msg_cur, sizeof(update));
1321 *msg_cur += sizeof(update);
1322 st->last_get = htonl(update);
1323 }
1324 else {
1325 st->last_get++;
1326 }
1327
1328 if (exp) {
1329 size_t expire_sz = sizeof expire;
1330
Willy Tarreau1e82a142019-01-29 11:08:06 +01001331 if (*msg_cur + expire_sz > msg_end)
1332 goto malformed_exit;
1333
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001334 memcpy(&expire, *msg_cur, expire_sz);
1335 *msg_cur += expire_sz;
1336 expire = ntohl(expire);
1337 }
1338
1339 newts = stksess_new(st->table, NULL);
1340 if (!newts)
1341 goto ignore_msg;
1342
1343 if (st->table->type == SMP_T_STR) {
1344 unsigned int to_read, to_store;
1345
1346 to_read = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001347 if (!*msg_cur)
1348 goto malformed_free_newts;
1349
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001350 to_store = MIN(to_read, st->table->key_size - 1);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001351 if (*msg_cur + to_store > msg_end)
1352 goto malformed_free_newts;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001353
1354 memcpy(newts->key.key, *msg_cur, to_store);
1355 newts->key.key[to_store] = 0;
1356 *msg_cur += to_read;
1357 }
1358 else if (st->table->type == SMP_T_SINT) {
1359 unsigned int netinteger;
1360
Willy Tarreau1e82a142019-01-29 11:08:06 +01001361 if (*msg_cur + sizeof(netinteger) > msg_end)
1362 goto malformed_free_newts;
1363
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001364 memcpy(&netinteger, *msg_cur, sizeof(netinteger));
1365 netinteger = ntohl(netinteger);
1366 memcpy(newts->key.key, &netinteger, sizeof(netinteger));
1367 *msg_cur += sizeof(netinteger);
1368 }
1369 else {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001370 if (*msg_cur + st->table->key_size > msg_end)
1371 goto malformed_free_newts;
1372
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001373 memcpy(newts->key.key, *msg_cur, st->table->key_size);
1374 *msg_cur += st->table->key_size;
1375 }
1376
1377 /* lookup for existing entry */
1378 ts = stktable_set_entry(st->table, newts);
1379 if (ts != newts) {
1380 stksess_free(st->table, newts);
1381 newts = NULL;
1382 }
1383
1384 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
1385
1386 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001387 uint64_t decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001388
1389 if (!((1 << data_type) & st->remote_data))
1390 continue;
1391
Willy Tarreau1e82a142019-01-29 11:08:06 +01001392 decoded_int = intdecode(msg_cur, msg_end);
1393 if (!*msg_cur)
1394 goto malformed_unlock;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001395
Willy Tarreau1e82a142019-01-29 11:08:06 +01001396 switch (stktable_data_types[data_type].std_type) {
1397 case STD_T_SINT:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001398 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1399 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001400 stktable_data_cast(data_ptr, std_t_sint) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001401 break;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001402
Willy Tarreau1e82a142019-01-29 11:08:06 +01001403 case STD_T_UINT:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001404 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1405 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001406 stktable_data_cast(data_ptr, std_t_uint) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001407 break;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001408
Willy Tarreau1e82a142019-01-29 11:08:06 +01001409 case STD_T_ULL:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001410 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1411 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001412 stktable_data_cast(data_ptr, std_t_ull) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001413 break;
Willy Tarreau1e82a142019-01-29 11:08:06 +01001414
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001415 case STD_T_FRQP: {
1416 struct freq_ctr_period data;
1417
1418 /* First bit is reserved for the freq_ctr_period lock
1419 Note: here we're still protected by the stksess lock
1420 so we don't need to update the update the freq_ctr_period
1421 using its internal lock */
1422
Willy Tarreau1e82a142019-01-29 11:08:06 +01001423 data.curr_tick = tick_add(now_ms, -decoded_int) & ~0x1;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001424 data.curr_ctr = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001425 if (!*msg_cur)
1426 goto malformed_unlock;
1427
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001428 data.prev_ctr = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001429 if (!*msg_cur)
1430 goto malformed_unlock;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001431
1432 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1433 if (data_ptr)
1434 stktable_data_cast(data_ptr, std_t_frqp) = data;
1435 break;
1436 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001437 case STD_T_DICT: {
1438 struct buffer *chunk;
1439 size_t data_len, value_len;
1440 unsigned int id;
1441 struct dict_entry *de;
1442 struct dcache *dc;
1443
1444 data_len = decoded_int;
1445 if (*msg_cur + data_len > msg_end)
1446 goto malformed_unlock;
1447
1448 id = intdecode(msg_cur, msg_end);
1449 if (!*msg_cur || !id)
1450 goto malformed_unlock;
1451
1452 dc = p->dcache;
1453 if (*msg_cur == msg_end) {
1454 /* Dictionary entry key without value. */
1455 if (id > dc->max_entries)
1456 break;
1457 /* IDs sent over the network are numbered from 1. */
1458 de = dc->rx[id - 1].de;
1459 }
1460 else {
1461 chunk = get_trash_chunk();
1462 value_len = intdecode(msg_cur, msg_end);
1463 if (!*msg_cur || *msg_cur + value_len > msg_end ||
1464 unlikely(value_len + 1 >= chunk->size))
1465 goto malformed_unlock;
1466
1467 chunk_memcpy(chunk, *msg_cur, value_len);
1468 chunk->area[chunk->data] = '\0';
1469 de = dict_insert(&server_name_dict, chunk->area);
1470 dc->rx[id - 1].de = de;
1471 }
1472 if (de) {
1473 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1474 if (data_ptr)
1475 stktable_data_cast(data_ptr, std_t_dict) = de;
1476 }
1477 break;
1478 }
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001479 }
1480 }
1481 /* Force new expiration */
1482 ts->expire = tick_add(now_ms, expire);
1483
1484 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1485 stktable_touch_remote(st->table, ts, 1);
1486 return 1;
1487
1488 ignore_msg:
1489 /* skip consumed message */
1490 co_skip(si_oc(si), totl);
1491 return 0;
Willy Tarreau1e82a142019-01-29 11:08:06 +01001492
1493 malformed_unlock:
1494 /* malformed message */
1495 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1496 stktable_touch_remote(st->table, ts, 1);
1497 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1498 return 0;
1499
1500 malformed_free_newts:
1501 /* malformed message */
1502 stksess_free(st->table, newts);
1503 malformed_exit:
1504 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1505 return 0;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001506}
1507
Frédéric Lécaille87f554c2019-01-22 17:26:50 +01001508/*
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001509 * Function used to parse a stick-table update acknowledgement message after it
1510 * has been received by <p> peer with <msg_cur> as address of the pointer to the position in the
1511 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1512 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1513 * was encountered.
1514 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1515 */
1516static inline int peer_treat_ackmsg(struct appctx *appctx, struct peer *p,
1517 char **msg_cur, char *msg_end)
1518{
1519 /* ack message */
1520 uint32_t table_id ;
1521 uint32_t update;
1522 struct shared_table *st;
1523
1524 table_id = intdecode(msg_cur, msg_end);
1525 if (!*msg_cur || (*msg_cur + sizeof(update) > msg_end)) {
1526 /* malformed message */
1527 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1528 return 0;
1529 }
1530
1531 memcpy(&update, *msg_cur, sizeof(update));
1532 update = ntohl(update);
1533
1534 for (st = p->tables; st; st = st->next) {
1535 if (st->local_id == table_id) {
1536 st->update = update;
1537 break;
1538 }
1539 }
1540
1541 return 1;
1542}
1543
1544/*
1545 * Function used to parse a stick-table switch message after it has been received
1546 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1547 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1548 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1549 * was encountered.
1550 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1551 */
1552static inline int peer_treat_switchmsg(struct appctx *appctx, struct peer *p,
1553 char **msg_cur, char *msg_end)
1554{
1555 struct shared_table *st;
1556 int table_id;
1557
1558 table_id = intdecode(msg_cur, msg_end);
1559 if (!*msg_cur) {
1560 /* malformed message */
1561 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1562 return 0;
1563 }
1564
1565 p->remote_table = NULL;
1566 for (st = p->tables; st; st = st->next) {
1567 if (st->remote_id == table_id) {
1568 p->remote_table = st;
1569 break;
1570 }
1571 }
1572
1573 return 1;
1574}
1575
1576/*
1577 * Function used to parse a stick-table definition message after it has been received
1578 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1579 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1580 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1581 * was encountered.
1582 * <totl> is the length of the stick-table update message computed upon receipt.
1583 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1584 */
1585static inline int peer_treat_definemsg(struct appctx *appctx, struct peer *p,
1586 char **msg_cur, char *msg_end, int totl)
1587{
1588 struct stream_interface *si = appctx->owner;
1589 int table_id_len;
1590 struct shared_table *st;
1591 int table_type;
1592 int table_keylen;
1593 int table_id;
1594 uint64_t table_data;
1595
1596 table_id = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001597 if (!*msg_cur)
1598 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001599
1600 table_id_len = 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 p->remote_table = NULL;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001605 if (!table_id_len || (*msg_cur + table_id_len) >= msg_end)
1606 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001607
1608 for (st = p->tables; st; st = st->next) {
1609 /* Reset IDs */
1610 if (st->remote_id == table_id)
1611 st->remote_id = 0;
1612
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001613 if (!p->remote_table && (table_id_len == strlen(st->table->nid)) &&
1614 (memcmp(st->table->nid, *msg_cur, table_id_len) == 0))
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001615 p->remote_table = st;
1616 }
1617
1618 if (!p->remote_table)
1619 goto ignore_msg;
1620
1621 *msg_cur += table_id_len;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001622 if (*msg_cur >= msg_end)
1623 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001624
1625 table_type = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001626 if (!*msg_cur)
1627 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001628
1629 table_keylen = 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_data = 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 if (p->remote_table->table->type != table_type
1638 || p->remote_table->table->key_size != table_keylen) {
1639 p->remote_table = NULL;
1640 goto ignore_msg;
1641 }
1642
1643 p->remote_table->remote_data = table_data;
1644 p->remote_table->remote_id = table_id;
1645 return 1;
1646
1647 ignore_msg:
1648 co_skip(si_oc(si), totl);
1649 return 0;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001650
1651 malformed_exit:
1652 /* malformed message */
1653 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1654 return 0;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001655}
1656
1657/*
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001658 * Receive a stick-table message.
1659 * Returns 1 if there was no error, if not, returns 0 if not enough data were available,
1660 * -1 if there was an error updating the appctx state st0 accordingly.
1661 */
1662static inline int peer_recv_msg(struct appctx *appctx, char *msg_head, size_t msg_head_sz,
1663 uint32_t *msg_len, int *totl)
1664{
1665 int reql;
1666 struct stream_interface *si = appctx->owner;
1667
1668 reql = co_getblk(si_oc(si), msg_head, 2 * sizeof(char), *totl);
1669 if (reql <= 0) /* closed or EOL not found */
1670 goto incomplete;
1671
1672 *totl += reql;
1673
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +02001674 if (!(msg_head[1] & PEER_MSG_STKT_BIT_MASK))
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001675 return 1;
1676
1677 /* Read and Decode message length */
1678 reql = co_getblk(si_oc(si), &msg_head[2], sizeof(char), *totl);
1679 if (reql <= 0) /* closed */
1680 goto incomplete;
1681
1682 *totl += reql;
1683
Frédéric Lécaille32b55732019-06-03 18:29:51 +02001684 if ((unsigned int)msg_head[2] < PEER_ENC_2BYTES_MIN) {
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001685 *msg_len = msg_head[2];
1686 }
1687 else {
1688 int i;
1689 char *cur;
1690 char *end;
1691
1692 for (i = 3 ; i < msg_head_sz ; i++) {
1693 reql = co_getblk(si_oc(si), &msg_head[i], sizeof(char), *totl);
1694 if (reql <= 0) /* closed */
1695 goto incomplete;
1696
1697 *totl += reql;
1698
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +02001699 if (!(msg_head[i] & PEER_MSG_STKT_BIT_MASK))
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001700 break;
1701 }
1702
1703 if (i == msg_head_sz) {
1704 /* malformed message */
1705 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1706 return -1;
1707 }
1708 end = msg_head + msg_head_sz;
1709 cur = &msg_head[2];
1710 *msg_len = intdecode(&cur, end);
1711 if (!cur) {
1712 /* malformed message */
1713 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1714 return -1;
1715 }
1716 }
1717
1718 /* Read message content */
1719 if (*msg_len) {
1720 if (*msg_len > trash.size) {
1721 /* Status code is not success, abort */
1722 appctx->st0 = PEER_SESS_ST_ERRSIZE;
1723 return -1;
1724 }
1725
1726 reql = co_getblk(si_oc(si), trash.area, *msg_len, *totl);
1727 if (reql <= 0) /* closed */
1728 goto incomplete;
1729 *totl += reql;
1730 }
1731
1732 return 1;
1733
1734 incomplete:
1735 if (reql < 0) {
1736 /* there was an error */
1737 appctx->st0 = PEER_SESS_ST_END;
1738 return -1;
1739 }
1740
1741 return 0;
1742}
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001743
1744/*
1745 * Treat the awaited message with <msg_head> as header.*
1746 * Return 1 if succeeded, 0 if not.
1747 */
1748static inline int peer_treat_awaited_msg(struct appctx *appctx, struct peer *peer, unsigned char *msg_head,
1749 char **msg_cur, char *msg_end, int msg_len, int totl)
1750{
1751 struct stream_interface *si = appctx->owner;
1752 struct stream *s = si_strm(si);
1753 struct peers *peers = strm_fe(s)->parent;
1754
1755 if (msg_head[0] == PEER_MSG_CLASS_CONTROL) {
1756 if (msg_head[1] == PEER_MSG_CTRL_RESYNCREQ) {
1757 struct shared_table *st;
1758 /* Reset message: remote need resync */
1759
1760 /* prepare tables fot a global push */
1761 for (st = peer->tables; st; st = st->next) {
1762 st->teaching_origin = st->last_pushed = st->table->update;
1763 st->flags = 0;
1764 }
1765
1766 /* reset teaching flags to 0 */
1767 peer->flags &= PEER_TEACH_RESET;
1768
1769 /* flag to start to teach lesson */
1770 peer->flags |= PEER_F_TEACH_PROCESS;
1771 }
1772 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCFINISHED) {
1773 if (peer->flags & PEER_F_LEARN_ASSIGN) {
1774 peer->flags &= ~PEER_F_LEARN_ASSIGN;
1775 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
1776 peers->flags |= (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE);
1777 }
1778 peer->confirm++;
1779 }
1780 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCPARTIAL) {
1781 if (peer->flags & PEER_F_LEARN_ASSIGN) {
1782 peer->flags &= ~PEER_F_LEARN_ASSIGN;
1783 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
1784
1785 peer->flags |= PEER_F_LEARN_NOTUP2DATE;
Frédéric Lécaille54bff832019-03-26 10:25:20 +01001786 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT));
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001787 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
1788 }
1789 peer->confirm++;
1790 }
1791 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCCONFIRM) {
1792 struct shared_table *st;
1793
1794 /* If stopping state */
1795 if (stopping) {
1796 /* Close session, push resync no more needed */
1797 peer->flags |= PEER_F_TEACH_COMPLETE;
1798 appctx->st0 = PEER_SESS_ST_END;
1799 return 0;
1800 }
1801 for (st = peer->tables; st; st = st->next) {
1802 st->update = st->last_pushed = st->teaching_origin;
1803 st->flags = 0;
1804 }
1805
1806 /* reset teaching flags to 0 */
1807 peer->flags &= PEER_TEACH_RESET;
1808 }
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001809 else if (msg_head[1] == PEER_MSG_CTRL_HEARTBEAT) {
Frédéric Lécaille54bff832019-03-26 10:25:20 +01001810 peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001811 }
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001812 }
1813 else if (msg_head[0] == PEER_MSG_CLASS_STICKTABLE) {
1814 if (msg_head[1] == PEER_MSG_STKT_DEFINE) {
1815 if (!peer_treat_definemsg(appctx, peer, msg_cur, msg_end, totl))
1816 return 0;
1817 }
1818 else if (msg_head[1] == PEER_MSG_STKT_SWITCH) {
1819 if (!peer_treat_switchmsg(appctx, peer, msg_cur, msg_end))
1820 return 0;
1821 }
1822 else if (msg_head[1] == PEER_MSG_STKT_UPDATE ||
1823 msg_head[1] == PEER_MSG_STKT_INCUPDATE ||
1824 msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED ||
1825 msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED) {
1826 int update, expire;
1827
1828 update = msg_head[1] == PEER_MSG_STKT_UPDATE || msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED;
1829 expire = msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED || msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED;
1830 if (!peer_treat_updatemsg(appctx, peer, update, expire,
1831 msg_cur, msg_end, msg_len, totl))
1832 return 0;
1833
1834 }
1835 else if (msg_head[1] == PEER_MSG_STKT_ACK) {
1836 if (!peer_treat_ackmsg(appctx, peer, msg_cur, msg_end))
1837 return 0;
1838 }
1839 }
1840 else if (msg_head[0] == PEER_MSG_CLASS_RESERVED) {
1841 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1842 return 0;
1843 }
1844
1845 return 1;
1846}
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01001847
1848
1849/*
1850 * Send any message to <peer> peer.
1851 * Returns 1 if succeeded, or -1 or 0 if failed.
1852 * -1 means an internal error occured, 0 is for a peer protocol error leading
1853 * to a peer state change (from the peer I/O handler point of view).
1854 */
1855static inline int peer_send_msgs(struct appctx *appctx, struct peer *peer)
1856{
1857 int repl;
1858 struct stream_interface *si = appctx->owner;
1859 struct stream *s = si_strm(si);
1860 struct peers *peers = strm_fe(s)->parent;
1861
1862 /* Need to request a resync */
1863 if ((peer->flags & PEER_F_LEARN_ASSIGN) &&
1864 (peers->flags & PEERS_F_RESYNC_ASSIGN) &&
1865 !(peers->flags & PEERS_F_RESYNC_PROCESS)) {
1866
1867 repl = peer_send_resync_reqmsg(appctx);
1868 if (repl <= 0)
1869 return repl;
1870
1871 peers->flags |= PEERS_F_RESYNC_PROCESS;
1872 }
1873
1874 /* Nothing to read, now we start to write */
1875 if (peer->tables) {
1876 struct shared_table *st;
1877 struct shared_table *last_local_table;
1878
1879 last_local_table = peer->last_local_table;
1880 if (!last_local_table)
1881 last_local_table = peer->tables;
1882 st = last_local_table->next;
1883
1884 while (1) {
1885 if (!st)
1886 st = peer->tables;
1887
1888 /* It remains some updates to ack */
1889 if (st->last_get != st->last_acked) {
1890 repl = peer_send_ackmsg(st, appctx);
1891 if (repl <= 0)
1892 return repl;
1893
1894 st->last_acked = st->last_get;
1895 }
1896
1897 if (!(peer->flags & PEER_F_TEACH_PROCESS)) {
1898 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1899 if (!(peer->flags & PEER_F_LEARN_ASSIGN) &&
1900 ((int)(st->last_pushed - st->table->localupdate) < 0)) {
1901
1902 repl = peer_send_teach_process_msgs(appctx, peer, st);
1903 if (repl <= 0) {
1904 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1905 return repl;
1906 }
1907 }
1908 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1909 }
1910 else {
1911 if (!(st->flags & SHTABLE_F_TEACH_STAGE1)) {
1912 repl = peer_send_teach_stage1_msgs(appctx, peer, st);
1913 if (repl <= 0)
1914 return repl;
1915 }
1916
1917 if (!(st->flags & SHTABLE_F_TEACH_STAGE2)) {
1918 repl = peer_send_teach_stage2_msgs(appctx, peer, st);
1919 if (repl <= 0)
1920 return repl;
1921 }
1922 }
1923
1924 if (st == last_local_table)
1925 break;
1926 st = st->next;
1927 }
1928 }
1929
1930 if ((peer->flags & PEER_F_TEACH_PROCESS) && !(peer->flags & PEER_F_TEACH_FINISHED)) {
1931 repl = peer_send_resync_finishedmsg(appctx, peer);
1932 if (repl <= 0)
1933 return repl;
1934
1935 /* flag finished message sent */
1936 peer->flags |= PEER_F_TEACH_FINISHED;
1937 }
1938
1939 /* Confirm finished or partial messages */
1940 while (peer->confirm) {
1941 repl = peer_send_resync_confirmsg(appctx);
1942 if (repl <= 0)
1943 return repl;
1944
1945 peer->confirm--;
1946 }
1947
1948 return 1;
1949}
1950
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001951/*
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01001952 * Read and parse a first line of a "hello" peer protocol message.
1953 * Returns 0 if could not read a line, -1 if there was a read error or
1954 * the line is malformed, 1 if succeeded.
1955 */
1956static inline int peer_getline_version(struct appctx *appctx,
1957 unsigned int *maj_ver, unsigned int *min_ver)
1958{
1959 int reql;
1960
1961 reql = peer_getline(appctx);
1962 if (!reql)
1963 return 0;
1964
1965 if (reql < 0)
1966 return -1;
1967
1968 /* test protocol */
1969 if (strncmp(PEER_SESSION_PROTO_NAME " ", trash.area, proto_len + 1) != 0) {
1970 appctx->st0 = PEER_SESS_ST_EXIT;
1971 appctx->st1 = PEER_SESS_SC_ERRPROTO;
1972 return -1;
1973 }
1974 if (peer_get_version(trash.area + proto_len + 1, maj_ver, min_ver) == -1 ||
1975 *maj_ver != PEER_MAJOR_VER || *min_ver > PEER_MINOR_VER) {
1976 appctx->st0 = PEER_SESS_ST_EXIT;
1977 appctx->st1 = PEER_SESS_SC_ERRVERSION;
1978 return -1;
1979 }
1980
1981 return 1;
1982}
1983
1984/*
1985 * Read and parse a second line of a "hello" peer protocol message.
1986 * Returns 0 if could not read a line, -1 if there was a read error or
1987 * the line is malformed, 1 if succeeded.
1988 */
1989static inline int peer_getline_host(struct appctx *appctx)
1990{
1991 int reql;
1992
1993 reql = peer_getline(appctx);
1994 if (!reql)
1995 return 0;
1996
1997 if (reql < 0)
1998 return -1;
1999
2000 /* test hostname match */
2001 if (strcmp(localpeer, trash.area) != 0) {
2002 appctx->st0 = PEER_SESS_ST_EXIT;
2003 appctx->st1 = PEER_SESS_SC_ERRHOST;
2004 return -1;
2005 }
2006
2007 return 1;
2008}
2009
2010/*
2011 * Read and parse a last line of a "hello" peer protocol message.
2012 * Returns 0 if could not read a character, -1 if there was a read error or
2013 * the line is malformed, 1 if succeeded.
2014 * Set <curpeer> accordingly (the remote peer sending the "hello" message).
2015 */
2016static inline int peer_getline_last(struct appctx *appctx, struct peer **curpeer)
2017{
2018 char *p;
2019 int reql;
2020 struct peer *peer;
2021 struct stream_interface *si = appctx->owner;
2022 struct stream *s = si_strm(si);
2023 struct peers *peers = strm_fe(s)->parent;
2024
2025 reql = peer_getline(appctx);
2026 if (!reql)
2027 return 0;
2028
2029 if (reql < 0)
2030 return -1;
2031
2032 /* parse line "<peer name> <pid> <relative_pid>" */
2033 p = strchr(trash.area, ' ');
2034 if (!p) {
2035 appctx->st0 = PEER_SESS_ST_EXIT;
2036 appctx->st1 = PEER_SESS_SC_ERRPROTO;
2037 return -1;
2038 }
2039 *p = 0;
2040
2041 /* lookup known peer */
2042 for (peer = peers->remote; peer; peer = peer->next) {
2043 if (strcmp(peer->id, trash.area) == 0)
2044 break;
2045 }
2046
2047 /* if unknown peer */
2048 if (!peer) {
2049 appctx->st0 = PEER_SESS_ST_EXIT;
2050 appctx->st1 = PEER_SESS_SC_ERRPEER;
2051 return -1;
2052 }
2053 *curpeer = peer;
2054
2055 return 1;
2056}
2057
2058/*
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002059 * Init <peer> peer after having accepted it at peer protocol level.
2060 */
2061static inline void init_accepted_peer(struct peer *peer, struct peers *peers)
2062{
2063 struct shared_table *st;
2064
2065 /* Register status code */
2066 peer->statuscode = PEER_SESS_SC_SUCCESSCODE;
2067
2068 /* Awake main task */
2069 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
2070
2071 /* Init confirm counter */
2072 peer->confirm = 0;
2073
2074 /* Init cursors */
2075 for (st = peer->tables; st ; st = st->next) {
2076 st->last_get = st->last_acked = 0;
2077 st->teaching_origin = st->last_pushed = st->update;
2078 }
2079
2080 /* reset teaching and learning flags to 0 */
2081 peer->flags &= PEER_TEACH_RESET;
2082 peer->flags &= PEER_LEARN_RESET;
2083
2084 /* if current peer is local */
2085 if (peer->local) {
2086 /* if current host need resyncfrom local and no process assined */
2087 if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL &&
2088 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2089 /* assign local peer for a lesson, consider lesson already requested */
2090 peer->flags |= PEER_F_LEARN_ASSIGN;
2091 peers->flags |= (PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
2092 }
2093
2094 }
2095 else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
2096 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2097 /* assign peer for a lesson */
2098 peer->flags |= PEER_F_LEARN_ASSIGN;
2099 peers->flags |= PEERS_F_RESYNC_ASSIGN;
2100 }
2101}
2102
2103/*
2104 * Init <peer> peer after having connected it at peer protocol level.
2105 */
2106static inline void init_connected_peer(struct peer *peer, struct peers *peers)
2107{
2108 struct shared_table *st;
2109
2110 /* Init cursors */
2111 for (st = peer->tables; st ; st = st->next) {
2112 st->last_get = st->last_acked = 0;
2113 st->teaching_origin = st->last_pushed = st->update;
2114 }
2115
2116 /* Init confirm counter */
2117 peer->confirm = 0;
2118
2119 /* reset teaching and learning flags to 0 */
2120 peer->flags &= PEER_TEACH_RESET;
2121 peer->flags &= PEER_LEARN_RESET;
2122
2123 /* If current peer is local */
2124 if (peer->local) {
2125 /* flag to start to teach lesson */
2126 peer->flags |= PEER_F_TEACH_PROCESS;
2127 }
2128 else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
2129 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2130 /* If peer is remote and resync from remote is needed,
2131 and no peer currently assigned */
2132
2133 /* assign peer for a lesson */
2134 peer->flags |= PEER_F_LEARN_ASSIGN;
2135 peers->flags |= PEERS_F_RESYNC_ASSIGN;
2136 }
2137}
2138
2139/*
Emeric Brun2b920a12010-09-23 18:30:22 +02002140 * IO Handler to handle message exchance with a peer
2141 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02002142static void peer_io_handler(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +02002143{
Willy Tarreau00a37f02015-04-13 12:05:19 +02002144 struct stream_interface *si = appctx->owner;
Willy Tarreau87b09662015-04-03 00:22:06 +02002145 struct stream *s = si_strm(si);
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002146 struct peers *curpeers = strm_fe(s)->parent;
Emeric Brun80527f52017-06-19 17:46:37 +02002147 struct peer *curpeer = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002148 int reql = 0;
2149 int repl = 0;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002150 unsigned int maj_ver, min_ver;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002151 int prev_state;
Emeric Brun2b920a12010-09-23 18:30:22 +02002152
Joseph Herlant82b2f542018-11-15 12:19:14 -08002153 /* Check if the input buffer is available. */
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002154 if (si_ic(si)->buf.size == 0) {
2155 si_rx_room_blk(si);
2156 goto out;
2157 }
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002158
Emeric Brun2b920a12010-09-23 18:30:22 +02002159 while (1) {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002160 prev_state = appctx->st0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002161switchstate:
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002162 maj_ver = min_ver = (unsigned int)-1;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002163 switch(appctx->st0) {
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002164 case PEER_SESS_ST_ACCEPT:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002165 prev_state = appctx->st0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002166 appctx->ctx.peers.ptr = NULL;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002167 appctx->st0 = PEER_SESS_ST_GETVERSION;
Emeric Brun2b920a12010-09-23 18:30:22 +02002168 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002169 case PEER_SESS_ST_GETVERSION:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002170 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002171 reql = peer_getline_version(appctx, &maj_ver, &min_ver);
2172 if (reql <= 0) {
2173 if (!reql)
2174 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002175 goto switchstate;
2176 }
2177
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002178 appctx->st0 = PEER_SESS_ST_GETHOST;
Emeric Brun2b920a12010-09-23 18:30:22 +02002179 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002180 case PEER_SESS_ST_GETHOST:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002181 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002182 reql = peer_getline_host(appctx);
2183 if (reql <= 0) {
2184 if (!reql)
2185 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002186 goto switchstate;
2187 }
2188
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002189 appctx->st0 = PEER_SESS_ST_GETPEER;
Emeric Brun2b920a12010-09-23 18:30:22 +02002190 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002191 case PEER_SESS_ST_GETPEER: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002192 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002193 reql = peer_getline_last(appctx, &curpeer);
2194 if (reql <= 0) {
2195 if (!reql)
2196 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002197 goto switchstate;
2198 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002199
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002200 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Willy Tarreau9df94c22016-10-31 18:42:52 +01002201 if (curpeer->appctx && curpeer->appctx != appctx) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002202 if (curpeer->local) {
2203 /* Local connection, reply a retry */
2204 appctx->st0 = PEER_SESS_ST_EXIT;
2205 appctx->st1 = PEER_SESS_SC_TRYAGAIN;
2206 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02002207 }
Emeric Brun80527f52017-06-19 17:46:37 +02002208
2209 /* we're killing a connection, we must apply a random delay before
2210 * retrying otherwise the other end will do the same and we can loop
2211 * for a while.
2212 */
2213 curpeer->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + random() % 2000));
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002214 peer_session_forceshutdown(curpeer);
Emeric Brun2b920a12010-09-23 18:30:22 +02002215 }
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002216 if (maj_ver != (unsigned int)-1 && min_ver != (unsigned int)-1) {
2217 if (min_ver == PEER_DWNGRD_MINOR_VER) {
2218 curpeer->flags |= PEER_F_DWNGRD;
2219 }
2220 else {
2221 curpeer->flags &= ~PEER_F_DWNGRD;
2222 }
2223 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002224 curpeer->appctx = appctx;
2225 appctx->ctx.peers.ptr = curpeer;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002226 appctx->st0 = PEER_SESS_ST_SENDSUCCESS;
Olivier Houcharded879892019-03-08 18:53:43 +01002227 _HA_ATOMIC_ADD(&active_peers, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02002228 /* fall through */
2229 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002230 case PEER_SESS_ST_SENDSUCCESS: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002231 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002232 if (!curpeer) {
2233 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002234 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002235 if (curpeer->appctx != appctx) {
2236 appctx->st0 = PEER_SESS_ST_END;
2237 goto switchstate;
2238 }
2239 }
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002240
2241 repl = peer_send_status_successmsg(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002242 if (repl <= 0) {
2243 if (repl == -1)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002244 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002245 goto switchstate;
2246 }
2247
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002248 init_accepted_peer(curpeer, curpeers);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002249
Emeric Brun2b920a12010-09-23 18:30:22 +02002250 /* switch to waiting message state */
Olivier Houcharded879892019-03-08 18:53:43 +01002251 _HA_ATOMIC_ADD(&connected_peers, 1);
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002252 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +02002253 goto switchstate;
2254 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002255 case PEER_SESS_ST_CONNECT: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002256 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002257 if (!curpeer) {
2258 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002259 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002260 if (curpeer->appctx != appctx) {
2261 appctx->st0 = PEER_SESS_ST_END;
2262 goto switchstate;
2263 }
2264 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002265
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002266 repl = peer_send_hellomsg(appctx, curpeer);
Emeric Brun2b920a12010-09-23 18:30:22 +02002267 if (repl <= 0) {
2268 if (repl == -1)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002269 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002270 goto switchstate;
2271 }
2272
2273 /* switch to the waiting statuscode state */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002274 appctx->st0 = PEER_SESS_ST_GETSTATUS;
Emeric Brun2b920a12010-09-23 18:30:22 +02002275 /* fall through */
2276 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002277 case PEER_SESS_ST_GETSTATUS: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002278 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002279 if (!curpeer) {
2280 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002281 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002282 if (curpeer->appctx != appctx) {
2283 appctx->st0 = PEER_SESS_ST_END;
2284 goto switchstate;
2285 }
2286 }
2287
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002288 if (si_ic(si)->flags & CF_WRITE_PARTIAL)
Emeric Brunb3971ab2015-05-12 18:49:09 +02002289 curpeer->statuscode = PEER_SESS_SC_CONNECTEDCODE;
Emeric Brun2b920a12010-09-23 18:30:22 +02002290
Frédéric Lécaillece025572019-01-21 13:38:06 +01002291 reql = peer_getline(appctx);
2292 if (!reql)
2293 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002294
Frédéric Lécaillece025572019-01-21 13:38:06 +01002295 if (reql < 0)
2296 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02002297
2298 /* Register status code */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002299 curpeer->statuscode = atoi(trash.area);
Emeric Brun2b920a12010-09-23 18:30:22 +02002300
2301 /* Awake main task */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002302 task_wakeup(curpeers->sync_task, TASK_WOKEN_MSG);
Emeric Brun2b920a12010-09-23 18:30:22 +02002303
2304 /* If status code is success */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002305 if (curpeer->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002306 init_connected_peer(curpeer, curpeers);
Emeric Brun2b920a12010-09-23 18:30:22 +02002307 }
2308 else {
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002309 if (curpeer->statuscode == PEER_SESS_SC_ERRVERSION)
2310 curpeer->flags |= PEER_F_DWNGRD;
Emeric Brun2b920a12010-09-23 18:30:22 +02002311 /* Status code is not success, abort */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002312 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +02002313 goto switchstate;
2314 }
Olivier Houcharded879892019-03-08 18:53:43 +01002315 _HA_ATOMIC_ADD(&connected_peers, 1);
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002316 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +02002317 /* fall through */
2318 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002319 case PEER_SESS_ST_WAITMSG: {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002320 uint32_t msg_len = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002321 char *msg_cur = trash.area;
2322 char *msg_end = trash.area;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002323 unsigned char msg_head[7];
Emeric Brun2b920a12010-09-23 18:30:22 +02002324 int totl = 0;
2325
Willy Tarreau2d372c22018-11-05 17:12:27 +01002326 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002327 if (!curpeer) {
2328 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002329 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002330 if (curpeer->appctx != appctx) {
2331 appctx->st0 = PEER_SESS_ST_END;
2332 goto switchstate;
2333 }
2334 }
2335
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002336 reql = peer_recv_msg(appctx, (char *)msg_head, sizeof msg_head, &msg_len, &totl);
2337 if (reql <= 0) {
2338 if (reql == -1)
2339 goto switchstate;
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002340 goto send_msgs;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002341 }
Willy Tarreau86a446e2013-11-25 23:02:37 +01002342
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002343 msg_end += msg_len;
Frédéric Lécaille444243c2019-01-24 15:40:11 +01002344 if (!peer_treat_awaited_msg(appctx, curpeer, msg_head, &msg_cur, msg_end, msg_len, totl))
Emeric Brun2b920a12010-09-23 18:30:22 +02002345 goto switchstate;
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002346
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002347 curpeer->flags |= PEER_F_ALIVE;
2348
Emeric Brun2b920a12010-09-23 18:30:22 +02002349 /* skip consumed message */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002350 co_skip(si_oc(si), totl);
Emeric Brun2b920a12010-09-23 18:30:22 +02002351 /* loop on that state to peek next message */
Willy Tarreau72d6c162013-04-11 16:14:13 +02002352 goto switchstate;
2353
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002354send_msgs:
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002355 if (curpeer->flags & PEER_F_HEARTBEAT) {
2356 curpeer->flags &= ~PEER_F_HEARTBEAT;
2357 repl = peer_send_heartbeatmsg(appctx);
2358 if (repl <= 0) {
2359 if (repl == -1)
2360 goto out;
2361 goto switchstate;
2362 }
2363 }
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002364 /* we get here when a peer_recv_msg() returns 0 in reql */
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01002365 repl = peer_send_msgs(appctx, curpeer);
2366 if (repl <= 0) {
2367 if (repl == -1)
2368 goto out;
2369 goto switchstate;
Emeric Brun597b26e2016-08-12 11:23:31 +02002370 }
2371
Emeric Brun2b920a12010-09-23 18:30:22 +02002372 /* noting more to do */
2373 goto out;
2374 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002375 case PEER_SESS_ST_EXIT:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002376 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002377 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002378 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002379 if (peer_send_status_errormsg(appctx) == -1)
2380 goto out;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002381 appctx->st0 = PEER_SESS_ST_END;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002382 goto switchstate;
2383 case PEER_SESS_ST_ERRSIZE: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002384 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002385 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002386 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002387 if (peer_send_error_size_limitmsg(appctx) == -1)
2388 goto out;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002389 appctx->st0 = PEER_SESS_ST_END;
2390 goto switchstate;
2391 }
2392 case PEER_SESS_ST_ERRPROTO: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002393 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002394 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002395 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002396 if (peer_send_error_protomsg(appctx) == -1)
2397 goto out;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002398 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002399 prev_state = appctx->st0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002400 /* fall through */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002401 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002402 case PEER_SESS_ST_END: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002403 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002404 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002405 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002406 if (curpeer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002407 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002408 curpeer = NULL;
2409 }
Willy Tarreau73b013b2012-05-21 16:31:45 +02002410 si_shutw(si);
2411 si_shutr(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002412 si_ic(si)->flags |= CF_READ_NULL;
Willy Tarreau828824a2015-04-19 17:20:03 +02002413 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002414 }
2415 }
2416 }
2417out:
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002418 si_oc(si)->flags |= CF_READ_DONTWAIT;
Emeric Brun80527f52017-06-19 17:46:37 +02002419
2420 if (curpeer)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002421 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +02002422 return;
2423}
2424
Willy Tarreau30576452015-04-13 13:50:30 +02002425static struct applet peer_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002426 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01002427 .name = "<PEER>", /* used for logging */
2428 .fct = peer_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07002429 .release = peer_session_release,
Willy Tarreaub24281b2011-02-13 13:16:36 +01002430};
Emeric Brun2b920a12010-09-23 18:30:22 +02002431
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002432
Emeric Brun2b920a12010-09-23 18:30:22 +02002433/*
2434 * Use this function to force a close of a peer session
2435 */
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002436static void peer_session_forceshutdown(struct peer *peer)
Emeric Brun2b920a12010-09-23 18:30:22 +02002437{
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002438 struct appctx *appctx = peer->appctx;
2439
Frédéric Lécaille5df11902017-06-13 16:39:57 +02002440 /* Note that the peer sessions which have just been created
2441 * (->st0 == PEER_SESS_ST_CONNECT) must not
2442 * be shutdown, if not, the TCP session will never be closed
2443 * and stay in CLOSE_WAIT state after having been closed by
2444 * the remote side.
2445 */
2446 if (!appctx || appctx->st0 == PEER_SESS_ST_CONNECT)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002447 return;
2448
Willy Tarreau81bc3b02016-10-31 17:37:39 +01002449 if (appctx->applet != &peer_applet)
2450 return;
2451
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002452 __peer_session_deinit(peer);
2453
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002454 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau78c0c502016-10-31 17:32:20 +01002455 appctx_wakeup(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002456}
2457
Willy Tarreau91d96282015-03-13 15:47:26 +01002458/* Pre-configures a peers frontend to accept incoming connections */
2459void peers_setup_frontend(struct proxy *fe)
2460{
2461 fe->last_change = now.tv_sec;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02002462 fe->cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau91d96282015-03-13 15:47:26 +01002463 fe->maxconn = 0;
2464 fe->conn_retries = CONN_RETRIES;
2465 fe->timeout.client = MS_TO_TICKS(5000);
Willy Tarreaud1d48d42015-03-13 16:15:46 +01002466 fe->accept = frontend_accept;
Willy Tarreauf87ab942015-03-13 15:55:16 +01002467 fe->default_target = &peer_applet.obj_type;
Willy Tarreau91d96282015-03-13 15:47:26 +01002468 fe->options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC;
Willy Tarreau0fca4832015-05-01 19:12:05 +02002469 fe->bind_proc = 0; /* will be filled by users */
Willy Tarreau91d96282015-03-13 15:47:26 +01002470}
2471
Emeric Brun2b920a12010-09-23 18:30:22 +02002472/*
Willy Tarreaubd55e312010-11-11 10:55:09 +01002473 * Create a new peer session in assigned state (connect will start automatically)
Emeric Brun2b920a12010-09-23 18:30:22 +02002474 */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002475static struct appctx *peer_session_create(struct peers *peers, struct peer *peer)
Emeric Brun2b920a12010-09-23 18:30:22 +02002476{
Willy Tarreau04b92862017-09-15 11:01:04 +02002477 struct proxy *p = peers->peers_fe; /* attached frontend */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002478 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02002479 struct session *sess;
Willy Tarreau87b09662015-04-03 00:22:06 +02002480 struct stream *s;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002481 struct connection *conn;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002482 struct conn_stream *cs;
Emeric Brun2b920a12010-09-23 18:30:22 +02002483
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002484 peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002485 peer->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
Emeric Brunb3971ab2015-05-12 18:49:09 +02002486 peer->statuscode = PEER_SESS_SC_CONNECTCODE;
Willy Tarreaud990baf2015-04-05 00:32:03 +02002487 s = NULL;
2488
Emeric Brun1138fd02017-06-19 12:38:55 +02002489 appctx = appctx_new(&peer_applet, tid_bit);
Willy Tarreaud990baf2015-04-05 00:32:03 +02002490 if (!appctx)
2491 goto out_close;
2492
2493 appctx->st0 = PEER_SESS_ST_CONNECT;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002494 appctx->ctx.peers.ptr = (void *)peer;
Willy Tarreaud990baf2015-04-05 00:32:03 +02002495
Willy Tarreau04b92862017-09-15 11:01:04 +02002496 sess = session_new(p, NULL, &appctx->obj_type);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002497 if (!sess) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002498 ha_alert("out of memory in peer_session_create().\n");
Willy Tarreaud990baf2015-04-05 00:32:03 +02002499 goto out_free_appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02002500 }
2501
Willy Tarreau87787ac2017-08-28 16:22:54 +02002502 if ((s = stream_new(sess, &appctx->obj_type)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002503 ha_alert("Failed to initialize stream in peer_session_create().\n");
Willy Tarreau87787ac2017-08-28 16:22:54 +02002504 goto out_free_sess;
Willy Tarreau8baf9062015-04-05 00:46:36 +02002505 }
2506
Willy Tarreau342bfb12015-04-05 01:35:34 +02002507 /* The tasks below are normally what is supposed to be done by
2508 * fe->accept().
2509 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002510 s->flags = SF_ASSIGNED|SF_ADDR_SET;
Emeric Brun2b920a12010-09-23 18:30:22 +02002511
Willy Tarreau6e2979c2015-04-27 13:21:15 +02002512 /* applet is waiting for data */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002513 si_cant_get(&s->si[0]);
Willy Tarreau6e2979c2015-04-27 13:21:15 +02002514 appctx_wakeup(appctx);
2515
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02002516 /* initiate an outgoing connection */
Willy Tarreaudbd02672017-12-06 17:39:53 +01002517 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02002518 si_set_state(&s->si[1], SI_ST_ASS);
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02002519
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002520 /* automatically prepare the stream interface to connect to the
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002521 * pre-initialized connection in si->conn.
2522 */
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002523 if (unlikely((conn = conn_new()) == NULL))
Willy Tarreau8baf9062015-04-05 00:46:36 +02002524 goto out_free_strm;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002525
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002526 if (unlikely((cs = cs_new(conn)) == NULL))
2527 goto out_free_conn;
2528
Frédéric Lécaille1055e682018-04-26 14:35:21 +02002529 conn->target = s->target = peer_session_target(peer, s);
Willy Tarreaube373152018-09-06 11:45:30 +02002530 memcpy(&conn->addr.to, &peer->addr, sizeof(conn->addr.to));
2531
Frédéric Lécaille1055e682018-04-26 14:35:21 +02002532 conn_prepare(conn, peer->proto, peer_xprt(peer));
Olivier Houchardef60ff32019-01-29 19:00:33 +01002533 if (conn_install_mux(conn, &mux_pt_ops, cs, s->be, NULL) < 0)
2534 goto out_free_cs;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002535 si_attach_cs(&s->si[1], cs);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002536
Emeric Brun2b920a12010-09-23 18:30:22 +02002537 s->do_log = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002538 s->uniq_id = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002539
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002540 s->res.flags |= CF_READ_DONTWAIT;
Willy Tarreau696a2912014-11-24 11:36:57 +01002541
Emeric Brunb3971ab2015-05-12 18:49:09 +02002542 peer->appctx = appctx;
Willy Tarreau87787ac2017-08-28 16:22:54 +02002543 task_wakeup(s->task, TASK_WOKEN_INIT);
Olivier Houcharded879892019-03-08 18:53:43 +01002544 _HA_ATOMIC_ADD(&active_peers, 1);
Willy Tarreau9df94c22016-10-31 18:42:52 +01002545 return appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02002546
2547 /* Error unrolling */
Olivier Houchardef60ff32019-01-29 19:00:33 +01002548out_free_cs:
2549 cs_free(cs);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002550 out_free_conn:
2551 conn_free(conn);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002552 out_free_strm:
Emeric Brun2b920a12010-09-23 18:30:22 +02002553 LIST_DEL(&s->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002554 pool_free(pool_head_stream, s);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002555 out_free_sess:
Willy Tarreau11c36242015-04-04 15:54:03 +02002556 session_free(sess);
Willy Tarreaud990baf2015-04-05 00:32:03 +02002557 out_free_appctx:
2558 appctx_free(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002559 out_close:
Willy Tarreaub21d08e2016-10-31 17:46:57 +01002560 return NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002561}
2562
2563/*
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002564 * Task processing function to manage re-connect, peer session
2565 * tasks wakeup on local update and heartbeat.
Emeric Brun2b920a12010-09-23 18:30:22 +02002566 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002567static struct task *process_peer_sync(struct task * task, void *context, unsigned short state)
Emeric Brun2b920a12010-09-23 18:30:22 +02002568{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002569 struct peers *peers = context;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002570 struct peer *ps;
2571 struct shared_table *st;
Emeric Brun2b920a12010-09-23 18:30:22 +02002572
2573 task->expire = TICK_ETERNITY;
2574
Emeric Brunb3971ab2015-05-12 18:49:09 +02002575 if (!peers->peers_fe) {
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02002576 /* this one was never started, kill it */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002577 signal_unregister_handler(peers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002578 task_destroy(peers->sync_task);
Willy Tarreau37bb7be2015-09-21 15:24:58 +02002579 peers->sync_task = NULL;
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02002580 return NULL;
2581 }
2582
Emeric Brun80527f52017-06-19 17:46:37 +02002583 /* Acquire lock for all peers of the section */
2584 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002585 HA_SPIN_LOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002586
Emeric Brun2b920a12010-09-23 18:30:22 +02002587 if (!stopping) {
2588 /* Normal case (not soft stop)*/
Emeric Brunb3971ab2015-05-12 18:49:09 +02002589
2590 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL) &&
2591 (!nb_oldpids || tick_is_expired(peers->resync_timeout, now_ms)) &&
2592 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002593 /* Resync from local peer needed
2594 no peer was assigned for the lesson
2595 and no old local peer found
2596 or resync timeout expire */
2597
2598 /* flag no more resync from local, to try resync from remotes */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002599 peers->flags |= PEERS_F_RESYNC_LOCAL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002600
2601 /* reschedule a resync */
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002602 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT));
Emeric Brun2b920a12010-09-23 18:30:22 +02002603 }
2604
2605 /* For each session */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002606 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002607 /* For each remote peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002608 if (!ps->local) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002609 if (!ps->appctx) {
2610 /* no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002611 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002612 ((ps->statuscode == PEER_SESS_SC_CONNECTCODE ||
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002613 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002614 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002615 tick_is_expired(ps->reconnect, now_ms))) {
2616 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002617 * or previous peer connection established with success
2618 * or previous peer connection failed while connecting
Emeric Brun2b920a12010-09-23 18:30:22 +02002619 * and reconnection timer is expired */
2620
2621 /* retry a connect */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002622 ps->appctx = peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002623 }
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002624 else if (!tick_is_expired(ps->reconnect, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002625 /* If previous session failed during connection
2626 * but reconnection timer is not expired */
2627
2628 /* reschedule task for reconnect */
2629 task->expire = tick_first(task->expire, ps->reconnect);
2630 }
2631 /* else do nothing */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002632 } /* !ps->appctx */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002633 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002634 /* current peer connection is active and established */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002635 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2636 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002637 !(ps->flags & PEER_F_LEARN_NOTUP2DATE)) {
2638 /* Resync from a remote is needed
2639 * and no peer was assigned for lesson
2640 * and current peer may be up2date */
2641
2642 /* assign peer for the lesson */
2643 ps->flags |= PEER_F_LEARN_ASSIGN;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002644 peers->flags |= PEERS_F_RESYNC_ASSIGN;
Emeric Brun2b920a12010-09-23 18:30:22 +02002645
Willy Tarreau9df94c22016-10-31 18:42:52 +01002646 /* wake up peer handler to handle a request of resync */
Willy Tarreaue5843b32015-04-27 18:40:14 +02002647 appctx_wakeup(ps->appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002648 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002649 else {
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002650 int update_to_push = 0;
2651
Emeric Brunb3971ab2015-05-12 18:49:09 +02002652 /* Awake session if there is data to push */
2653 for (st = ps->tables; st ; st = st->next) {
2654 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002655 /* wake up the peer handler to push local updates */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002656 update_to_push = 1;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002657 /* There is no need to send a heartbeat message
2658 * when some updates must be pushed. The remote
2659 * peer will consider <ps> peer as alive when it will
2660 * receive these updates.
2661 */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002662 ps->flags &= ~PEER_F_HEARTBEAT;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002663 /* Re-schedule another one later. */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002664 ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002665 /* We are going to send updates, let's ensure we will
2666 * come back to send heartbeat messages or to reconnect.
2667 */
2668 task->expire = tick_first(ps->reconnect, ps->heartbeat);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002669 appctx_wakeup(ps->appctx);
2670 break;
2671 }
2672 }
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002673 /* When there are updates to send we do not reconnect
2674 * and do not send heartbeat message either.
2675 */
2676 if (!update_to_push) {
2677 if (tick_is_expired(ps->reconnect, now_ms)) {
2678 if (ps->flags & PEER_F_ALIVE) {
2679 /* This peer was alive during a 'reconnect' period.
2680 * Flag it as not alive again for the next period.
2681 */
2682 ps->flags &= ~PEER_F_ALIVE;
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002683 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002684 }
2685 else {
2686 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + random() % 2000));
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002687 peer_session_forceshutdown(ps);
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002688 }
2689 }
2690 else if (tick_is_expired(ps->heartbeat, now_ms)) {
2691 ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
2692 ps->flags |= PEER_F_HEARTBEAT;
2693 appctx_wakeup(ps->appctx);
2694 }
Frédéric Lécailleb7405c12019-03-27 14:32:39 +01002695 task->expire = tick_first(ps->reconnect, ps->heartbeat);
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002696 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002697 }
2698 /* else do nothing */
2699 } /* SUCCESSCODE */
2700 } /* !ps->peer->local */
2701 } /* for */
2702
2703 /* Resync from remotes expired: consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002704 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2705 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
2706 tick_is_expired(peers->resync_timeout, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002707 /* Resync from remote peer needed
2708 * no peer was assigned for the lesson
2709 * and resync timeout expire */
2710
2711 /* flag no more resync from remote, consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002712 peers->flags |= PEERS_F_RESYNC_REMOTE;
Emeric Brun2b920a12010-09-23 18:30:22 +02002713 }
2714
Emeric Brunb3971ab2015-05-12 18:49:09 +02002715 if ((peers->flags & PEERS_RESYNC_STATEMASK) != PEERS_RESYNC_FINISHED) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002716 /* Resync not finished*/
Frédéric Lécaille5d6e5f82017-05-29 13:47:16 +02002717 /* reschedule task to resync timeout if not expired, to ended resync if needed */
2718 if (!tick_is_expired(peers->resync_timeout, now_ms))
2719 task->expire = tick_first(task->expire, peers->resync_timeout);
Emeric Brun2b920a12010-09-23 18:30:22 +02002720 }
2721 } /* !stopping */
2722 else {
2723 /* soft stop case */
Willy Tarreau086735a2018-11-05 15:09:47 +01002724 if (state & TASK_WOKEN_SIGNAL) {
Joseph Herlant82b2f542018-11-15 12:19:14 -08002725 /* We've just received the signal */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002726 if (!(peers->flags & PEERS_F_DONOTSTOP)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002727 /* add DO NOT STOP flag if not present */
Olivier Houcharded879892019-03-08 18:53:43 +01002728 _HA_ATOMIC_ADD(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002729 peers->flags |= PEERS_F_DONOTSTOP;
2730 ps = peers->local;
2731 for (st = ps->tables; st ; st = st->next)
2732 st->table->syncing++;
Emeric Brun2b920a12010-09-23 18:30:22 +02002733 }
2734
2735 /* disconnect all connected peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002736 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun80527f52017-06-19 17:46:37 +02002737 /* we're killing a connection, we must apply a random delay before
2738 * retrying otherwise the other end will do the same and we can loop
2739 * for a while.
2740 */
2741 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + random() % 2000));
Willy Tarreau9df94c22016-10-31 18:42:52 +01002742 if (ps->appctx) {
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002743 peer_session_forceshutdown(ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002744 }
2745 }
2746 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002747
Emeric Brunb3971ab2015-05-12 18:49:09 +02002748 ps = peers->local;
Emeric Brun2b920a12010-09-23 18:30:22 +02002749 if (ps->flags & PEER_F_TEACH_COMPLETE) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002750 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002751 /* resync of new process was complete, current process can die now */
Olivier Houcharded879892019-03-08 18:53:43 +01002752 _HA_ATOMIC_SUB(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002753 peers->flags &= ~PEERS_F_DONOTSTOP;
2754 for (st = ps->tables; st ; st = st->next)
2755 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002756 }
2757 }
Willy Tarreau9df94c22016-10-31 18:42:52 +01002758 else if (!ps->appctx) {
2759 /* If there's no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002760 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002761 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
2762 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE ||
2763 ps->statuscode == PEER_SESS_SC_TRYAGAIN) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002764 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002765 * or previous peer connection was successfully established
2766 * or previous tcp connect succeeded but init state incomplete
Emeric Brun2b920a12010-09-23 18:30:22 +02002767 * or during previous connect, peer replies a try again statuscode */
2768
2769 /* connect to the peer */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002770 peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002771 }
2772 else {
2773 /* Other error cases */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002774 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002775 /* unable to resync new process, current process can die now */
Olivier Houcharded879892019-03-08 18:53:43 +01002776 _HA_ATOMIC_SUB(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002777 peers->flags &= ~PEERS_F_DONOTSTOP;
2778 for (st = ps->tables; st ; st = st->next)
2779 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002780 }
2781 }
2782 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002783 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE ) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002784 /* current peer connection is active and established
2785 * wake up all peer handlers to push remaining local updates */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002786 for (st = ps->tables; st ; st = st->next) {
2787 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002788 appctx_wakeup(ps->appctx);
2789 break;
2790 }
2791 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002792 }
2793 } /* stopping */
Emeric Brun80527f52017-06-19 17:46:37 +02002794
2795 /* Release lock for all peers of the section */
2796 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002797 HA_SPIN_UNLOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002798
Emeric Brun2b920a12010-09-23 18:30:22 +02002799 /* Wakeup for re-connect */
2800 return task;
2801}
2802
Emeric Brunb3971ab2015-05-12 18:49:09 +02002803
Emeric Brun2b920a12010-09-23 18:30:22 +02002804/*
Willy Tarreaud9443442018-10-15 11:18:03 +02002805 * returns 0 in case of error.
Emeric Brun2b920a12010-09-23 18:30:22 +02002806 */
Willy Tarreaud9443442018-10-15 11:18:03 +02002807int peers_init_sync(struct peers *peers)
Emeric Brun2b920a12010-09-23 18:30:22 +02002808{
Emeric Brun2b920a12010-09-23 18:30:22 +02002809 struct peer * curpeer;
Emeric Brun2b920a12010-09-23 18:30:22 +02002810
Emeric Brun2b920a12010-09-23 18:30:22 +02002811 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002812 peers->peers_fe->maxconn += 3;
2813 }
2814
Emeric Brunc60def82017-09-27 14:59:38 +02002815 peers->sync_task = task_new(MAX_THREADS_MASK);
Willy Tarreaud9443442018-10-15 11:18:03 +02002816 if (!peers->sync_task)
2817 return 0;
2818
Emeric Brunb3971ab2015-05-12 18:49:09 +02002819 peers->sync_task->process = process_peer_sync;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002820 peers->sync_task->context = (void *)peers;
2821 peers->sighandler = signal_register_task(0, peers->sync_task, 0);
2822 task_wakeup(peers->sync_task, TASK_WOKEN_INIT);
Willy Tarreaud9443442018-10-15 11:18:03 +02002823 return 1;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002824}
2825
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002826/*
2827 * Allocate a cache a dictionary entries used upon transmission.
2828 */
2829struct dcache_tx *new_dcache_tx(size_t max_entries)
2830{
2831 struct dcache_tx *d;
2832
2833 d = malloc(sizeof *d);
2834 if (!d)
2835 return NULL;
2836
2837 d->lru_key = 0;
2838 d->keys = EB_ROOT_UNIQUE;
2839 d->values = EB_ROOT_UNIQUE;
2840 d->max_entries = max_entries;
2841
2842 return d;
2843}
2844
2845/*
2846 * Allocate a cache of dictionary entries with <name> as name and <max_entries>
2847 * as maximum of entries.
2848 * Return the dictionay cache if succeeded, NULL if not.
2849 * Must be deallocated calling free_dcache().
2850 */
2851struct dcache *new_dcache(size_t max_entries)
2852{
2853 struct dcache_tx *dc_tx;
2854 struct dcache *dc;
2855 struct dcache_rx *dc_rx;
2856
2857 dc = calloc(1, sizeof *dc);
2858 dc_tx = new_dcache_tx(max_entries);
2859 dc_rx = calloc(max_entries, sizeof *dc_rx);
2860 if (!dc || !dc_tx || !dc_rx)
2861 goto err;
2862
2863 dc->tx = dc_tx;
2864 dc->rx = dc_rx;
2865 dc->max_entries = max_entries;
2866
2867 return dc;
2868
2869 err:
2870 free(dc);
2871 free(dc_tx);
2872 free(dc_rx);
2873 return NULL;
2874}
2875
2876/*
2877 * Deallocate a cache of dictionary entries.
2878 */
2879void free_dcache(struct dcache *dc)
2880{
2881 free(dc->tx); dc->tx = NULL;
2882 free(dc->rx); dc->rx = NULL;
2883 free(dc);
2884}
2885
2886/*
2887 * Look for the dictionary entry with <k> as key in <d> cache of dictionary entries
2888 * used upon transmission.
2889 * Return the entry if found, NULL if not.
2890 */
2891struct dcache_tx_entry *dcache_tx_lookup_key(struct dcache_tx *d, unsigned int k)
2892{
2893 struct dcache_tx_entry *de;
2894 struct eb32_node *node;
2895
2896 de = NULL;
2897 node = eb32_lookup(&d->keys, k);
2898 if (node)
2899 de = container_of(node, struct dcache_tx_entry, key);
2900
2901 return de;
2902}
2903
2904/*
2905 * Look for the dictionary entry with the value of <i> in <d> cache of dictionary
2906 * entries used upon transmission.
2907 * Return the entry if found, NULL if not.
2908 */
2909struct dcache_tx_entry *dcache_tx_lookup_value(struct dcache_tx *d,
2910 struct dcache_tx_entry *i)
2911{
2912 struct dcache_tx_entry *de;
2913 struct ebpt_node *node;
2914
2915 de = NULL;
2916 node = ebpt_lookup(&d->values, i->value.key);
2917 if (node)
2918 de = container_of(node, struct dcache_tx_entry, value);
2919
2920 return de;
2921}
2922
2923/*
2924 * Release the memory allocated for the cached dictionary entry <dce>.
2925 */
2926
2927static inline void free_dcache_tx_entry(struct dcache_tx_entry *dce)
2928{
2929 dce->value.key = NULL;
2930 dce->key.key = 0;
2931 free(dce);
2932}
2933
2934/*
2935 * Allocate a new dictionary entry with <s> as string value which is strdup()'ed.
2936 * Returns the new allocated entry if succeeded, NULL if not.
2937 */
2938struct dcache_tx_entry *new_dcache_tx_entry(unsigned int k, struct dict_entry *de)
2939{
2940 struct dcache_tx_entry *dce;
2941
2942 dce = calloc(1, sizeof *dce);
2943 if (!dce)
2944 return NULL;
2945
2946 dce->value.key = de;
2947 dce->key.key = k;
2948
2949 return dce;
2950}
2951
2952/*
2953 * Flush <dc> cache.
2954 * Always succeeds.
2955 */
2956static inline void flush_dcache(struct peer *peer)
2957{
2958 int i;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02002959 struct dcache *dc = peer->dcache;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002960
2961 if (!eb_is_empty(&dc->tx->keys)) {
2962 struct eb32_node *node, *next;
2963
2964 for (node = eb32_first(&dc->tx->keys); node; node = next) {
2965 next = eb32_next(node);
2966 eb32_delete(node);
2967 }
2968 }
2969
2970 if (!eb_is_empty(&dc->tx->values)) {
2971 struct ebpt_node *node, *next;
2972
2973 for (node = ebpt_first(&dc->tx->values); node; node = next) {
2974 struct dcache_tx_entry *de;
2975
2976 next = ebpt_next(node);
2977 ebpt_delete(node);
2978 de = container_of(node, struct dcache_tx_entry, value);
2979 free_dcache_tx_entry(de);
2980 }
2981 }
2982
2983 for (i = 0; i < dc->max_entries; i++) {
2984 dc->rx[i].id = 0;
2985 dc->rx[i].de = NULL;
2986 }
2987}
2988
2989/*
2990 * Insert a dictionary entry in <dc> cache part used upon transmission (->tx)
2991 * with information provided by <i> dictionary cache entry (especially the value
2992 * to be inserted if not already). Return <i> if already present in the cache
2993 * or something different of <i> if not already in the cache, or NULL if something
2994 * failed.
2995 */
2996struct dcache_tx_entry *dcache_tx_insert(struct dcache *dc,
2997 struct dcache_tx_entry *i)
2998{
2999 struct dcache_tx *dc_tx;
3000 struct dcache_tx_entry *o;
3001
3002 dc_tx = dc->tx;
3003 o = dcache_tx_lookup_value(dc_tx, i);
3004 if (o) {
3005 /* Copy the key. */
3006 i->key.key = o->key.key;
3007 return i;
3008 }
3009
3010 o = dcache_tx_lookup_key(dc_tx, dc_tx->lru_key);
3011 if (o) {
3012 o->value.key = i->value.key;
3013 return o;
3014 }
3015
3016 o = new_dcache_tx_entry(dc_tx->lru_key, i->value.key);
3017 if (!o)
3018 return NULL;
3019
3020 dc_tx->lru_key = (dc_tx->lru_key + 1) & (dc_tx->max_entries - 1);
3021 eb32_insert(&dc_tx->keys, &o->key);
3022 ebpt_insert(&dc_tx->values, &o->value);
Emeric Brunb3971ab2015-05-12 18:49:09 +02003023
Frédéric Lécaille74167b22019-05-28 19:02:42 +02003024 return o;
3025}
Emeric Brunb3971ab2015-05-12 18:49:09 +02003026
3027/*
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003028 * Allocate a dictionary cache for each peer of <peers> section.
3029 * Return 1 if succeeded, 0 if not.
3030 */
3031int peers_alloc_dcache(struct peers *peers)
3032{
3033 struct peer *p;
3034
3035 for (p = peers->remote; p; p = p->next) {
3036 p->dcache = new_dcache(PEER_STKT_CACHE_MAX_ENTRIES);
3037 if (!p->dcache)
3038 return 0;
3039 }
3040
3041 return 1;
3042}
3043
3044/*
Emeric Brunb3971ab2015-05-12 18:49:09 +02003045 * Function used to register a table for sync on a group of peers
3046 *
3047 */
3048void peers_register_table(struct peers *peers, struct stktable *table)
3049{
3050 struct shared_table *st;
3051 struct peer * curpeer;
3052 int id = 0;
3053
3054 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Vincent Bernat02779b62016-04-03 13:48:43 +02003055 st = calloc(1,sizeof(*st));
Emeric Brunb3971ab2015-05-12 18:49:09 +02003056 st->table = table;
3057 st->next = curpeer->tables;
3058 if (curpeer->tables)
3059 id = curpeer->tables->local_id;
3060 st->local_id = id + 1;
3061
3062 curpeer->tables = st;
3063 }
3064
3065 table->sync_task = peers->sync_task;
Emeric Brun2b920a12010-09-23 18:30:22 +02003066}
3067
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003068/*
3069 * Parse the "show peers" command arguments.
3070 * Returns 0 if succeeded, 1 if not with the ->msg of the appctx set as
3071 * error message.
3072 */
3073static int cli_parse_show_peers(char **args, char *payload, struct appctx *appctx, void *private)
3074{
3075 appctx->ctx.cfgpeers.target = NULL;
3076
3077 if (*args[2]) {
3078 struct peers *p;
3079
3080 for (p = cfg_peers; p; p = p->next) {
3081 if (!strcmp(p->id, args[2])) {
3082 appctx->ctx.cfgpeers.target = p;
3083 break;
3084 }
3085 }
3086
3087 if (!p) {
3088 appctx->ctx.cli.severity = LOG_ERR;
3089 appctx->ctx.cli.msg = "No such peers\n";
3090 appctx->st0 = CLI_ST_PRINT;
3091 return 1;
3092 }
3093 }
3094
3095 return 0;
3096}
3097
3098/*
3099 * This function dumps the peer state information of <peers> "peers" section.
3100 * Returns 0 if the output buffer is full and needs to be called again, non-zero if not.
3101 * Dedicated to be called by cli_io_handler_show_peers() cli I/O handler.
3102 */
3103static int peers_dump_head(struct buffer *msg, struct stream_interface *si, struct peers *peers)
3104{
3105 struct tm tm;
3106
3107 get_localtime(peers->last_change, &tm);
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003108 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 +02003109 peers,
3110 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
3111 tm.tm_hour, tm.tm_min, tm.tm_sec,
3112 peers->id, peers->state, peers->flags,
3113 peers->resync_timeout ?
3114 tick_is_expired(peers->resync_timeout, now_ms) ? "<PAST>" :
3115 human_time(TICKS_TO_MS(peers->resync_timeout - now_ms),
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003116 TICKS_TO_MS(1000)) : "<NEVER>",
3117 peers->sync_task ? peers->sync_task->calls : 0);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003118
3119 if (ci_putchk(si_ic(si), msg) == -1) {
3120 si_rx_room_blk(si);
3121 return 0;
3122 }
3123
3124 return 1;
3125}
3126
3127/*
3128 * This function dumps <peer> state information.
3129 * Returns 0 if the output buffer is full and needs to be called again, non-zero
3130 * if not. Dedicated to be called by cli_io_handler_show_peers() cli I/O handler.
3131 */
3132static int peers_dump_peer(struct buffer *msg, struct stream_interface *si, struct peer *peer)
3133{
3134 struct connection *conn;
3135 char pn[INET6_ADDRSTRLEN];
3136 struct stream_interface *peer_si;
3137 struct stream *peer_s;
3138 struct appctx *appctx;
3139 struct shared_table *st;
3140
3141 addr_to_str(&peer->addr, pn, sizeof pn);
3142 chunk_appendf(msg, " %p: id=%s(%s) addr=%s:%d status=%s reconnect=%s confirm=%u\n",
3143 peer, peer->id,
3144 peer->local ? "local" : "remote",
3145 pn, get_host_port(&peer->addr),
3146 statuscode_str(peer->statuscode),
3147 peer->reconnect ?
3148 tick_is_expired(peer->reconnect, now_ms) ? "<PAST>" :
3149 human_time(TICKS_TO_MS(peer->reconnect - now_ms),
3150 TICKS_TO_MS(1000)) : "<NEVER>",
3151 peer->confirm);
3152
3153 chunk_appendf(&trash, " flags=0x%x", peer->flags);
3154
3155 appctx = peer->appctx;
3156 if (!appctx)
3157 goto end;
3158
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003159 chunk_appendf(&trash, " appctx:%p st0=%d st1=%d task_calls=%u", appctx, appctx->st0, appctx->st1,
3160 appctx->t ? appctx->t->calls : 0);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003161
3162 peer_si = peer->appctx->owner;
3163 if (!peer_si)
3164 goto end;
3165
3166 peer_s = si_strm(peer_si);
3167 if (!peer_s)
3168 goto end;
3169
3170 chunk_appendf(&trash, " state=%s", si_state_str(si_opposite(peer_si)->state));
3171
3172 conn = objt_conn(strm_orig(peer_s));
3173 if (conn)
3174 chunk_appendf(&trash, "\n xprt=%s", conn_get_xprt_name(conn));
3175
3176 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
3177 case AF_INET:
3178 case AF_INET6:
3179 chunk_appendf(&trash, " src=%s:%d", pn, get_host_port(&conn->addr.from));
3180 break;
3181 case AF_UNIX:
3182 chunk_appendf(&trash, " src=unix:%d", strm_li(peer_s)->luid);
3183 break;
3184 }
3185
3186 if (conn)
3187 conn_get_to_addr(conn);
3188
3189 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
3190 case AF_INET:
3191 case AF_INET6:
3192 chunk_appendf(&trash, " addr=%s:%d", pn, get_host_port(&conn->addr.to));
3193 break;
3194 case AF_UNIX:
3195 chunk_appendf(&trash, " addr=unix:%d", strm_li(peer_s)->luid);
3196 break;
3197 }
3198
3199 if (peer->remote_table)
3200 chunk_appendf(&trash, "\n remote_table:%p id=%s local_id=%d remote_id=%d",
3201 peer->remote_table,
3202 peer->remote_table->table->id,
3203 peer->remote_table->local_id,
3204 peer->remote_table->remote_id);
3205
3206 if (peer->last_local_table)
3207 chunk_appendf(&trash, "\n last_local_table:%p id=%s local_id=%d remote_id=%d",
3208 peer->last_local_table,
3209 peer->last_local_table->table->id,
3210 peer->last_local_table->local_id,
3211 peer->last_local_table->remote_id);
3212
3213 if (peer->tables) {
3214 chunk_appendf(&trash, "\n shared tables:");
3215 for (st = peer->tables; st; st = st->next) {
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003216 int i, count;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003217 struct stktable *t;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003218 struct dcache *dcache;
3219
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003220 t = st->table;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003221 dcache = peer->dcache;
3222
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003223 chunk_appendf(&trash, "\n %p local_id=%d remote_id=%d "
3224 "flags=0x%x remote_data=0x%llx",
3225 st, st->local_id, st->remote_id,
3226 st->flags, (unsigned long long)st->remote_data);
3227 chunk_appendf(&trash, "\n last_acked=%u last_pushed=%u last_get=%u"
3228 " teaching_origin=%u update=%u",
3229 st->last_acked, st->last_pushed, st->last_get,
3230 st->teaching_origin, st->update);
3231 chunk_appendf(&trash, "\n table:%p id=%s update=%u localupdate=%u"
3232 " commitupdate=%u syncing=%u",
3233 t, t->id, t->update, t->localupdate, t->commitupdate, t->syncing);
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003234 if (!eb_is_empty(&dcache->tx->keys)) {
3235 struct eb32_node *node;
3236 struct dcache_tx_entry *de;
3237
3238 chunk_appendf(&trash, "\n TX dictionary cache:");
3239 count = 0;
3240 for (node = eb32_first(&dcache->tx->keys); node; node = eb32_next(node)) {
3241 if (!count++)
3242 chunk_appendf(&trash, "\n ");
3243 de = container_of(node, struct dcache_tx_entry, key);
3244 chunk_appendf(&trash, " %3u -> %s", node->key,
3245 (char *)((struct dict_entry *)(de->value.key))->value.key);
3246 count &= 0x3;
3247 }
3248 }
3249 chunk_appendf(&trash, "\n RX dictionary cache:");
3250 count = 0;
3251 for (i = 0; i < dcache->max_entries; i++) {
3252 if (!count++)
3253 chunk_appendf(&trash, "\n ");
3254 chunk_appendf(&trash, " %3u -> %s", i,
3255 dcache->rx[i].de ?
3256 (char *)dcache->rx[i].de->value.key : "-");
3257 count &= 0x3;
3258 }
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003259 }
3260 }
3261
3262 end:
3263 chunk_appendf(&trash, "\n");
3264 if (ci_putchk(si_ic(si), msg) == -1) {
3265 si_rx_room_blk(si);
3266 return 0;
3267 }
3268
3269 return 1;
3270}
3271
3272/*
3273 * This function dumps all the peers of "peers" section.
3274 * Returns 0 if the output buffer is full and needs to be called
3275 * again, non-zero if not. It proceeds in an isolated thread, so
3276 * there is no thread safety issue here.
3277 */
3278static int cli_io_handler_show_peers(struct appctx *appctx)
3279{
3280 int show_all;
3281 int ret = 0, first_peers = 1;
3282 struct stream_interface *si = appctx->owner;
3283
3284 thread_isolate();
3285
3286 show_all = !appctx->ctx.cfgpeers.target;
3287
3288 chunk_reset(&trash);
3289
3290 while (appctx->st2 != STAT_ST_FIN) {
3291 switch (appctx->st2) {
3292 case STAT_ST_INIT:
3293 if (show_all)
3294 appctx->ctx.cfgpeers.peers = cfg_peers;
3295 else
3296 appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.target;
3297
3298 appctx->st2 = STAT_ST_LIST;
3299 /* fall through */
3300
3301 case STAT_ST_LIST:
3302 if (!appctx->ctx.cfgpeers.peers) {
3303 /* No more peers list. */
3304 appctx->st2 = STAT_ST_END;
3305 }
3306 else {
3307 if (!first_peers)
3308 chunk_appendf(&trash, "\n");
3309 else
3310 first_peers = 0;
3311 if (!peers_dump_head(&trash, si, appctx->ctx.cfgpeers.peers))
3312 goto out;
3313
3314 appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peers->remote;
3315 appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.peers->next;
3316 appctx->st2 = STAT_ST_INFO;
3317 }
3318 break;
3319
3320 case STAT_ST_INFO:
3321 if (!appctx->ctx.cfgpeers.peer) {
3322 /* End of peer list */
3323 if (show_all)
3324 appctx->st2 = STAT_ST_LIST;
3325 else
3326 appctx->st2 = STAT_ST_END;
3327 }
3328 else {
3329 if (!peers_dump_peer(&trash, si, appctx->ctx.cfgpeers.peer))
3330 goto out;
3331
3332 appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peer->next;
3333 }
3334 break;
3335
3336 case STAT_ST_END:
3337 appctx->st2 = STAT_ST_FIN;
3338 break;
3339 }
3340 }
3341 ret = 1;
3342 out:
3343 thread_release();
3344 return ret;
3345}
3346
3347/*
3348 * CLI keywords.
3349 */
3350static struct cli_kw_list cli_kws = {{ }, {
3351 { { "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, },
3352 {},
3353}};
3354
3355/* Register cli keywords */
3356INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
3357