blob: 60ad4e66fa41219497b29c30c7f29d3334d50887 [file] [log] [blame]
Emeric Brun2b920a12010-09-23 18:30:22 +02001/*
Emeric Brunb3971ab2015-05-12 18:49:09 +02002 * Peer synchro management.
Emeric Brun2b920a12010-09-23 18:30:22 +02003 *
4 * Copyright 2010 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <string.h>
18
19#include <sys/socket.h>
20#include <sys/stat.h>
21#include <sys/types.h>
22
23#include <common/compat.h>
24#include <common/config.h>
25#include <common/time.h>
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +020026#include <common/standard.h>
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020027#include <common/hathreads.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020028
29#include <types/global.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010030#include <types/listener.h>
31#include <types/obj_type.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020032#include <types/peers.h>
Frédéric Lécaille95679dc2019-04-15 10:25:27 +020033#include <types/stats.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020034
35#include <proto/acl.h>
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020036#include <proto/applet.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020037#include <proto/channel.h>
Frédéric Lécaille95679dc2019-04-15 10:25:27 +020038#include <proto/cli.h>
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +020039#include <proto/dict.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020040#include <proto/fd.h>
Willy Tarreaud1d48d42015-03-13 16:15:46 +010041#include <proto/frontend.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020042#include <proto/log.h>
43#include <proto/hdr_idx.h>
Willy Tarreau53a47662017-08-28 10:53:00 +020044#include <proto/mux_pt.h>
Frédéric Lécaille1055e682018-04-26 14:35:21 +020045#include <proto/peers.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020046#include <proto/proxy.h>
Willy Tarreaufeb76402015-04-03 14:10:06 +020047#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020048#include <proto/stream.h>
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010049#include <proto/signal.h>
50#include <proto/stick_table.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020051#include <proto/stream_interface.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020052#include <proto/task.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020053
54
55/*******************************/
56/* Current peer learning state */
57/*******************************/
58
59/******************************/
Emeric Brunb3971ab2015-05-12 18:49:09 +020060/* Current peers section resync state */
Emeric Brun2b920a12010-09-23 18:30:22 +020061/******************************/
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010062#define PEERS_F_RESYNC_LOCAL 0x00000001 /* Learn from local finished or no more needed */
63#define PEERS_F_RESYNC_REMOTE 0x00000002 /* Learn from remote finished or no more needed */
64#define PEERS_F_RESYNC_ASSIGN 0x00000004 /* A peer was assigned to learn our lesson */
65#define PEERS_F_RESYNC_PROCESS 0x00000008 /* The assigned peer was requested for resync */
66#define PEERS_F_DONOTSTOP 0x00010000 /* Main table sync task block process during soft stop
67 to push data to new process */
Emeric Brun2b920a12010-09-23 18:30:22 +020068
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010069#define PEERS_RESYNC_STATEMASK (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE)
70#define PEERS_RESYNC_FROMLOCAL 0x00000000
71#define PEERS_RESYNC_FROMREMOTE PEERS_F_RESYNC_LOCAL
72#define PEERS_RESYNC_FINISHED (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE)
Emeric Brunb3971ab2015-05-12 18:49:09 +020073
74/***********************************/
75/* Current shared table sync state */
76/***********************************/
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010077#define SHTABLE_F_TEACH_STAGE1 0x00000001 /* Teach state 1 complete */
78#define SHTABLE_F_TEACH_STAGE2 0x00000002 /* Teach state 2 complete */
Emeric Brun2b920a12010-09-23 18:30:22 +020079
80/******************************/
81/* Remote peer teaching state */
82/******************************/
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010083#define PEER_F_TEACH_PROCESS 0x00000001 /* Teach a lesson to current peer */
84#define PEER_F_TEACH_FINISHED 0x00000008 /* Teach conclude, (wait for confirm) */
85#define PEER_F_TEACH_COMPLETE 0x00000010 /* All that we know already taught to current peer, used only for a local peer */
86#define PEER_F_LEARN_ASSIGN 0x00000100 /* Current peer was assigned for a lesson */
87#define PEER_F_LEARN_NOTUP2DATE 0x00000200 /* Learn from peer finished but peer is not up to date */
88#define PEER_F_ALIVE 0x20000000 /* Used to flag a peer a alive. */
89#define PEER_F_HEARTBEAT 0x40000000 /* Heartbeat message to send. */
90#define PEER_F_DWNGRD 0x80000000 /* When this flag is enabled, we must downgrade the supported version announced during peer sessions. */
Emeric Brun2b920a12010-09-23 18:30:22 +020091
Frédéric Lécailleaba44a22019-03-26 10:18:07 +010092#define PEER_TEACH_RESET ~(PEER_F_TEACH_PROCESS|PEER_F_TEACH_FINISHED) /* PEER_F_TEACH_COMPLETE should never be reset */
93#define PEER_LEARN_RESET ~(PEER_F_LEARN_ASSIGN|PEER_F_LEARN_NOTUP2DATE)
Emeric Brun2b920a12010-09-23 18:30:22 +020094
Frédéric Lécaille54bff832019-03-26 10:25:20 +010095#define PEER_RESYNC_TIMEOUT 5000 /* 5 seconds */
96#define PEER_RECONNECT_TIMEOUT 5000 /* 5 seconds */
Frédéric Lécaille645635d2019-02-11 17:49:39 +010097#define PEER_HEARTBEAT_TIMEOUT 3000 /* 3 seconds */
98
Emeric Brunb3971ab2015-05-12 18:49:09 +020099/*****************************/
100/* Sync message class */
101/*****************************/
102enum {
103 PEER_MSG_CLASS_CONTROL = 0,
104 PEER_MSG_CLASS_ERROR,
105 PEER_MSG_CLASS_STICKTABLE = 10,
106 PEER_MSG_CLASS_RESERVED = 255,
107};
108
109/*****************************/
110/* control message types */
111/*****************************/
112enum {
113 PEER_MSG_CTRL_RESYNCREQ = 0,
114 PEER_MSG_CTRL_RESYNCFINISHED,
115 PEER_MSG_CTRL_RESYNCPARTIAL,
116 PEER_MSG_CTRL_RESYNCCONFIRM,
Frédéric Lécaille645635d2019-02-11 17:49:39 +0100117 PEER_MSG_CTRL_HEARTBEAT,
Emeric Brunb3971ab2015-05-12 18:49:09 +0200118};
119
120/*****************************/
121/* error message types */
122/*****************************/
123enum {
124 PEER_MSG_ERR_PROTOCOL = 0,
125 PEER_MSG_ERR_SIZELIMIT,
126};
127
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100128/*
129 * Parameters used by functions to build peer protocol messages. */
130struct peer_prep_params {
131 struct {
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100132 struct peer *peer;
133 } hello;
134 struct {
135 unsigned int st1;
136 } error_status;
137 struct {
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100138 struct stksess *stksess;
139 struct shared_table *shared_table;
140 unsigned int updateid;
141 int use_identifier;
142 int use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200143 struct peer *peer;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100144 } updt;
145 struct {
146 struct shared_table *shared_table;
147 } swtch;
148 struct {
149 struct shared_table *shared_table;
150 } ack;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100151 struct {
152 unsigned char head[2];
153 } control;
154 struct {
155 unsigned char head[2];
156 } error;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100157};
Emeric Brunb3971ab2015-05-12 18:49:09 +0200158
159/*******************************/
160/* stick table sync mesg types */
161/* Note: ids >= 128 contains */
162/* id message cotains data */
163/*******************************/
Olivier Houchard33992262018-10-16 18:49:26 +0200164#define PEER_MSG_STKT_UPDATE 0x80
165#define PEER_MSG_STKT_INCUPDATE 0x81
166#define PEER_MSG_STKT_DEFINE 0x82
167#define PEER_MSG_STKT_SWITCH 0x83
168#define PEER_MSG_STKT_ACK 0x84
169#define PEER_MSG_STKT_UPDATE_TIMED 0x85
170#define PEER_MSG_STKT_INCUPDATE_TIMED 0x86
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +0200171/* All the stick-table message identifiers abova have the #7 bit set */
172#define PEER_MSG_STKT_BIT 7
173#define PEER_MSG_STKT_BIT_MASK (1 << PEER_MSG_STKT_BIT)
Emeric Brun2b920a12010-09-23 18:30:22 +0200174
Frédéric Lécaille39143342019-05-24 14:32:27 +0200175/* The maximum length of an encoded data length. */
176#define PEER_MSG_ENC_LENGTH_MAXLEN 5
177
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200178/* Minimum 64-bits value encoded with 2 bytes */
179#define PEER_ENC_2BYTES_MIN 0xf0 /* 0xf0 (or 240) */
180/* 3 bytes */
181#define PEER_ENC_3BYTES_MIN ((1ULL << 11) | PEER_ENC_2BYTES_MIN) /* 0x8f0 (or 2288) */
182/* 4 bytes */
183#define PEER_ENC_4BYTES_MIN ((1ULL << 18) | PEER_ENC_3BYTES_MIN) /* 0x408f0 (or 264432) */
184/* 5 bytes */
185#define PEER_ENC_5BYTES_MIN ((1ULL << 25) | PEER_ENC_4BYTES_MIN) /* 0x20408f0 (or 33818864) */
186/* 6 bytes */
187#define PEER_ENC_6BYTES_MIN ((1ULL << 32) | PEER_ENC_5BYTES_MIN) /* 0x1020408f0 (or 4328786160) */
188/* 7 bytes */
189#define PEER_ENC_7BYTES_MIN ((1ULL << 39) | PEER_ENC_6BYTES_MIN) /* 0x81020408f0 (or 554084600048) */
190/* 8 bytes */
191#define PEER_ENC_8BYTES_MIN ((1ULL << 46) | PEER_ENC_7BYTES_MIN) /* 0x4081020408f0 (or 70922828777712) */
192/* 9 bytes */
193#define PEER_ENC_9BYTES_MIN ((1ULL << 53) | PEER_ENC_8BYTES_MIN) /* 0x204081020408f0 (or 9078122083518704) */
194/* 10 bytes */
195#define PEER_ENC_10BYTES_MIN ((1ULL << 60) | PEER_ENC_9BYTES_MIN) /* 0x10204081020408f0 (or 1161999626690365680) */
196
197/* #7 bit used to detect the last byte to be encoded */
198#define PEER_ENC_STOP_BIT 7
199/* The byte minimum value with #7 bit set */
200#define PEER_ENC_STOP_BYTE (1 << PEER_ENC_STOP_BIT)
201/* The left most number of bits set for PEER_ENC_2BYTES_MIN */
202#define PEER_ENC_2BYTES_MIN_BITS 4
203
Frédéric Lécaille39143342019-05-24 14:32:27 +0200204#define PEER_MSG_HEADER_LEN 2
205
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200206#define PEER_STKT_CACHE_MAX_ENTRIES 128
207
Emeric Brun2b920a12010-09-23 18:30:22 +0200208/**********************************/
209/* Peer Session IO handler states */
210/**********************************/
211
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100212enum {
213 PEER_SESS_ST_ACCEPT = 0, /* Initial state for session create by an accept, must be zero! */
214 PEER_SESS_ST_GETVERSION, /* Validate supported protocol version */
215 PEER_SESS_ST_GETHOST, /* Validate host ID correspond to local host id */
216 PEER_SESS_ST_GETPEER, /* Validate peer ID correspond to a known remote peer id */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100217 /* after this point, data were possibly exchanged */
218 PEER_SESS_ST_SENDSUCCESS, /* Send ret code 200 (success) and wait for message */
219 PEER_SESS_ST_CONNECT, /* Initial state for session create on a connect, push presentation into buffer */
220 PEER_SESS_ST_GETSTATUS, /* Wait for the welcome message */
221 PEER_SESS_ST_WAITMSG, /* Wait for data messages */
222 PEER_SESS_ST_EXIT, /* Exit with status code */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200223 PEER_SESS_ST_ERRPROTO, /* Send error proto message before exit */
224 PEER_SESS_ST_ERRSIZE, /* Send error size message before exit */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100225 PEER_SESS_ST_END, /* Killed session */
226};
Emeric Brun2b920a12010-09-23 18:30:22 +0200227
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100228/***************************************************/
229/* Peer Session status code - part of the protocol */
230/***************************************************/
Emeric Brun2b920a12010-09-23 18:30:22 +0200231
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100232#define PEER_SESS_SC_CONNECTCODE 100 /* connect in progress */
233#define PEER_SESS_SC_CONNECTEDCODE 110 /* tcp connect success */
Emeric Brun2b920a12010-09-23 18:30:22 +0200234
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100235#define PEER_SESS_SC_SUCCESSCODE 200 /* accept or connect successful */
Emeric Brun2b920a12010-09-23 18:30:22 +0200236
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100237#define PEER_SESS_SC_TRYAGAIN 300 /* try again later */
Emeric Brun2b920a12010-09-23 18:30:22 +0200238
Frédéric Lécailleaba44a22019-03-26 10:18:07 +0100239#define PEER_SESS_SC_ERRPROTO 501 /* error protocol */
240#define PEER_SESS_SC_ERRVERSION 502 /* unknown protocol version */
241#define PEER_SESS_SC_ERRHOST 503 /* bad host name */
242#define PEER_SESS_SC_ERRPEER 504 /* unknown peer */
Emeric Brun2b920a12010-09-23 18:30:22 +0200243
244#define PEER_SESSION_PROTO_NAME "HAProxyS"
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200245#define PEER_MAJOR_VER 2
246#define PEER_MINOR_VER 1
247#define PEER_DWNGRD_MINOR_VER 0
Emeric Brun2b920a12010-09-23 18:30:22 +0200248
Willy Tarreau6254a922019-01-29 17:45:23 +0100249static size_t proto_len = sizeof(PEER_SESSION_PROTO_NAME) - 1;
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200250struct peers *cfg_peers = NULL;
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200251static void peer_session_forceshutdown(struct peer *peer);
Emeric Brun2b920a12010-09-23 18:30:22 +0200252
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200253static struct ebpt_node *dcache_tx_insert(struct dcache *dc,
254 struct dcache_tx_entry *i);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200255static inline void flush_dcache(struct peer *peer);
256
Frédéric Lécaille95679dc2019-04-15 10:25:27 +0200257static const char *statuscode_str(int statuscode)
258{
259 switch (statuscode) {
260 case PEER_SESS_SC_CONNECTCODE:
261 return "CONN";
262 case PEER_SESS_SC_CONNECTEDCODE:
263 return "HSHK";
264 case PEER_SESS_SC_SUCCESSCODE:
265 return "ESTA";
266 case PEER_SESS_SC_TRYAGAIN:
267 return "RETR";
268 case PEER_SESS_SC_ERRPROTO:
269 return "PROT";
270 case PEER_SESS_SC_ERRVERSION:
271 return "VERS";
272 case PEER_SESS_SC_ERRHOST:
273 return "NAME";
274 case PEER_SESS_SC_ERRPEER:
275 return "UNKN";
276 default:
277 return "NONE";
278 }
279}
280
Emeric Brun18928af2017-03-29 16:32:53 +0200281/* This function encode an uint64 to 'dynamic' length format.
282 The encoded value is written at address *str, and the
283 caller must assure that size after *str is large enought.
284 At return, the *str is set at the next Byte after then
285 encoded integer. The function returns then length of the
286 encoded integer in Bytes */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200287int intencode(uint64_t i, char **str) {
288 int idx = 0;
289 unsigned char *msg;
290
Emeric Brunb3971ab2015-05-12 18:49:09 +0200291 msg = (unsigned char *)*str;
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200292 if (i < PEER_ENC_2BYTES_MIN) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200293 msg[0] = (unsigned char)i;
294 *str = (char *)&msg[idx+1];
295 return (idx+1);
296 }
297
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200298 msg[idx] =(unsigned char)i | PEER_ENC_2BYTES_MIN;
299 i = (i - PEER_ENC_2BYTES_MIN) >> PEER_ENC_2BYTES_MIN_BITS;
300 while (i >= PEER_ENC_STOP_BYTE) {
301 msg[++idx] = (unsigned char)i | PEER_ENC_STOP_BYTE;
302 i = (i - PEER_ENC_STOP_BYTE) >> PEER_ENC_STOP_BIT;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200303 }
304 msg[++idx] = (unsigned char)i;
305 *str = (char *)&msg[idx+1];
306 return (idx+1);
307}
308
309
310/* This function returns the decoded integer or 0
311 if decode failed
312 *str point on the beginning of the integer to decode
313 at the end of decoding *str point on the end of the
314 encoded integer or to null if end is reached */
Emeric Brun18928af2017-03-29 16:32:53 +0200315uint64_t intdecode(char **str, char *end)
316{
Emeric Brunb3971ab2015-05-12 18:49:09 +0200317 unsigned char *msg;
Emeric Brun18928af2017-03-29 16:32:53 +0200318 uint64_t i;
319 int shift;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200320
321 if (!*str)
322 return 0;
323
324 msg = (unsigned char *)*str;
Emeric Brun18928af2017-03-29 16:32:53 +0200325 if (msg >= (unsigned char *)end)
326 goto fail;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200327
Emeric Brun18928af2017-03-29 16:32:53 +0200328 i = *(msg++);
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200329 if (i >= PEER_ENC_2BYTES_MIN) {
330 shift = PEER_ENC_2BYTES_MIN_BITS;
Emeric Brun18928af2017-03-29 16:32:53 +0200331 do {
332 if (msg >= (unsigned char *)end)
333 goto fail;
334 i += (uint64_t)*msg << shift;
Frédéric Lécaille32b55732019-06-03 18:29:51 +0200335 shift += PEER_ENC_STOP_BIT;
336 } while (*(msg++) >= PEER_ENC_STOP_BYTE);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200337 }
Frédéric Lécaillea8725ec2019-01-22 10:31:39 +0100338 *str = (char *)msg;
339 return i;
Emeric Brun18928af2017-03-29 16:32:53 +0200340
Frédéric Lécaillea8725ec2019-01-22 10:31:39 +0100341 fail:
342 *str = NULL;
343 return 0;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200344}
Emeric Brun2b920a12010-09-23 18:30:22 +0200345
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100346/*
347 * Build a "hello" peer protocol message.
348 * Return the number of written bytes written to build this messages if succeeded,
349 * 0 if not.
350 */
351static int peer_prepare_hellomsg(char *msg, size_t size, struct peer_prep_params *p)
352{
353 int min_ver, ret;
354 struct peer *peer;
355
356 peer = p->hello.peer;
357 min_ver = (peer->flags & PEER_F_DWNGRD) ? PEER_DWNGRD_MINOR_VER : PEER_MINOR_VER;
358 /* Prepare headers */
359 ret = snprintf(msg, size, PEER_SESSION_PROTO_NAME " %u.%u\n%s\n%s %d %d\n",
360 PEER_MAJOR_VER, min_ver, peer->id, localpeer, (int)getpid(), relative_pid);
361 if (ret >= size)
362 return 0;
363
364 return ret;
365}
366
367/*
368 * Build a "handshake succeeded" status message.
369 * Return the number of written bytes written to build this messages if succeeded,
370 * 0 if not.
371 */
372static int peer_prepare_status_successmsg(char *msg, size_t size, struct peer_prep_params *p)
373{
374 int ret;
375
376 ret = snprintf(msg, size, "%d\n", PEER_SESS_SC_SUCCESSCODE);
377 if (ret >= size)
378 return 0;
379
380 return ret;
381}
382
383/*
384 * Build an error status message.
385 * Return the number of written bytes written to build this messages if succeeded,
386 * 0 if not.
387 */
388static int peer_prepare_status_errormsg(char *msg, size_t size, struct peer_prep_params *p)
389{
390 int ret;
391 unsigned int st1;
392
393 st1 = p->error_status.st1;
394 ret = snprintf(msg, size, "%d\n", st1);
395 if (ret >= size)
396 return 0;
397
398 return ret;
399}
400
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200401/* Set the stick-table UPDATE message type byte at <msg_type> address,
402 * depending on <use_identifier> and <use_timed> boolean parameters.
403 * Always successful.
404 */
405static inline void peer_set_update_msg_type(char *msg_type, int use_identifier, int use_timed)
406{
407 if (use_timed) {
408 if (use_identifier)
409 *msg_type = PEER_MSG_STKT_UPDATE_TIMED;
410 else
411 *msg_type = PEER_MSG_STKT_INCUPDATE_TIMED;
412 }
413 else {
414 if (use_identifier)
415 *msg_type = PEER_MSG_STKT_UPDATE;
416 else
417 *msg_type = PEER_MSG_STKT_INCUPDATE;
418 }
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200419}
Emeric Brun2b920a12010-09-23 18:30:22 +0200420/*
Emeric Brunb3971ab2015-05-12 18:49:09 +0200421 * This prepare the data update message on the stick session <ts>, <st> is the considered
422 * stick table.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800423 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200424 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
425 * check size)
Emeric Brun2b920a12010-09-23 18:30:22 +0200426 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100427static int peer_prepare_updatemsg(char *msg, size_t size, struct peer_prep_params *p)
Emeric Brun2b920a12010-09-23 18:30:22 +0200428{
429 uint32_t netinteger;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200430 unsigned short datalen;
431 char *cursor, *datamsg;
Emeric Brun94900952015-06-11 18:25:54 +0200432 unsigned int data_type;
433 void *data_ptr;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100434 struct stksess *ts;
435 struct shared_table *st;
436 unsigned int updateid;
437 int use_identifier;
438 int use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200439 struct peer *peer;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100440
441 ts = p->updt.stksess;
442 st = p->updt.shared_table;
443 updateid = p->updt.updateid;
444 use_identifier = p->updt.use_identifier;
445 use_timed = p->updt.use_timed;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200446 peer = p->updt.peer;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200447
Frédéric Lécaille0e8db972019-05-24 14:34:34 +0200448 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200449
Emeric Brun2b920a12010-09-23 18:30:22 +0200450 /* construct message */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200451
452 /* check if we need to send the update identifer */
Emeric Brun819fc6f2017-06-13 19:37:32 +0200453 if (!st->last_pushed || updateid < st->last_pushed || ((updateid - st->last_pushed) != 1)) {
Emeric Bruna6a09982015-09-22 15:34:19 +0200454 use_identifier = 1;
Emeric Brun2b920a12010-09-23 18:30:22 +0200455 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200456
457 /* encode update identifier if needed */
458 if (use_identifier) {
Emeric Brun819fc6f2017-06-13 19:37:32 +0200459 netinteger = htonl(updateid);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200460 memcpy(cursor, &netinteger, sizeof(netinteger));
461 cursor += sizeof(netinteger);
Emeric Brun2b920a12010-09-23 18:30:22 +0200462 }
463
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200464 if (use_timed) {
465 netinteger = htonl(tick_remain(now_ms, ts->expire));
466 memcpy(cursor, &netinteger, sizeof(netinteger));
467 cursor += sizeof(netinteger);
468 }
469
Emeric Brunb3971ab2015-05-12 18:49:09 +0200470 /* encode the key */
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +0200471 if (st->table->type == SMP_T_STR) {
Emeric Brun2b920a12010-09-23 18:30:22 +0200472 int stlen = strlen((char *)ts->key.key);
473
Emeric Brunb3971ab2015-05-12 18:49:09 +0200474 intencode(stlen, &cursor);
475 memcpy(cursor, ts->key.key, stlen);
476 cursor += stlen;
Emeric Brun2b920a12010-09-23 18:30:22 +0200477 }
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +0200478 else if (st->table->type == SMP_T_SINT) {
Emeric Brun2b920a12010-09-23 18:30:22 +0200479 netinteger = htonl(*((uint32_t *)ts->key.key));
Emeric Brunb3971ab2015-05-12 18:49:09 +0200480 memcpy(cursor, &netinteger, sizeof(netinteger));
481 cursor += sizeof(netinteger);
Emeric Brun2b920a12010-09-23 18:30:22 +0200482 }
483 else {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200484 memcpy(cursor, ts->key.key, st->table->key_size);
485 cursor += st->table->key_size;
Emeric Brun2b920a12010-09-23 18:30:22 +0200486 }
487
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100488 HA_RWLOCK_RDLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200489 /* encode values */
Emeric Brun94900952015-06-11 18:25:54 +0200490 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200491
Emeric Brun94900952015-06-11 18:25:54 +0200492 data_ptr = stktable_data_ptr(st->table, ts, data_type);
493 if (data_ptr) {
494 switch (stktable_data_types[data_type].std_type) {
495 case STD_T_SINT: {
496 int data;
497
498 data = stktable_data_cast(data_ptr, std_t_sint);
499 intencode(data, &cursor);
500 break;
501 }
502 case STD_T_UINT: {
503 unsigned int data;
504
505 data = stktable_data_cast(data_ptr, std_t_uint);
506 intencode(data, &cursor);
507 break;
508 }
509 case STD_T_ULL: {
510 unsigned long long data;
511
512 data = stktable_data_cast(data_ptr, std_t_ull);
513 intencode(data, &cursor);
514 break;
515 }
516 case STD_T_FRQP: {
517 struct freq_ctr_period *frqp;
518
519 frqp = &stktable_data_cast(data_ptr, std_t_frqp);
520 intencode((unsigned int)(now_ms - frqp->curr_tick), &cursor);
521 intencode(frqp->curr_ctr, &cursor);
522 intencode(frqp->prev_ctr, &cursor);
523 break;
524 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200525 case STD_T_DICT: {
526 struct dict_entry *de;
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200527 struct ebpt_node *cached_de;
Willy Tarreau237f8ae2019-06-06 16:40:43 +0200528 struct dcache_tx_entry cde = { };
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200529 char *beg, *end;
530 size_t value_len, data_len;
531 struct dcache *dc;
532
533 de = stktable_data_cast(data_ptr, std_t_dict);
Frédéric Lécailled9203ca2019-11-13 17:50:34 +0100534 if (!de) {
535 /* No entry */
536 intencode(0, &cursor);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200537 break;
Frédéric Lécailled9203ca2019-11-13 17:50:34 +0100538 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200539
540 dc = peer->dcache;
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200541 cde.entry.key = de;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200542 cached_de = dcache_tx_insert(dc, &cde);
Frédéric Lécaillefd827932019-06-07 10:34:04 +0200543 if (cached_de == &cde.entry) {
544 if (cde.id + 1 >= PEER_ENC_2BYTES_MIN)
545 break;
546 /* Encode the length of the remaining data -> 1 */
547 intencode(1, &cursor);
548 /* Encode the cache entry ID */
549 intencode(cde.id + 1, &cursor);
550 }
551 else {
552 /* Leave enough room to encode the remaining data length. */
553 end = beg = cursor + PEER_MSG_ENC_LENGTH_MAXLEN;
554 /* Encode the dictionary entry key */
555 intencode(cde.id + 1, &end);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200556 /* Encode the length of the dictionary entry data */
Frédéric Lécaillefd827932019-06-07 10:34:04 +0200557 value_len = de->len;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200558 intencode(value_len, &end);
559 /* Copy the data */
560 memcpy(end, de->value.key, value_len);
561 end += value_len;
Frédéric Lécaillefd827932019-06-07 10:34:04 +0200562 /* Encode the length of the data */
563 data_len = end - beg;
564 intencode(data_len, &cursor);
565 memmove(cursor, beg, data_len);
566 cursor += data_len;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200567 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200568 break;
569 }
Emeric Brun94900952015-06-11 18:25:54 +0200570 }
571 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200572 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100573 HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200574
575 /* Compute datalen */
576 datalen = (cursor - datamsg);
577
578 /* prepare message header */
579 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200580 peer_set_update_msg_type(&msg[1], use_identifier, use_timed);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200581 cursor = &msg[2];
582 intencode(datalen, &cursor);
583
584 /* move data after header */
585 memmove(cursor, datamsg, datalen);
586
587 /* return header size + data_len */
588 return (cursor - msg) + datalen;
589}
590
591/*
592 * This prepare the switch table message to targeted share table <st>.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800593 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200594 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
595 * check size)
596 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100597static int peer_prepare_switchmsg(char *msg, size_t size, struct peer_prep_params *params)
Emeric Brunb3971ab2015-05-12 18:49:09 +0200598{
599 int len;
600 unsigned short datalen;
Willy Tarreau83061a82018-07-13 11:56:34 +0200601 struct buffer *chunk;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200602 char *cursor, *datamsg, *chunkp, *chunkq;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200603 uint64_t data = 0;
Emeric Brun94900952015-06-11 18:25:54 +0200604 unsigned int data_type;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100605 struct shared_table *st;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200606
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100607 st = params->swtch.shared_table;
Frédéric Lécaille39143342019-05-24 14:32:27 +0200608 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200609
610 /* Encode data */
611
612 /* encode local id */
613 intencode(st->local_id, &cursor);
614
615 /* encode table name */
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100616 len = strlen(st->table->nid);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200617 intencode(len, &cursor);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100618 memcpy(cursor, st->table->nid, len);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200619 cursor += len;
620
621 /* encode table type */
622
623 intencode(st->table->type, &cursor);
624
625 /* encode table key size */
626 intencode(st->table->key_size, &cursor);
627
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200628 chunk = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200629 chunkp = chunkq = chunk->area;
Emeric Brun94900952015-06-11 18:25:54 +0200630 /* encode available known data types in table */
631 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
632 if (st->table->data_ofs[data_type]) {
633 switch (stktable_data_types[data_type].std_type) {
634 case STD_T_SINT:
635 case STD_T_UINT:
636 case STD_T_ULL:
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200637 case STD_T_DICT:
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200638 data |= 1 << data_type;
639 break;
Emeric Brun94900952015-06-11 18:25:54 +0200640 case STD_T_FRQP:
641 data |= 1 << data_type;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200642 intencode(data_type, &chunkq);
643 intencode(st->table->data_arg[data_type].u, &chunkq);
Emeric Brun94900952015-06-11 18:25:54 +0200644 break;
645 }
646 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200647 }
648 intencode(data, &cursor);
649
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200650 /* Encode stick-table entries duration. */
651 intencode(st->table->expire, &cursor);
652
653 if (chunkq > chunkp) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200654 chunk->data = chunkq - chunkp;
655 memcpy(cursor, chunk->area, chunk->data);
656 cursor += chunk->data;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200657 }
658
Emeric Brunb3971ab2015-05-12 18:49:09 +0200659 /* Compute datalen */
660 datalen = (cursor - datamsg);
Emeric Brun2b920a12010-09-23 18:30:22 +0200661
Emeric Brunb3971ab2015-05-12 18:49:09 +0200662 /* prepare message header */
663 msg[0] = PEER_MSG_CLASS_STICKTABLE;
664 msg[1] = PEER_MSG_STKT_DEFINE;
665 cursor = &msg[2];
666 intencode(datalen, &cursor);
Emeric Brun2b920a12010-09-23 18:30:22 +0200667
Emeric Brunb3971ab2015-05-12 18:49:09 +0200668 /* move data after header */
669 memmove(cursor, datamsg, datalen);
670
671 /* return header size + data_len */
672 return (cursor - msg) + datalen;
Emeric Brun2b920a12010-09-23 18:30:22 +0200673}
674
Emeric Brunb3971ab2015-05-12 18:49:09 +0200675/*
676 * This prepare the acknowledge message on the stick session <ts>, <st> is the considered
677 * stick table.
Joseph Herlant82b2f542018-11-15 12:19:14 -0800678 * <msg> is a buffer of <size> to receive data message content
Emeric Brunb3971ab2015-05-12 18:49:09 +0200679 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
680 * check size)
681 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100682static int peer_prepare_ackmsg(char *msg, size_t size, struct peer_prep_params *p)
Emeric Brunb3971ab2015-05-12 18:49:09 +0200683{
684 unsigned short datalen;
685 char *cursor, *datamsg;
686 uint32_t netinteger;
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100687 struct shared_table *st;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200688
Frédéric Lécaille39143342019-05-24 14:32:27 +0200689 cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200690
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100691 st = p->ack.shared_table;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200692 intencode(st->remote_id, &cursor);
693 netinteger = htonl(st->last_get);
694 memcpy(cursor, &netinteger, sizeof(netinteger));
695 cursor += sizeof(netinteger);
696
697 /* Compute datalen */
698 datalen = (cursor - datamsg);
699
700 /* prepare message header */
701 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Emeric Brune1ab8082015-08-21 11:48:54 +0200702 msg[1] = PEER_MSG_STKT_ACK;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200703 cursor = &msg[2];
704 intencode(datalen, &cursor);
705
706 /* move data after header */
707 memmove(cursor, datamsg, datalen);
708
709 /* return header size + data_len */
710 return (cursor - msg) + datalen;
711}
Emeric Brun2b920a12010-09-23 18:30:22 +0200712
713/*
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200714 * Function to deinit connected peer
715 */
716void __peer_session_deinit(struct peer *peer)
717{
718 struct stream_interface *si;
719 struct stream *s;
720 struct peers *peers;
721
722 if (!peer->appctx)
723 return;
724
725 si = peer->appctx->owner;
726 if (!si)
727 return;
728
729 s = si_strm(si);
730 if (!s)
731 return;
732
733 peers = strm_fe(s)->parent;
734 if (!peers)
735 return;
736
737 if (peer->appctx->st0 == PEER_SESS_ST_WAITMSG)
738 HA_ATOMIC_SUB(&connected_peers, 1);
739
740 HA_ATOMIC_SUB(&active_peers, 1);
741
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200742 flush_dcache(peer);
743
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200744 /* Re-init current table pointers to force announcement on re-connect */
745 peer->remote_table = peer->last_local_table = NULL;
746 peer->appctx = NULL;
747 if (peer->flags & PEER_F_LEARN_ASSIGN) {
748 /* unassign current peer for learning */
749 peer->flags &= ~(PEER_F_LEARN_ASSIGN);
750 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
751
752 /* reschedule a resync */
753 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000));
754 }
755 /* reset teaching and learning flags to 0 */
756 peer->flags &= PEER_TEACH_RESET;
757 peer->flags &= PEER_LEARN_RESET;
758 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
759}
760
761/*
Emeric Brun2b920a12010-09-23 18:30:22 +0200762 * Callback to release a session with a peer
763 */
Willy Tarreau00a37f02015-04-13 12:05:19 +0200764static void peer_session_release(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +0200765{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200766 struct peer *peer = appctx->ctx.peers.ptr;
Emeric Brun2b920a12010-09-23 18:30:22 +0200767
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100768 /* appctx->ctx.peers.ptr is not a peer session */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100769 if (appctx->st0 < PEER_SESS_ST_SENDSUCCESS)
Emeric Brun2b920a12010-09-23 18:30:22 +0200770 return;
771
772 /* peer session identified */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200773 if (peer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100774 HA_SPIN_LOCK(PEER_LOCK, &peer->lock);
Emeric Brun9ef2ad72019-04-02 17:22:01 +0200775 if (peer->appctx == appctx)
776 __peer_session_deinit(peer);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100777 HA_SPIN_UNLOCK(PEER_LOCK, &peer->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +0200778 }
779}
780
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200781/* Retrieve the major and minor versions of peers protocol
782 * announced by a remote peer. <str> is a null-terminated
783 * string with the following format: "<maj_ver>.<min_ver>".
784 */
785static int peer_get_version(const char *str,
786 unsigned int *maj_ver, unsigned int *min_ver)
787{
788 unsigned int majv, minv;
789 const char *pos, *saved;
790 const char *end;
791
792 saved = pos = str;
793 end = str + strlen(str);
794
795 majv = read_uint(&pos, end);
796 if (saved == pos || *pos++ != '.')
797 return -1;
798
799 saved = pos;
800 minv = read_uint(&pos, end);
801 if (saved == pos || pos != end)
802 return -1;
803
804 *maj_ver = majv;
805 *min_ver = minv;
806
807 return 0;
808}
Emeric Brun2b920a12010-09-23 18:30:22 +0200809
810/*
Frédéric Lécaillece025572019-01-21 13:38:06 +0100811 * Parse a line terminated by an optional '\r' character, followed by a mandatory
812 * '\n' character.
813 * Returns 1 if succeeded or 0 if a '\n' character could not be found, and -1 if
814 * a line could not be read because the communication channel is closed.
815 */
816static inline int peer_getline(struct appctx *appctx)
817{
818 int n;
819 struct stream_interface *si = appctx->owner;
820
821 n = co_getline(si_oc(si), trash.area, trash.size);
822 if (!n)
823 return 0;
824
825 if (n < 0 || trash.area[n - 1] != '\n') {
826 appctx->st0 = PEER_SESS_ST_END;
827 return -1;
828 }
829
830 if (n > 1 && (trash.area[n - 2] == '\r'))
831 trash.area[n - 2] = 0;
832 else
833 trash.area[n - 1] = 0;
834
835 co_skip(si_oc(si), n);
836
837 return n;
838}
839
840/*
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100841 * Send a message after having called <peer_prepare_msg> to build it.
842 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
843 * Returns -1 if there was not enough room left to send the message,
844 * any other negative returned value must be considered as an error with an appcxt st0
845 * returned value equal to PEER_SESS_ST_END.
846 */
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100847static inline int peer_send_msg(struct appctx *appctx,
848 int (*peer_prepare_msg)(char *, size_t, struct peer_prep_params *),
849 struct peer_prep_params *params)
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100850{
851 int ret, msglen;
852 struct stream_interface *si = appctx->owner;
853
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100854 msglen = peer_prepare_msg(trash.area, trash.size, params);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100855 if (!msglen) {
856 /* internal error: message does not fit in trash */
857 appctx->st0 = PEER_SESS_ST_END;
858 return 0;
859 }
860
861 /* message to buffer */
862 ret = ci_putblk(si_ic(si), trash.area, msglen);
863 if (ret <= 0) {
864 if (ret == -1) {
865 /* No more write possible */
866 si_rx_room_blk(si);
867 return -1;
868 }
869 appctx->st0 = PEER_SESS_ST_END;
870 }
871
872 return ret;
873}
874
875/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100876 * Send a hello message.
877 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
878 * Returns -1 if there was not enough room left to send the message,
879 * any other negative returned value must be considered as an error with an appcxt st0
880 * returned value equal to PEER_SESS_ST_END.
881 */
882static inline int peer_send_hellomsg(struct appctx *appctx, struct peer *peer)
883{
884 struct peer_prep_params p = {
885 .hello.peer = peer,
886 };
887
888 return peer_send_msg(appctx, peer_prepare_hellomsg, &p);
889}
890
891/*
892 * Send a success peer handshake status message.
893 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
894 * Returns -1 if there was not enough room left to send the message,
895 * any other negative returned value must be considered as an error with an appcxt st0
896 * returned value equal to PEER_SESS_ST_END.
897 */
898static inline int peer_send_status_successmsg(struct appctx *appctx)
899{
900 return peer_send_msg(appctx, peer_prepare_status_successmsg, NULL);
901}
902
903/*
904 * Send a peer handshake status error message.
905 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
906 * Returns -1 if there was not enough room left to send the message,
907 * any other negative returned value must be considered as an error with an appcxt st0
908 * returned value equal to PEER_SESS_ST_END.
909 */
910static inline int peer_send_status_errormsg(struct appctx *appctx)
911{
912 struct peer_prep_params p = {
913 .error_status.st1 = appctx->st1,
914 };
915
916 return peer_send_msg(appctx, peer_prepare_status_errormsg, &p);
917}
918
919/*
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100920 * Send a stick-table switch message.
921 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
922 * Returns -1 if there was not enough room left to send the message,
923 * any other negative returned value must be considered as an error with an appcxt st0
924 * returned value equal to PEER_SESS_ST_END.
925 */
926static inline int peer_send_switchmsg(struct shared_table *st, struct appctx *appctx)
927{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100928 struct peer_prep_params p = {
929 .swtch.shared_table = st,
930 };
931
932 return peer_send_msg(appctx, peer_prepare_switchmsg, &p);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100933}
934
935/*
936 * Send a stick-table update acknowledgement message.
937 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
938 * Returns -1 if there was not enough room left to send the message,
939 * any other negative returned value must be considered as an error with an appcxt st0
940 * returned value equal to PEER_SESS_ST_END.
941 */
942static inline int peer_send_ackmsg(struct shared_table *st, struct appctx *appctx)
943{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100944 struct peer_prep_params p = {
945 .ack.shared_table = st,
946 };
947
948 return peer_send_msg(appctx, peer_prepare_ackmsg, &p);
Frédéric Lécailleec44ea82019-01-22 15:54:53 +0100949}
950
951/*
Frédéric Lécaille87f554c2019-01-22 17:26:50 +0100952 * Send a stick-table update message.
953 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
954 * Returns -1 if there was not enough room left to send the message,
955 * any other negative returned value must be considered as an error with an appcxt st0
956 * returned value equal to PEER_SESS_ST_END.
957 */
958static inline int peer_send_updatemsg(struct shared_table *st, struct appctx *appctx, struct stksess *ts,
959 unsigned int updateid, int use_identifier, int use_timed)
960{
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100961 struct peer_prep_params p = {
962 .updt.stksess = ts,
963 .updt.shared_table = st,
964 .updt.updateid = updateid,
965 .updt.use_identifier = use_identifier,
966 .updt.use_timed = use_timed,
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +0200967 .updt.peer = appctx->ctx.peers.ptr,
Frédéric Lécailled5fe14b2019-01-24 10:33:40 +0100968 };
969
970 return peer_send_msg(appctx, peer_prepare_updatemsg, &p);
Frédéric Lécaille87f554c2019-01-22 17:26:50 +0100971}
972
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100973/*
974 * Build a peer protocol control class message.
975 * Returns the number of written bytes used to build the message if succeeded,
976 * 0 if not.
977 */
978static int peer_prepare_control_msg(char *msg, size_t size, struct peer_prep_params *p)
979{
980 if (size < sizeof p->control.head)
981 return 0;
982
983 msg[0] = p->control.head[0];
984 msg[1] = p->control.head[1];
985
986 return 2;
987}
Frédéric Lécaille6a8303d2019-01-22 22:25:17 +0100988
989/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +0100990 * Send a stick-table synchronization request message.
991 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
992 * Returns -1 if there was not enough room left to send the message,
993 * any other negative returned value must be considered as an error with an appctx st0
994 * returned value equal to PEER_SESS_ST_END.
995 */
996static inline int peer_send_resync_reqmsg(struct appctx *appctx)
997{
998 struct peer_prep_params p = {
999 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCREQ, },
1000 };
1001
1002 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1003}
1004
1005/*
1006 * Send a stick-table synchronization confirmation message.
1007 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1008 * Returns -1 if there was not enough room left to send the message,
1009 * any other negative returned value must be considered as an error with an appctx st0
1010 * returned value equal to PEER_SESS_ST_END.
1011 */
1012static inline int peer_send_resync_confirmsg(struct appctx *appctx)
1013{
1014 struct peer_prep_params p = {
1015 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCCONFIRM, },
1016 };
1017
1018 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1019}
1020
1021/*
1022 * Send a stick-table synchronization finished message.
1023 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1024 * Returns -1 if there was not enough room left to send the message,
1025 * any other negative returned value must be considered as an error with an appctx st0
1026 * returned value equal to PEER_SESS_ST_END.
1027 */
1028static inline int peer_send_resync_finishedmsg(struct appctx *appctx, struct peer *peer)
1029{
1030 struct peer_prep_params p = {
1031 .control.head = { PEER_MSG_CLASS_CONTROL, },
1032 };
1033
1034 p.control.head[1] = (peer->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FINISHED ?
1035 PEER_MSG_CTRL_RESYNCFINISHED : PEER_MSG_CTRL_RESYNCPARTIAL;
1036
1037 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1038}
1039
1040/*
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001041 * Send a heartbeat message.
1042 * Return 0 if the message could not be built modifying the appctx st0 to PEER_SESS_ST_END value.
1043 * Returns -1 if there was not enough room left to send the message,
1044 * any other negative returned value must be considered as an error with an appctx st0
1045 * returned value equal to PEER_SESS_ST_END.
1046 */
1047static inline int peer_send_heartbeatmsg(struct appctx *appctx)
1048{
1049 struct peer_prep_params p = {
1050 .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_HEARTBEAT, },
1051 };
1052
1053 return peer_send_msg(appctx, peer_prepare_control_msg, &p);
1054}
1055
1056/*
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01001057 * Build a peer protocol error class message.
1058 * Returns the number of written bytes used to build the message if succeeded,
1059 * 0 if not.
1060 */
1061static int peer_prepare_error_msg(char *msg, size_t size, struct peer_prep_params *p)
1062{
1063 if (size < sizeof p->error.head)
1064 return 0;
1065
1066 msg[0] = p->error.head[0];
1067 msg[1] = p->error.head[1];
1068
1069 return 2;
1070}
1071
1072/*
1073 * Send a "size limit reached" error message.
1074 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1075 * Returns -1 if there was not enough room left to send the message,
1076 * any other negative returned value must be considered as an error with an appctx st0
1077 * returned value equal to PEER_SESS_ST_END.
1078 */
1079static inline int peer_send_error_size_limitmsg(struct appctx *appctx)
1080{
1081 struct peer_prep_params p = {
1082 .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_SIZELIMIT, },
1083 };
1084
1085 return peer_send_msg(appctx, peer_prepare_error_msg, &p);
1086}
1087
1088/*
1089 * Send a "peer protocol" error message.
1090 * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1091 * Returns -1 if there was not enough room left to send the message,
1092 * any other negative returned value must be considered as an error with an appctx st0
1093 * returned value equal to PEER_SESS_ST_END.
1094 */
1095static inline int peer_send_error_protomsg(struct appctx *appctx)
1096{
1097 struct peer_prep_params p = {
1098 .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_PROTOCOL, },
1099 };
1100
1101 return peer_send_msg(appctx, peer_prepare_error_msg, &p);
1102}
1103
1104/*
Frédéric Lécaille6a8303d2019-01-22 22:25:17 +01001105 * Function used to lookup for recent stick-table updates associated with
1106 * <st> shared stick-table when a lesson must be taught a peer (PEER_F_LEARN_ASSIGN flag set).
1107 */
1108static inline struct stksess *peer_teach_process_stksess_lookup(struct shared_table *st)
1109{
1110 struct eb32_node *eb;
1111
1112 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1113 if (!eb) {
1114 eb = eb32_first(&st->table->updates);
1115 if (!eb || ((int)(eb->key - st->last_pushed) <= 0)) {
1116 st->table->commitupdate = st->last_pushed = st->table->localupdate;
1117 return NULL;
1118 }
1119 }
1120
1121 if ((int)(eb->key - st->table->localupdate) > 0) {
1122 st->table->commitupdate = st->last_pushed = st->table->localupdate;
1123 return NULL;
1124 }
1125
1126 return eb32_entry(eb, struct stksess, upd);
1127}
1128
1129/*
1130 * Function used to lookup for recent stick-table updates associated with
1131 * <st> shared stick-table during teach state 1 step.
1132 */
1133static inline struct stksess *peer_teach_stage1_stksess_lookup(struct shared_table *st)
1134{
1135 struct eb32_node *eb;
1136
1137 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1138 if (!eb) {
1139 st->flags |= SHTABLE_F_TEACH_STAGE1;
1140 eb = eb32_first(&st->table->updates);
1141 if (eb)
1142 st->last_pushed = eb->key - 1;
1143 return NULL;
1144 }
1145
1146 return eb32_entry(eb, struct stksess, upd);
1147}
1148
1149/*
1150 * Function used to lookup for recent stick-table updates associated with
1151 * <st> shared stick-table during teach state 2 step.
1152 */
1153static inline struct stksess *peer_teach_stage2_stksess_lookup(struct shared_table *st)
1154{
1155 struct eb32_node *eb;
1156
1157 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
1158 if (!eb || eb->key > st->teaching_origin) {
1159 st->flags |= SHTABLE_F_TEACH_STAGE2;
1160 return NULL;
1161 }
1162
1163 return eb32_entry(eb, struct stksess, upd);
1164}
1165
1166/*
1167 * Generic function to emit update messages for <st> stick-table when a lesson must
1168 * be taught to the peer <p>.
1169 * <locked> must be set to 1 if the shared table <st> is already locked when entering
1170 * this function, 0 if not.
1171 *
1172 * This function temporary unlock/lock <st> when it sends stick-table updates or
1173 * when decrementing its refcount in case of any error when it sends this updates.
1174 *
1175 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1176 * Returns -1 if there was not enough room left to send the message,
1177 * any other negative returned value must be considered as an error with an appcxt st0
1178 * returned value equal to PEER_SESS_ST_END.
1179 * If it returns 0 or -1, this function leave <st> locked if already locked when entering this function
1180 * unlocked if not already locked when entering this function.
1181 */
1182static inline int peer_send_teachmsgs(struct appctx *appctx, struct peer *p,
1183 struct stksess *(*peer_stksess_lookup)(struct shared_table *),
1184 struct shared_table *st, int locked)
1185{
1186 int ret, new_pushed, use_timed;
1187
1188 ret = 1;
1189 use_timed = 0;
1190 if (st != p->last_local_table) {
1191 ret = peer_send_switchmsg(st, appctx);
1192 if (ret <= 0)
1193 return ret;
1194
1195 p->last_local_table = st;
1196 }
1197
1198 if (peer_stksess_lookup != peer_teach_process_stksess_lookup)
1199 use_timed = !(p->flags & PEER_F_DWNGRD);
1200
1201 /* We force new pushed to 1 to force identifier in update message */
1202 new_pushed = 1;
1203
1204 if (!locked)
1205 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1206
1207 while (1) {
1208 struct stksess *ts;
1209 unsigned updateid;
1210
1211 /* push local updates */
1212 ts = peer_stksess_lookup(st);
1213 if (!ts)
1214 break;
1215
1216 updateid = ts->upd.key;
1217 ts->ref_cnt++;
1218 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1219
1220 ret = peer_send_updatemsg(st, appctx, ts, updateid, new_pushed, use_timed);
1221 if (ret <= 0) {
1222 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1223 ts->ref_cnt--;
1224 if (!locked)
1225 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1226 return ret;
1227 }
1228
1229 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1230 ts->ref_cnt--;
1231 st->last_pushed = updateid;
1232
1233 if (peer_stksess_lookup == peer_teach_process_stksess_lookup &&
1234 (int)(st->last_pushed - st->table->commitupdate) > 0)
1235 st->table->commitupdate = st->last_pushed;
1236
1237 /* identifier may not needed in next update message */
1238 new_pushed = 0;
1239 }
1240
1241 out:
1242 if (!locked)
1243 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1244 return 1;
1245}
1246
1247/*
1248 * Function to emit update messages for <st> stick-table when a lesson must
1249 * be taught to the peer <p> (PEER_F_LEARN_ASSIGN flag set).
1250 *
1251 * Note that <st> shared stick-table is locked when calling this function.
1252 *
1253 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1254 * Returns -1 if there was not enough room left to send the message,
1255 * any other negative returned value must be considered as an error with an appcxt st0
1256 * returned value equal to PEER_SESS_ST_END.
1257 */
1258static inline int peer_send_teach_process_msgs(struct appctx *appctx, struct peer *p,
1259 struct shared_table *st)
1260{
1261 return peer_send_teachmsgs(appctx, p, peer_teach_process_stksess_lookup, st, 1);
1262}
1263
1264/*
1265 * Function to emit update messages for <st> stick-table when a lesson must
1266 * be taught to the peer <p> during teach state 1 step.
1267 *
1268 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1269 * Returns -1 if there was not enough room left to send the message,
1270 * any other negative returned value must be considered as an error with an appcxt st0
1271 * returned value equal to PEER_SESS_ST_END.
1272 */
1273static inline int peer_send_teach_stage1_msgs(struct appctx *appctx, struct peer *p,
1274 struct shared_table *st)
1275{
1276 return peer_send_teachmsgs(appctx, p, peer_teach_stage1_stksess_lookup, st, 0);
1277}
1278
1279/*
1280 * Function to emit update messages for <st> stick-table when a lesson must
1281 * be taught to the peer <p> during teach state 1 step.
1282 *
1283 * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value.
1284 * Returns -1 if there was not enough room left to send the message,
1285 * any other negative returned value must be considered as an error with an appcxt st0
1286 * returned value equal to PEER_SESS_ST_END.
1287 */
1288static inline int peer_send_teach_stage2_msgs(struct appctx *appctx, struct peer *p,
1289 struct shared_table *st)
1290{
1291 return peer_send_teachmsgs(appctx, p, peer_teach_stage2_stksess_lookup, st, 0);
1292}
1293
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001294
1295/*
1296 * Function used to parse a stick-table update message after it has been received
1297 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1298 * receipt buffer with <msg_end> being position of the end of the stick-table message.
1299 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1300 * was encountered.
1301 * <exp> must be set if the stick-table entry expires.
1302 * <updt> must be set for PEER_MSG_STKT_UPDATE or PEER_MSG_STKT_UPDATE_TIMED stick-table
1303 * messages, in this case the stick-table udpate message is received with a stick-table
1304 * update ID.
1305 * <totl> is the length of the stick-table update message computed upon receipt.
1306 */
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001307static int peer_treat_updatemsg(struct appctx *appctx, struct peer *p, int updt, int exp,
1308 char **msg_cur, char *msg_end, int msg_len, int totl)
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001309{
1310 struct stream_interface *si = appctx->owner;
1311 struct shared_table *st = p->remote_table;
1312 struct stksess *ts, *newts;
1313 uint32_t update;
1314 int expire;
1315 unsigned int data_type;
1316 void *data_ptr;
1317
1318 /* Here we have data message */
1319 if (!st)
1320 goto ignore_msg;
1321
1322 expire = MS_TO_TICKS(st->table->expire);
1323
1324 if (updt) {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001325 if (msg_len < sizeof(update))
1326 goto malformed_exit;
1327
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001328 memcpy(&update, *msg_cur, sizeof(update));
1329 *msg_cur += sizeof(update);
1330 st->last_get = htonl(update);
1331 }
1332 else {
1333 st->last_get++;
1334 }
1335
1336 if (exp) {
1337 size_t expire_sz = sizeof expire;
1338
Willy Tarreau1e82a142019-01-29 11:08:06 +01001339 if (*msg_cur + expire_sz > msg_end)
1340 goto malformed_exit;
1341
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001342 memcpy(&expire, *msg_cur, expire_sz);
1343 *msg_cur += expire_sz;
1344 expire = ntohl(expire);
1345 }
1346
1347 newts = stksess_new(st->table, NULL);
1348 if (!newts)
1349 goto ignore_msg;
1350
1351 if (st->table->type == SMP_T_STR) {
1352 unsigned int to_read, to_store;
1353
1354 to_read = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001355 if (!*msg_cur)
1356 goto malformed_free_newts;
1357
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001358 to_store = MIN(to_read, st->table->key_size - 1);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001359 if (*msg_cur + to_store > msg_end)
1360 goto malformed_free_newts;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001361
1362 memcpy(newts->key.key, *msg_cur, to_store);
1363 newts->key.key[to_store] = 0;
1364 *msg_cur += to_read;
1365 }
1366 else if (st->table->type == SMP_T_SINT) {
1367 unsigned int netinteger;
1368
Willy Tarreau1e82a142019-01-29 11:08:06 +01001369 if (*msg_cur + sizeof(netinteger) > msg_end)
1370 goto malformed_free_newts;
1371
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001372 memcpy(&netinteger, *msg_cur, sizeof(netinteger));
1373 netinteger = ntohl(netinteger);
1374 memcpy(newts->key.key, &netinteger, sizeof(netinteger));
1375 *msg_cur += sizeof(netinteger);
1376 }
1377 else {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001378 if (*msg_cur + st->table->key_size > msg_end)
1379 goto malformed_free_newts;
1380
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001381 memcpy(newts->key.key, *msg_cur, st->table->key_size);
1382 *msg_cur += st->table->key_size;
1383 }
1384
1385 /* lookup for existing entry */
1386 ts = stktable_set_entry(st->table, newts);
1387 if (ts != newts) {
1388 stksess_free(st->table, newts);
1389 newts = NULL;
1390 }
1391
1392 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
1393
1394 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
Willy Tarreau1e82a142019-01-29 11:08:06 +01001395 uint64_t decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001396
1397 if (!((1 << data_type) & st->remote_data))
1398 continue;
1399
Willy Tarreau1e82a142019-01-29 11:08:06 +01001400 decoded_int = intdecode(msg_cur, msg_end);
1401 if (!*msg_cur)
1402 goto malformed_unlock;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001403
Willy Tarreau1e82a142019-01-29 11:08:06 +01001404 switch (stktable_data_types[data_type].std_type) {
1405 case STD_T_SINT:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001406 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1407 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001408 stktable_data_cast(data_ptr, std_t_sint) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001409 break;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001410
Willy Tarreau1e82a142019-01-29 11:08:06 +01001411 case STD_T_UINT:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001412 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1413 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001414 stktable_data_cast(data_ptr, std_t_uint) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001415 break;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001416
Willy Tarreau1e82a142019-01-29 11:08:06 +01001417 case STD_T_ULL:
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001418 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1419 if (data_ptr)
Willy Tarreau1e82a142019-01-29 11:08:06 +01001420 stktable_data_cast(data_ptr, std_t_ull) = decoded_int;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001421 break;
Willy Tarreau1e82a142019-01-29 11:08:06 +01001422
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001423 case STD_T_FRQP: {
1424 struct freq_ctr_period data;
1425
1426 /* First bit is reserved for the freq_ctr_period lock
1427 Note: here we're still protected by the stksess lock
1428 so we don't need to update the update the freq_ctr_period
1429 using its internal lock */
1430
Willy Tarreau1e82a142019-01-29 11:08:06 +01001431 data.curr_tick = tick_add(now_ms, -decoded_int) & ~0x1;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001432 data.curr_ctr = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001433 if (!*msg_cur)
1434 goto malformed_unlock;
1435
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001436 data.prev_ctr = intdecode(msg_cur, msg_end);
Willy Tarreau1e82a142019-01-29 11:08:06 +01001437 if (!*msg_cur)
1438 goto malformed_unlock;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001439
1440 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1441 if (data_ptr)
1442 stktable_data_cast(data_ptr, std_t_frqp) = data;
1443 break;
1444 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001445 case STD_T_DICT: {
1446 struct buffer *chunk;
1447 size_t data_len, value_len;
1448 unsigned int id;
1449 struct dict_entry *de;
1450 struct dcache *dc;
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001451 char *end;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001452
Frédéric Lécailled9203ca2019-11-13 17:50:34 +01001453 if (!decoded_int) {
1454 /* No entry. */
1455 break;
1456 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001457 data_len = decoded_int;
1458 if (*msg_cur + data_len > msg_end)
1459 goto malformed_unlock;
1460
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001461 /* Compute the end of the current data, <msg_end> being at the end of
1462 * the entire message.
1463 */
1464 end = *msg_cur + data_len;
1465 id = intdecode(msg_cur, end);
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001466 if (!*msg_cur || !id)
1467 goto malformed_unlock;
1468
1469 dc = p->dcache;
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001470 if (*msg_cur == end) {
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001471 /* Dictionary entry key without value. */
1472 if (id > dc->max_entries)
1473 break;
1474 /* IDs sent over the network are numbered from 1. */
1475 de = dc->rx[id - 1].de;
1476 }
1477 else {
1478 chunk = get_trash_chunk();
Frédéric Lécaille344e9482019-06-05 10:20:09 +02001479 value_len = intdecode(msg_cur, end);
1480 if (!*msg_cur || *msg_cur + value_len > end ||
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001481 unlikely(value_len + 1 >= chunk->size))
1482 goto malformed_unlock;
1483
1484 chunk_memcpy(chunk, *msg_cur, value_len);
1485 chunk->area[chunk->data] = '\0';
Frédéric Lécaille56aec0d2019-06-06 14:14:15 +02001486 *msg_cur += value_len;
1487
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02001488 de = dict_insert(&server_name_dict, chunk->area);
1489 dc->rx[id - 1].de = de;
1490 }
1491 if (de) {
1492 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1493 if (data_ptr)
1494 stktable_data_cast(data_ptr, std_t_dict) = de;
1495 }
1496 break;
1497 }
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001498 }
1499 }
1500 /* Force new expiration */
1501 ts->expire = tick_add(now_ms, expire);
1502
1503 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1504 stktable_touch_remote(st->table, ts, 1);
1505 return 1;
1506
1507 ignore_msg:
1508 /* skip consumed message */
1509 co_skip(si_oc(si), totl);
1510 return 0;
Willy Tarreau1e82a142019-01-29 11:08:06 +01001511
1512 malformed_unlock:
1513 /* malformed message */
1514 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
1515 stktable_touch_remote(st->table, ts, 1);
1516 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1517 return 0;
1518
1519 malformed_free_newts:
1520 /* malformed message */
1521 stksess_free(st->table, newts);
1522 malformed_exit:
1523 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1524 return 0;
Frédéric Lécaille168a34b2019-01-23 11:16:57 +01001525}
1526
Frédéric Lécaille87f554c2019-01-22 17:26:50 +01001527/*
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001528 * Function used to parse a stick-table update acknowledgement message after it
1529 * has been received by <p> peer with <msg_cur> as address of the pointer to the position in the
1530 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1531 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1532 * was encountered.
1533 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1534 */
1535static inline int peer_treat_ackmsg(struct appctx *appctx, struct peer *p,
1536 char **msg_cur, char *msg_end)
1537{
1538 /* ack message */
1539 uint32_t table_id ;
1540 uint32_t update;
1541 struct shared_table *st;
1542
1543 table_id = intdecode(msg_cur, msg_end);
1544 if (!*msg_cur || (*msg_cur + sizeof(update) > msg_end)) {
1545 /* malformed message */
1546 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1547 return 0;
1548 }
1549
1550 memcpy(&update, *msg_cur, sizeof(update));
1551 update = ntohl(update);
1552
1553 for (st = p->tables; st; st = st->next) {
1554 if (st->local_id == table_id) {
1555 st->update = update;
1556 break;
1557 }
1558 }
1559
1560 return 1;
1561}
1562
1563/*
1564 * Function used to parse a stick-table switch message after it has been received
1565 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1566 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1567 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1568 * was encountered.
1569 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1570 */
1571static inline int peer_treat_switchmsg(struct appctx *appctx, struct peer *p,
1572 char **msg_cur, char *msg_end)
1573{
1574 struct shared_table *st;
1575 int table_id;
1576
1577 table_id = intdecode(msg_cur, msg_end);
1578 if (!*msg_cur) {
1579 /* malformed message */
1580 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1581 return 0;
1582 }
1583
1584 p->remote_table = NULL;
1585 for (st = p->tables; st; st = st->next) {
1586 if (st->remote_id == table_id) {
1587 p->remote_table = st;
1588 break;
1589 }
1590 }
1591
1592 return 1;
1593}
1594
1595/*
1596 * Function used to parse a stick-table definition message after it has been received
1597 * by <p> peer with <msg_cur> as address of the pointer to the position in the
1598 * receipt buffer with <msg_end> being the position of the end of the stick-table message.
1599 * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error
1600 * was encountered.
1601 * <totl> is the length of the stick-table update message computed upon receipt.
1602 * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO.
1603 */
1604static inline int peer_treat_definemsg(struct appctx *appctx, struct peer *p,
1605 char **msg_cur, char *msg_end, int totl)
1606{
1607 struct stream_interface *si = appctx->owner;
1608 int table_id_len;
1609 struct shared_table *st;
1610 int table_type;
1611 int table_keylen;
1612 int table_id;
1613 uint64_t table_data;
1614
1615 table_id = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001616 if (!*msg_cur)
1617 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001618
1619 table_id_len = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001620 if (!*msg_cur)
1621 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001622
1623 p->remote_table = NULL;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001624 if (!table_id_len || (*msg_cur + table_id_len) >= msg_end)
1625 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001626
1627 for (st = p->tables; st; st = st->next) {
1628 /* Reset IDs */
1629 if (st->remote_id == table_id)
1630 st->remote_id = 0;
1631
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001632 if (!p->remote_table && (table_id_len == strlen(st->table->nid)) &&
1633 (memcmp(st->table->nid, *msg_cur, table_id_len) == 0))
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001634 p->remote_table = st;
1635 }
1636
1637 if (!p->remote_table)
1638 goto ignore_msg;
1639
1640 *msg_cur += table_id_len;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001641 if (*msg_cur >= msg_end)
1642 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001643
1644 table_type = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001645 if (!*msg_cur)
1646 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001647
1648 table_keylen = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001649 if (!*msg_cur)
1650 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001651
1652 table_data = intdecode(msg_cur, msg_end);
Willy Tarreau6f731f32019-01-29 11:11:23 +01001653 if (!*msg_cur)
1654 goto malformed_exit;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001655
1656 if (p->remote_table->table->type != table_type
1657 || p->remote_table->table->key_size != table_keylen) {
1658 p->remote_table = NULL;
1659 goto ignore_msg;
1660 }
1661
1662 p->remote_table->remote_data = table_data;
1663 p->remote_table->remote_id = table_id;
1664 return 1;
1665
1666 ignore_msg:
1667 co_skip(si_oc(si), totl);
1668 return 0;
Willy Tarreau6f731f32019-01-29 11:11:23 +01001669
1670 malformed_exit:
1671 /* malformed message */
1672 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1673 return 0;
Frédéric Lécailled27b0942019-01-23 17:31:37 +01001674}
1675
1676/*
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001677 * Receive a stick-table message.
1678 * Returns 1 if there was no error, if not, returns 0 if not enough data were available,
1679 * -1 if there was an error updating the appctx state st0 accordingly.
1680 */
1681static inline int peer_recv_msg(struct appctx *appctx, char *msg_head, size_t msg_head_sz,
1682 uint32_t *msg_len, int *totl)
1683{
1684 int reql;
1685 struct stream_interface *si = appctx->owner;
1686
1687 reql = co_getblk(si_oc(si), msg_head, 2 * sizeof(char), *totl);
1688 if (reql <= 0) /* closed or EOL not found */
1689 goto incomplete;
1690
1691 *totl += reql;
1692
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +02001693 if (!(msg_head[1] & PEER_MSG_STKT_BIT_MASK))
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001694 return 1;
1695
1696 /* Read and Decode message length */
1697 reql = co_getblk(si_oc(si), &msg_head[2], sizeof(char), *totl);
1698 if (reql <= 0) /* closed */
1699 goto incomplete;
1700
1701 *totl += reql;
1702
Frédéric Lécaille32b55732019-06-03 18:29:51 +02001703 if ((unsigned int)msg_head[2] < PEER_ENC_2BYTES_MIN) {
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001704 *msg_len = msg_head[2];
1705 }
1706 else {
1707 int i;
1708 char *cur;
1709 char *end;
1710
1711 for (i = 3 ; i < msg_head_sz ; i++) {
1712 reql = co_getblk(si_oc(si), &msg_head[i], sizeof(char), *totl);
1713 if (reql <= 0) /* closed */
1714 goto incomplete;
1715
1716 *totl += reql;
1717
Frédéric Lécaille36fb77e2019-06-04 08:28:19 +02001718 if (!(msg_head[i] & PEER_MSG_STKT_BIT_MASK))
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001719 break;
1720 }
1721
1722 if (i == msg_head_sz) {
1723 /* malformed message */
1724 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1725 return -1;
1726 }
1727 end = msg_head + msg_head_sz;
1728 cur = &msg_head[2];
1729 *msg_len = intdecode(&cur, end);
1730 if (!cur) {
1731 /* malformed message */
1732 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1733 return -1;
1734 }
1735 }
1736
1737 /* Read message content */
1738 if (*msg_len) {
1739 if (*msg_len > trash.size) {
1740 /* Status code is not success, abort */
1741 appctx->st0 = PEER_SESS_ST_ERRSIZE;
1742 return -1;
1743 }
1744
1745 reql = co_getblk(si_oc(si), trash.area, *msg_len, *totl);
1746 if (reql <= 0) /* closed */
1747 goto incomplete;
1748 *totl += reql;
1749 }
1750
1751 return 1;
1752
1753 incomplete:
1754 if (reql < 0) {
1755 /* there was an error */
1756 appctx->st0 = PEER_SESS_ST_END;
1757 return -1;
1758 }
1759
1760 return 0;
1761}
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001762
1763/*
1764 * Treat the awaited message with <msg_head> as header.*
1765 * Return 1 if succeeded, 0 if not.
1766 */
1767static inline int peer_treat_awaited_msg(struct appctx *appctx, struct peer *peer, unsigned char *msg_head,
1768 char **msg_cur, char *msg_end, int msg_len, int totl)
1769{
1770 struct stream_interface *si = appctx->owner;
1771 struct stream *s = si_strm(si);
1772 struct peers *peers = strm_fe(s)->parent;
1773
1774 if (msg_head[0] == PEER_MSG_CLASS_CONTROL) {
1775 if (msg_head[1] == PEER_MSG_CTRL_RESYNCREQ) {
1776 struct shared_table *st;
1777 /* Reset message: remote need resync */
1778
1779 /* prepare tables fot a global push */
1780 for (st = peer->tables; st; st = st->next) {
1781 st->teaching_origin = st->last_pushed = st->table->update;
1782 st->flags = 0;
1783 }
1784
1785 /* reset teaching flags to 0 */
1786 peer->flags &= PEER_TEACH_RESET;
1787
1788 /* flag to start to teach lesson */
1789 peer->flags |= PEER_F_TEACH_PROCESS;
1790 }
1791 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCFINISHED) {
1792 if (peer->flags & PEER_F_LEARN_ASSIGN) {
1793 peer->flags &= ~PEER_F_LEARN_ASSIGN;
1794 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
1795 peers->flags |= (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE);
1796 }
1797 peer->confirm++;
1798 }
1799 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCPARTIAL) {
1800 if (peer->flags & PEER_F_LEARN_ASSIGN) {
1801 peer->flags &= ~PEER_F_LEARN_ASSIGN;
1802 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
1803
1804 peer->flags |= PEER_F_LEARN_NOTUP2DATE;
Frédéric Lécaille54bff832019-03-26 10:25:20 +01001805 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT));
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001806 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
1807 }
1808 peer->confirm++;
1809 }
1810 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCCONFIRM) {
1811 struct shared_table *st;
1812
1813 /* If stopping state */
1814 if (stopping) {
1815 /* Close session, push resync no more needed */
1816 peer->flags |= PEER_F_TEACH_COMPLETE;
1817 appctx->st0 = PEER_SESS_ST_END;
1818 return 0;
1819 }
1820 for (st = peer->tables; st; st = st->next) {
1821 st->update = st->last_pushed = st->teaching_origin;
1822 st->flags = 0;
1823 }
1824
1825 /* reset teaching flags to 0 */
1826 peer->flags &= PEER_TEACH_RESET;
1827 }
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001828 else if (msg_head[1] == PEER_MSG_CTRL_HEARTBEAT) {
Frédéric Lécaille54bff832019-03-26 10:25:20 +01001829 peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille5d072702019-11-06 11:51:26 +01001830 peer->rx_hbt++;
Frédéric Lécaille645635d2019-02-11 17:49:39 +01001831 }
Frédéric Lécaille444243c2019-01-24 15:40:11 +01001832 }
1833 else if (msg_head[0] == PEER_MSG_CLASS_STICKTABLE) {
1834 if (msg_head[1] == PEER_MSG_STKT_DEFINE) {
1835 if (!peer_treat_definemsg(appctx, peer, msg_cur, msg_end, totl))
1836 return 0;
1837 }
1838 else if (msg_head[1] == PEER_MSG_STKT_SWITCH) {
1839 if (!peer_treat_switchmsg(appctx, peer, msg_cur, msg_end))
1840 return 0;
1841 }
1842 else if (msg_head[1] == PEER_MSG_STKT_UPDATE ||
1843 msg_head[1] == PEER_MSG_STKT_INCUPDATE ||
1844 msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED ||
1845 msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED) {
1846 int update, expire;
1847
1848 update = msg_head[1] == PEER_MSG_STKT_UPDATE || msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED;
1849 expire = msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED || msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED;
1850 if (!peer_treat_updatemsg(appctx, peer, update, expire,
1851 msg_cur, msg_end, msg_len, totl))
1852 return 0;
1853
1854 }
1855 else if (msg_head[1] == PEER_MSG_STKT_ACK) {
1856 if (!peer_treat_ackmsg(appctx, peer, msg_cur, msg_end))
1857 return 0;
1858 }
1859 }
1860 else if (msg_head[0] == PEER_MSG_CLASS_RESERVED) {
1861 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1862 return 0;
1863 }
1864
1865 return 1;
1866}
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01001867
1868
1869/*
1870 * Send any message to <peer> peer.
1871 * Returns 1 if succeeded, or -1 or 0 if failed.
1872 * -1 means an internal error occured, 0 is for a peer protocol error leading
1873 * to a peer state change (from the peer I/O handler point of view).
1874 */
1875static inline int peer_send_msgs(struct appctx *appctx, struct peer *peer)
1876{
1877 int repl;
1878 struct stream_interface *si = appctx->owner;
1879 struct stream *s = si_strm(si);
1880 struct peers *peers = strm_fe(s)->parent;
1881
1882 /* Need to request a resync */
1883 if ((peer->flags & PEER_F_LEARN_ASSIGN) &&
1884 (peers->flags & PEERS_F_RESYNC_ASSIGN) &&
1885 !(peers->flags & PEERS_F_RESYNC_PROCESS)) {
1886
1887 repl = peer_send_resync_reqmsg(appctx);
1888 if (repl <= 0)
1889 return repl;
1890
1891 peers->flags |= PEERS_F_RESYNC_PROCESS;
1892 }
1893
1894 /* Nothing to read, now we start to write */
1895 if (peer->tables) {
1896 struct shared_table *st;
1897 struct shared_table *last_local_table;
1898
1899 last_local_table = peer->last_local_table;
1900 if (!last_local_table)
1901 last_local_table = peer->tables;
1902 st = last_local_table->next;
1903
1904 while (1) {
1905 if (!st)
1906 st = peer->tables;
1907
1908 /* It remains some updates to ack */
1909 if (st->last_get != st->last_acked) {
1910 repl = peer_send_ackmsg(st, appctx);
1911 if (repl <= 0)
1912 return repl;
1913
1914 st->last_acked = st->last_get;
1915 }
1916
1917 if (!(peer->flags & PEER_F_TEACH_PROCESS)) {
1918 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
1919 if (!(peer->flags & PEER_F_LEARN_ASSIGN) &&
1920 ((int)(st->last_pushed - st->table->localupdate) < 0)) {
1921
1922 repl = peer_send_teach_process_msgs(appctx, peer, st);
1923 if (repl <= 0) {
1924 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1925 return repl;
1926 }
1927 }
1928 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
1929 }
1930 else {
1931 if (!(st->flags & SHTABLE_F_TEACH_STAGE1)) {
1932 repl = peer_send_teach_stage1_msgs(appctx, peer, st);
1933 if (repl <= 0)
1934 return repl;
1935 }
1936
1937 if (!(st->flags & SHTABLE_F_TEACH_STAGE2)) {
1938 repl = peer_send_teach_stage2_msgs(appctx, peer, st);
1939 if (repl <= 0)
1940 return repl;
1941 }
1942 }
1943
1944 if (st == last_local_table)
1945 break;
1946 st = st->next;
1947 }
1948 }
1949
1950 if ((peer->flags & PEER_F_TEACH_PROCESS) && !(peer->flags & PEER_F_TEACH_FINISHED)) {
1951 repl = peer_send_resync_finishedmsg(appctx, peer);
1952 if (repl <= 0)
1953 return repl;
1954
1955 /* flag finished message sent */
1956 peer->flags |= PEER_F_TEACH_FINISHED;
1957 }
1958
1959 /* Confirm finished or partial messages */
1960 while (peer->confirm) {
1961 repl = peer_send_resync_confirmsg(appctx);
1962 if (repl <= 0)
1963 return repl;
1964
1965 peer->confirm--;
1966 }
1967
1968 return 1;
1969}
1970
Frédéric Lécaille95203f22019-01-23 19:38:11 +01001971/*
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01001972 * Read and parse a first line of a "hello" peer protocol message.
1973 * Returns 0 if could not read a line, -1 if there was a read error or
1974 * the line is malformed, 1 if succeeded.
1975 */
1976static inline int peer_getline_version(struct appctx *appctx,
1977 unsigned int *maj_ver, unsigned int *min_ver)
1978{
1979 int reql;
1980
1981 reql = peer_getline(appctx);
1982 if (!reql)
1983 return 0;
1984
1985 if (reql < 0)
1986 return -1;
1987
1988 /* test protocol */
1989 if (strncmp(PEER_SESSION_PROTO_NAME " ", trash.area, proto_len + 1) != 0) {
1990 appctx->st0 = PEER_SESS_ST_EXIT;
1991 appctx->st1 = PEER_SESS_SC_ERRPROTO;
1992 return -1;
1993 }
1994 if (peer_get_version(trash.area + proto_len + 1, maj_ver, min_ver) == -1 ||
1995 *maj_ver != PEER_MAJOR_VER || *min_ver > PEER_MINOR_VER) {
1996 appctx->st0 = PEER_SESS_ST_EXIT;
1997 appctx->st1 = PEER_SESS_SC_ERRVERSION;
1998 return -1;
1999 }
2000
2001 return 1;
2002}
2003
2004/*
2005 * Read and parse a second line of a "hello" peer protocol message.
2006 * Returns 0 if could not read a line, -1 if there was a read error or
2007 * the line is malformed, 1 if succeeded.
2008 */
2009static inline int peer_getline_host(struct appctx *appctx)
2010{
2011 int reql;
2012
2013 reql = peer_getline(appctx);
2014 if (!reql)
2015 return 0;
2016
2017 if (reql < 0)
2018 return -1;
2019
2020 /* test hostname match */
2021 if (strcmp(localpeer, trash.area) != 0) {
2022 appctx->st0 = PEER_SESS_ST_EXIT;
2023 appctx->st1 = PEER_SESS_SC_ERRHOST;
2024 return -1;
2025 }
2026
2027 return 1;
2028}
2029
2030/*
2031 * Read and parse a last line of a "hello" peer protocol message.
2032 * Returns 0 if could not read a character, -1 if there was a read error or
2033 * the line is malformed, 1 if succeeded.
2034 * Set <curpeer> accordingly (the remote peer sending the "hello" message).
2035 */
2036static inline int peer_getline_last(struct appctx *appctx, struct peer **curpeer)
2037{
2038 char *p;
2039 int reql;
2040 struct peer *peer;
2041 struct stream_interface *si = appctx->owner;
2042 struct stream *s = si_strm(si);
2043 struct peers *peers = strm_fe(s)->parent;
2044
2045 reql = peer_getline(appctx);
2046 if (!reql)
2047 return 0;
2048
2049 if (reql < 0)
2050 return -1;
2051
2052 /* parse line "<peer name> <pid> <relative_pid>" */
2053 p = strchr(trash.area, ' ');
2054 if (!p) {
2055 appctx->st0 = PEER_SESS_ST_EXIT;
2056 appctx->st1 = PEER_SESS_SC_ERRPROTO;
2057 return -1;
2058 }
2059 *p = 0;
2060
2061 /* lookup known peer */
2062 for (peer = peers->remote; peer; peer = peer->next) {
2063 if (strcmp(peer->id, trash.area) == 0)
2064 break;
2065 }
2066
2067 /* if unknown peer */
2068 if (!peer) {
2069 appctx->st0 = PEER_SESS_ST_EXIT;
2070 appctx->st1 = PEER_SESS_SC_ERRPEER;
2071 return -1;
2072 }
2073 *curpeer = peer;
2074
2075 return 1;
2076}
2077
2078/*
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002079 * Init <peer> peer after having accepted it at peer protocol level.
2080 */
2081static inline void init_accepted_peer(struct peer *peer, struct peers *peers)
2082{
2083 struct shared_table *st;
2084
2085 /* Register status code */
2086 peer->statuscode = PEER_SESS_SC_SUCCESSCODE;
2087
2088 /* Awake main task */
2089 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
2090
2091 /* Init confirm counter */
2092 peer->confirm = 0;
2093
2094 /* Init cursors */
2095 for (st = peer->tables; st ; st = st->next) {
2096 st->last_get = st->last_acked = 0;
2097 st->teaching_origin = st->last_pushed = st->update;
2098 }
2099
2100 /* reset teaching and learning flags to 0 */
2101 peer->flags &= PEER_TEACH_RESET;
2102 peer->flags &= PEER_LEARN_RESET;
2103
2104 /* if current peer is local */
2105 if (peer->local) {
2106 /* if current host need resyncfrom local and no process assined */
2107 if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL &&
2108 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2109 /* assign local peer for a lesson, consider lesson already requested */
2110 peer->flags |= PEER_F_LEARN_ASSIGN;
2111 peers->flags |= (PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
2112 }
2113
2114 }
2115 else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
2116 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2117 /* assign peer for a lesson */
2118 peer->flags |= PEER_F_LEARN_ASSIGN;
2119 peers->flags |= PEERS_F_RESYNC_ASSIGN;
2120 }
2121}
2122
2123/*
2124 * Init <peer> peer after having connected it at peer protocol level.
2125 */
2126static inline void init_connected_peer(struct peer *peer, struct peers *peers)
2127{
2128 struct shared_table *st;
2129
2130 /* Init cursors */
2131 for (st = peer->tables; st ; st = st->next) {
2132 st->last_get = st->last_acked = 0;
2133 st->teaching_origin = st->last_pushed = st->update;
2134 }
2135
2136 /* Init confirm counter */
2137 peer->confirm = 0;
2138
2139 /* reset teaching and learning flags to 0 */
2140 peer->flags &= PEER_TEACH_RESET;
2141 peer->flags &= PEER_LEARN_RESET;
2142
2143 /* If current peer is local */
2144 if (peer->local) {
2145 /* flag to start to teach lesson */
2146 peer->flags |= PEER_F_TEACH_PROCESS;
2147 }
2148 else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
2149 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
2150 /* If peer is remote and resync from remote is needed,
2151 and no peer currently assigned */
2152
2153 /* assign peer for a lesson */
2154 peer->flags |= PEER_F_LEARN_ASSIGN;
2155 peers->flags |= PEERS_F_RESYNC_ASSIGN;
2156 }
2157}
2158
2159/*
Emeric Brun2b920a12010-09-23 18:30:22 +02002160 * IO Handler to handle message exchance with a peer
2161 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02002162static void peer_io_handler(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +02002163{
Willy Tarreau00a37f02015-04-13 12:05:19 +02002164 struct stream_interface *si = appctx->owner;
Willy Tarreau87b09662015-04-03 00:22:06 +02002165 struct stream *s = si_strm(si);
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002166 struct peers *curpeers = strm_fe(s)->parent;
Emeric Brun80527f52017-06-19 17:46:37 +02002167 struct peer *curpeer = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002168 int reql = 0;
2169 int repl = 0;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002170 unsigned int maj_ver, min_ver;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002171 int prev_state;
Emeric Brun2b920a12010-09-23 18:30:22 +02002172
Joseph Herlant82b2f542018-11-15 12:19:14 -08002173 /* Check if the input buffer is available. */
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002174 if (si_ic(si)->buf.size == 0) {
2175 si_rx_room_blk(si);
2176 goto out;
2177 }
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002178
Emeric Brun2b920a12010-09-23 18:30:22 +02002179 while (1) {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002180 prev_state = appctx->st0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002181switchstate:
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002182 maj_ver = min_ver = (unsigned int)-1;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002183 switch(appctx->st0) {
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002184 case PEER_SESS_ST_ACCEPT:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002185 prev_state = appctx->st0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002186 appctx->ctx.peers.ptr = NULL;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002187 appctx->st0 = PEER_SESS_ST_GETVERSION;
Emeric Brun2b920a12010-09-23 18:30:22 +02002188 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002189 case PEER_SESS_ST_GETVERSION:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002190 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002191 reql = peer_getline_version(appctx, &maj_ver, &min_ver);
2192 if (reql <= 0) {
2193 if (!reql)
2194 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002195 goto switchstate;
2196 }
2197
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002198 appctx->st0 = PEER_SESS_ST_GETHOST;
Emeric Brun2b920a12010-09-23 18:30:22 +02002199 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002200 case PEER_SESS_ST_GETHOST:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002201 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002202 reql = peer_getline_host(appctx);
2203 if (reql <= 0) {
2204 if (!reql)
2205 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002206 goto switchstate;
2207 }
2208
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002209 appctx->st0 = PEER_SESS_ST_GETPEER;
Emeric Brun2b920a12010-09-23 18:30:22 +02002210 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002211 case PEER_SESS_ST_GETPEER: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002212 prev_state = appctx->st0;
Frédéric Lécaille3f0fb9d2019-01-25 08:30:29 +01002213 reql = peer_getline_last(appctx, &curpeer);
2214 if (reql <= 0) {
2215 if (!reql)
2216 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002217 goto switchstate;
2218 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002219
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002220 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Willy Tarreau9df94c22016-10-31 18:42:52 +01002221 if (curpeer->appctx && curpeer->appctx != appctx) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002222 if (curpeer->local) {
2223 /* Local connection, reply a retry */
2224 appctx->st0 = PEER_SESS_ST_EXIT;
2225 appctx->st1 = PEER_SESS_SC_TRYAGAIN;
2226 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02002227 }
Emeric Brun80527f52017-06-19 17:46:37 +02002228
2229 /* we're killing a connection, we must apply a random delay before
2230 * retrying otherwise the other end will do the same and we can loop
2231 * for a while.
2232 */
2233 curpeer->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + random() % 2000));
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002234 peer_session_forceshutdown(curpeer);
Emeric Brun2b920a12010-09-23 18:30:22 +02002235 }
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002236 if (maj_ver != (unsigned int)-1 && min_ver != (unsigned int)-1) {
2237 if (min_ver == PEER_DWNGRD_MINOR_VER) {
2238 curpeer->flags |= PEER_F_DWNGRD;
2239 }
2240 else {
2241 curpeer->flags &= ~PEER_F_DWNGRD;
2242 }
2243 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002244 curpeer->appctx = appctx;
2245 appctx->ctx.peers.ptr = curpeer;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002246 appctx->st0 = PEER_SESS_ST_SENDSUCCESS;
Olivier Houcharded879892019-03-08 18:53:43 +01002247 _HA_ATOMIC_ADD(&active_peers, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02002248 /* fall through */
2249 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002250 case PEER_SESS_ST_SENDSUCCESS: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002251 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002252 if (!curpeer) {
2253 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002254 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002255 if (curpeer->appctx != appctx) {
2256 appctx->st0 = PEER_SESS_ST_END;
2257 goto switchstate;
2258 }
2259 }
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002260
2261 repl = peer_send_status_successmsg(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002262 if (repl <= 0) {
2263 if (repl == -1)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002264 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002265 goto switchstate;
2266 }
2267
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002268 init_accepted_peer(curpeer, curpeers);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002269
Emeric Brun2b920a12010-09-23 18:30:22 +02002270 /* switch to waiting message state */
Olivier Houcharded879892019-03-08 18:53:43 +01002271 _HA_ATOMIC_ADD(&connected_peers, 1);
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002272 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +02002273 goto switchstate;
2274 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002275 case PEER_SESS_ST_CONNECT: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002276 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002277 if (!curpeer) {
2278 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002279 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002280 if (curpeer->appctx != appctx) {
2281 appctx->st0 = PEER_SESS_ST_END;
2282 goto switchstate;
2283 }
2284 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002285
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002286 repl = peer_send_hellomsg(appctx, curpeer);
Emeric Brun2b920a12010-09-23 18:30:22 +02002287 if (repl <= 0) {
2288 if (repl == -1)
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002289 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002290 goto switchstate;
2291 }
2292
2293 /* switch to the waiting statuscode state */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002294 appctx->st0 = PEER_SESS_ST_GETSTATUS;
Emeric Brun2b920a12010-09-23 18:30:22 +02002295 /* fall through */
2296 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002297 case PEER_SESS_ST_GETSTATUS: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002298 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002299 if (!curpeer) {
2300 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002301 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002302 if (curpeer->appctx != appctx) {
2303 appctx->st0 = PEER_SESS_ST_END;
2304 goto switchstate;
2305 }
2306 }
2307
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002308 if (si_ic(si)->flags & CF_WRITE_PARTIAL)
Emeric Brunb3971ab2015-05-12 18:49:09 +02002309 curpeer->statuscode = PEER_SESS_SC_CONNECTEDCODE;
Emeric Brun2b920a12010-09-23 18:30:22 +02002310
Frédéric Lécaillece025572019-01-21 13:38:06 +01002311 reql = peer_getline(appctx);
2312 if (!reql)
2313 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002314
Frédéric Lécaillece025572019-01-21 13:38:06 +01002315 if (reql < 0)
2316 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02002317
2318 /* Register status code */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002319 curpeer->statuscode = atoi(trash.area);
Emeric Brun2b920a12010-09-23 18:30:22 +02002320
2321 /* Awake main task */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002322 task_wakeup(curpeers->sync_task, TASK_WOKEN_MSG);
Emeric Brun2b920a12010-09-23 18:30:22 +02002323
2324 /* If status code is success */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002325 if (curpeer->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Frédéric Lécaille4b2fd9b2019-01-25 08:58:41 +01002326 init_connected_peer(curpeer, curpeers);
Emeric Brun2b920a12010-09-23 18:30:22 +02002327 }
2328 else {
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02002329 if (curpeer->statuscode == PEER_SESS_SC_ERRVERSION)
2330 curpeer->flags |= PEER_F_DWNGRD;
Emeric Brun2b920a12010-09-23 18:30:22 +02002331 /* Status code is not success, abort */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002332 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +02002333 goto switchstate;
2334 }
Olivier Houcharded879892019-03-08 18:53:43 +01002335 _HA_ATOMIC_ADD(&connected_peers, 1);
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002336 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +02002337 /* fall through */
2338 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002339 case PEER_SESS_ST_WAITMSG: {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002340 uint32_t msg_len = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002341 char *msg_cur = trash.area;
2342 char *msg_end = trash.area;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002343 unsigned char msg_head[7];
Emeric Brun2b920a12010-09-23 18:30:22 +02002344 int totl = 0;
2345
Willy Tarreau2d372c22018-11-05 17:12:27 +01002346 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002347 if (!curpeer) {
2348 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002349 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002350 if (curpeer->appctx != appctx) {
2351 appctx->st0 = PEER_SESS_ST_END;
2352 goto switchstate;
2353 }
2354 }
2355
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002356 reql = peer_recv_msg(appctx, (char *)msg_head, sizeof msg_head, &msg_len, &totl);
2357 if (reql <= 0) {
2358 if (reql == -1)
2359 goto switchstate;
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002360 goto send_msgs;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002361 }
Willy Tarreau86a446e2013-11-25 23:02:37 +01002362
Frédéric Lécaille95203f22019-01-23 19:38:11 +01002363 msg_end += msg_len;
Frédéric Lécaille444243c2019-01-24 15:40:11 +01002364 if (!peer_treat_awaited_msg(appctx, curpeer, msg_head, &msg_cur, msg_end, msg_len, totl))
Emeric Brun2b920a12010-09-23 18:30:22 +02002365 goto switchstate;
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002366
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002367 curpeer->flags |= PEER_F_ALIVE;
2368
Emeric Brun2b920a12010-09-23 18:30:22 +02002369 /* skip consumed message */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002370 co_skip(si_oc(si), totl);
Emeric Brun2b920a12010-09-23 18:30:22 +02002371 /* loop on that state to peek next message */
Willy Tarreau72d6c162013-04-11 16:14:13 +02002372 goto switchstate;
2373
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002374send_msgs:
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002375 if (curpeer->flags & PEER_F_HEARTBEAT) {
2376 curpeer->flags &= ~PEER_F_HEARTBEAT;
2377 repl = peer_send_heartbeatmsg(appctx);
2378 if (repl <= 0) {
2379 if (repl == -1)
2380 goto out;
2381 goto switchstate;
2382 }
Frédéric Lécaille5d072702019-11-06 11:51:26 +01002383 curpeer->tx_hbt++;
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002384 }
Frédéric Lécaillebe825e52019-01-24 18:28:44 +01002385 /* we get here when a peer_recv_msg() returns 0 in reql */
Frédéric Lécaille25e1d5e2019-01-24 17:33:48 +01002386 repl = peer_send_msgs(appctx, curpeer);
2387 if (repl <= 0) {
2388 if (repl == -1)
2389 goto out;
2390 goto switchstate;
Emeric Brun597b26e2016-08-12 11:23:31 +02002391 }
2392
Emeric Brun2b920a12010-09-23 18:30:22 +02002393 /* noting more to do */
2394 goto out;
2395 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002396 case PEER_SESS_ST_EXIT:
Willy Tarreau2d372c22018-11-05 17:12:27 +01002397 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002398 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002399 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002400 if (peer_send_status_errormsg(appctx) == -1)
2401 goto out;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002402 appctx->st0 = PEER_SESS_ST_END;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002403 goto switchstate;
2404 case PEER_SESS_ST_ERRSIZE: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002405 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002406 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002407 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002408 if (peer_send_error_size_limitmsg(appctx) == -1)
2409 goto out;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002410 appctx->st0 = PEER_SESS_ST_END;
2411 goto switchstate;
2412 }
2413 case PEER_SESS_ST_ERRPROTO: {
Frédéric Lécaille9a88a832019-11-07 15:22:33 +01002414 if (curpeer)
2415 curpeer->proto_err++;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002416 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002417 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002418 prev_state = appctx->st0;
Frédéric Lécaille7d0ceee2019-01-24 14:24:05 +01002419 if (peer_send_error_protomsg(appctx) == -1)
2420 goto out;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002421 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau2d372c22018-11-05 17:12:27 +01002422 prev_state = appctx->st0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002423 /* fall through */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002424 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002425 case PEER_SESS_ST_END: {
Willy Tarreau2d372c22018-11-05 17:12:27 +01002426 if (prev_state == PEER_SESS_ST_WAITMSG)
Olivier Houcharded879892019-03-08 18:53:43 +01002427 _HA_ATOMIC_SUB(&connected_peers, 1);
Willy Tarreau2d372c22018-11-05 17:12:27 +01002428 prev_state = appctx->st0;
Emeric Brun80527f52017-06-19 17:46:37 +02002429 if (curpeer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002430 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002431 curpeer = NULL;
2432 }
Willy Tarreau73b013b2012-05-21 16:31:45 +02002433 si_shutw(si);
2434 si_shutr(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002435 si_ic(si)->flags |= CF_READ_NULL;
Willy Tarreau828824a2015-04-19 17:20:03 +02002436 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02002437 }
2438 }
2439 }
2440out:
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002441 si_oc(si)->flags |= CF_READ_DONTWAIT;
Emeric Brun80527f52017-06-19 17:46:37 +02002442
2443 if (curpeer)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002444 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +02002445 return;
2446}
2447
Willy Tarreau30576452015-04-13 13:50:30 +02002448static struct applet peer_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002449 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01002450 .name = "<PEER>", /* used for logging */
2451 .fct = peer_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07002452 .release = peer_session_release,
Willy Tarreaub24281b2011-02-13 13:16:36 +01002453};
Emeric Brun2b920a12010-09-23 18:30:22 +02002454
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002455
Emeric Brun2b920a12010-09-23 18:30:22 +02002456/*
2457 * Use this function to force a close of a peer session
2458 */
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002459static void peer_session_forceshutdown(struct peer *peer)
Emeric Brun2b920a12010-09-23 18:30:22 +02002460{
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002461 struct appctx *appctx = peer->appctx;
2462
Frédéric Lécaille5df11902017-06-13 16:39:57 +02002463 /* Note that the peer sessions which have just been created
2464 * (->st0 == PEER_SESS_ST_CONNECT) must not
2465 * be shutdown, if not, the TCP session will never be closed
2466 * and stay in CLOSE_WAIT state after having been closed by
2467 * the remote side.
2468 */
2469 if (!appctx || appctx->st0 == PEER_SESS_ST_CONNECT)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002470 return;
2471
Willy Tarreau81bc3b02016-10-31 17:37:39 +01002472 if (appctx->applet != &peer_applet)
2473 return;
2474
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002475 __peer_session_deinit(peer);
2476
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002477 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau78c0c502016-10-31 17:32:20 +01002478 appctx_wakeup(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002479}
2480
Willy Tarreau91d96282015-03-13 15:47:26 +01002481/* Pre-configures a peers frontend to accept incoming connections */
2482void peers_setup_frontend(struct proxy *fe)
2483{
2484 fe->last_change = now.tv_sec;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02002485 fe->cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau91d96282015-03-13 15:47:26 +01002486 fe->maxconn = 0;
2487 fe->conn_retries = CONN_RETRIES;
2488 fe->timeout.client = MS_TO_TICKS(5000);
Willy Tarreaud1d48d42015-03-13 16:15:46 +01002489 fe->accept = frontend_accept;
Willy Tarreauf87ab942015-03-13 15:55:16 +01002490 fe->default_target = &peer_applet.obj_type;
Willy Tarreau91d96282015-03-13 15:47:26 +01002491 fe->options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC;
Willy Tarreau0fca4832015-05-01 19:12:05 +02002492 fe->bind_proc = 0; /* will be filled by users */
Willy Tarreau91d96282015-03-13 15:47:26 +01002493}
2494
Emeric Brun2b920a12010-09-23 18:30:22 +02002495/*
Willy Tarreaubd55e312010-11-11 10:55:09 +01002496 * Create a new peer session in assigned state (connect will start automatically)
Emeric Brun2b920a12010-09-23 18:30:22 +02002497 */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002498static struct appctx *peer_session_create(struct peers *peers, struct peer *peer)
Emeric Brun2b920a12010-09-23 18:30:22 +02002499{
Willy Tarreau04b92862017-09-15 11:01:04 +02002500 struct proxy *p = peers->peers_fe; /* attached frontend */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002501 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02002502 struct session *sess;
Willy Tarreau87b09662015-04-03 00:22:06 +02002503 struct stream *s;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002504 struct connection *conn;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002505 struct conn_stream *cs;
Emeric Brun2b920a12010-09-23 18:30:22 +02002506
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002507 peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002508 peer->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
Emeric Brunb3971ab2015-05-12 18:49:09 +02002509 peer->statuscode = PEER_SESS_SC_CONNECTCODE;
Willy Tarreaud990baf2015-04-05 00:32:03 +02002510 s = NULL;
2511
Emeric Brun1138fd02017-06-19 12:38:55 +02002512 appctx = appctx_new(&peer_applet, tid_bit);
Willy Tarreaud990baf2015-04-05 00:32:03 +02002513 if (!appctx)
2514 goto out_close;
2515
2516 appctx->st0 = PEER_SESS_ST_CONNECT;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002517 appctx->ctx.peers.ptr = (void *)peer;
Willy Tarreaud990baf2015-04-05 00:32:03 +02002518
Willy Tarreau04b92862017-09-15 11:01:04 +02002519 sess = session_new(p, NULL, &appctx->obj_type);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002520 if (!sess) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002521 ha_alert("out of memory in peer_session_create().\n");
Willy Tarreaud990baf2015-04-05 00:32:03 +02002522 goto out_free_appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02002523 }
2524
Willy Tarreau87787ac2017-08-28 16:22:54 +02002525 if ((s = stream_new(sess, &appctx->obj_type)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002526 ha_alert("Failed to initialize stream in peer_session_create().\n");
Willy Tarreau87787ac2017-08-28 16:22:54 +02002527 goto out_free_sess;
Willy Tarreau8baf9062015-04-05 00:46:36 +02002528 }
2529
Willy Tarreau342bfb12015-04-05 01:35:34 +02002530 /* The tasks below are normally what is supposed to be done by
2531 * fe->accept().
2532 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002533 s->flags = SF_ASSIGNED|SF_ADDR_SET;
Emeric Brun2b920a12010-09-23 18:30:22 +02002534
Willy Tarreau6e2979c2015-04-27 13:21:15 +02002535 /* applet is waiting for data */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002536 si_cant_get(&s->si[0]);
Willy Tarreau6e2979c2015-04-27 13:21:15 +02002537 appctx_wakeup(appctx);
2538
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02002539 /* initiate an outgoing connection */
Willy Tarreaudbd02672017-12-06 17:39:53 +01002540 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02002541 si_set_state(&s->si[1], SI_ST_ASS);
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02002542
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002543 /* automatically prepare the stream interface to connect to the
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002544 * pre-initialized connection in si->conn.
2545 */
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002546 if (unlikely((conn = conn_new()) == NULL))
Willy Tarreau8baf9062015-04-05 00:46:36 +02002547 goto out_free_strm;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002548
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002549 if (unlikely((cs = cs_new(conn)) == NULL))
2550 goto out_free_conn;
2551
Frédéric Lécaille1055e682018-04-26 14:35:21 +02002552 conn->target = s->target = peer_session_target(peer, s);
Willy Tarreaube373152018-09-06 11:45:30 +02002553 memcpy(&conn->addr.to, &peer->addr, sizeof(conn->addr.to));
2554
Frédéric Lécaille1055e682018-04-26 14:35:21 +02002555 conn_prepare(conn, peer->proto, peer_xprt(peer));
Olivier Houchardef60ff32019-01-29 19:00:33 +01002556 if (conn_install_mux(conn, &mux_pt_ops, cs, s->be, NULL) < 0)
2557 goto out_free_cs;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002558 si_attach_cs(&s->si[1], cs);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002559
Emeric Brun2b920a12010-09-23 18:30:22 +02002560 s->do_log = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002561 s->uniq_id = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +02002562
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002563 s->res.flags |= CF_READ_DONTWAIT;
Willy Tarreau696a2912014-11-24 11:36:57 +01002564
Emeric Brunb3971ab2015-05-12 18:49:09 +02002565 peer->appctx = appctx;
Willy Tarreau87787ac2017-08-28 16:22:54 +02002566 task_wakeup(s->task, TASK_WOKEN_INIT);
Olivier Houcharded879892019-03-08 18:53:43 +01002567 _HA_ATOMIC_ADD(&active_peers, 1);
Willy Tarreau9df94c22016-10-31 18:42:52 +01002568 return appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02002569
2570 /* Error unrolling */
Olivier Houchardef60ff32019-01-29 19:00:33 +01002571out_free_cs:
2572 cs_free(cs);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002573 out_free_conn:
2574 conn_free(conn);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002575 out_free_strm:
Emeric Brun2b920a12010-09-23 18:30:22 +02002576 LIST_DEL(&s->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002577 pool_free(pool_head_stream, s);
Willy Tarreau15b5e142015-04-04 14:38:25 +02002578 out_free_sess:
Willy Tarreau11c36242015-04-04 15:54:03 +02002579 session_free(sess);
Willy Tarreaud990baf2015-04-05 00:32:03 +02002580 out_free_appctx:
2581 appctx_free(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002582 out_close:
Willy Tarreaub21d08e2016-10-31 17:46:57 +01002583 return NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002584}
2585
2586/*
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002587 * Task processing function to manage re-connect, peer session
2588 * tasks wakeup on local update and heartbeat.
Emeric Brun2b920a12010-09-23 18:30:22 +02002589 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002590static struct task *process_peer_sync(struct task * task, void *context, unsigned short state)
Emeric Brun2b920a12010-09-23 18:30:22 +02002591{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002592 struct peers *peers = context;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002593 struct peer *ps;
2594 struct shared_table *st;
Emeric Brun2b920a12010-09-23 18:30:22 +02002595
2596 task->expire = TICK_ETERNITY;
2597
Emeric Brunb3971ab2015-05-12 18:49:09 +02002598 if (!peers->peers_fe) {
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02002599 /* this one was never started, kill it */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002600 signal_unregister_handler(peers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002601 task_destroy(peers->sync_task);
Willy Tarreau37bb7be2015-09-21 15:24:58 +02002602 peers->sync_task = NULL;
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02002603 return NULL;
2604 }
2605
Emeric Brun80527f52017-06-19 17:46:37 +02002606 /* Acquire lock for all peers of the section */
2607 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002608 HA_SPIN_LOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002609
Emeric Brun2b920a12010-09-23 18:30:22 +02002610 if (!stopping) {
2611 /* Normal case (not soft stop)*/
Emeric Brunb3971ab2015-05-12 18:49:09 +02002612
2613 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL) &&
2614 (!nb_oldpids || tick_is_expired(peers->resync_timeout, now_ms)) &&
2615 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002616 /* Resync from local peer needed
2617 no peer was assigned for the lesson
2618 and no old local peer found
2619 or resync timeout expire */
2620
2621 /* flag no more resync from local, to try resync from remotes */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002622 peers->flags |= PEERS_F_RESYNC_LOCAL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002623
2624 /* reschedule a resync */
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002625 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT));
Emeric Brun2b920a12010-09-23 18:30:22 +02002626 }
2627
2628 /* For each session */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002629 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002630 /* For each remote peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002631 if (!ps->local) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002632 if (!ps->appctx) {
2633 /* no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002634 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002635 ((ps->statuscode == PEER_SESS_SC_CONNECTCODE ||
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002636 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002637 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002638 tick_is_expired(ps->reconnect, now_ms))) {
2639 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002640 * or previous peer connection established with success
2641 * or previous peer connection failed while connecting
Emeric Brun2b920a12010-09-23 18:30:22 +02002642 * and reconnection timer is expired */
2643
2644 /* retry a connect */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002645 ps->appctx = peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002646 }
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002647 else if (!tick_is_expired(ps->reconnect, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002648 /* If previous session failed during connection
2649 * but reconnection timer is not expired */
2650
2651 /* reschedule task for reconnect */
2652 task->expire = tick_first(task->expire, ps->reconnect);
Frédéric Lécaille9a88a832019-11-07 15:22:33 +01002653 ps->new_conn++;
Emeric Brun2b920a12010-09-23 18:30:22 +02002654 }
2655 /* else do nothing */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002656 } /* !ps->appctx */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002657 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002658 /* current peer connection is active and established */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002659 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2660 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002661 !(ps->flags & PEER_F_LEARN_NOTUP2DATE)) {
2662 /* Resync from a remote is needed
2663 * and no peer was assigned for lesson
2664 * and current peer may be up2date */
2665
2666 /* assign peer for the lesson */
2667 ps->flags |= PEER_F_LEARN_ASSIGN;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002668 peers->flags |= PEERS_F_RESYNC_ASSIGN;
Emeric Brun2b920a12010-09-23 18:30:22 +02002669
Willy Tarreau9df94c22016-10-31 18:42:52 +01002670 /* wake up peer handler to handle a request of resync */
Willy Tarreaue5843b32015-04-27 18:40:14 +02002671 appctx_wakeup(ps->appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002672 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002673 else {
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002674 int update_to_push = 0;
2675
Emeric Brunb3971ab2015-05-12 18:49:09 +02002676 /* Awake session if there is data to push */
2677 for (st = ps->tables; st ; st = st->next) {
2678 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002679 /* wake up the peer handler to push local updates */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002680 update_to_push = 1;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002681 /* There is no need to send a heartbeat message
2682 * when some updates must be pushed. The remote
2683 * peer will consider <ps> peer as alive when it will
2684 * receive these updates.
2685 */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002686 ps->flags &= ~PEER_F_HEARTBEAT;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002687 /* Re-schedule another one later. */
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002688 ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002689 /* We are going to send updates, let's ensure we will
2690 * come back to send heartbeat messages or to reconnect.
2691 */
2692 task->expire = tick_first(ps->reconnect, ps->heartbeat);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002693 appctx_wakeup(ps->appctx);
2694 break;
2695 }
2696 }
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002697 /* When there are updates to send we do not reconnect
2698 * and do not send heartbeat message either.
2699 */
2700 if (!update_to_push) {
2701 if (tick_is_expired(ps->reconnect, now_ms)) {
2702 if (ps->flags & PEER_F_ALIVE) {
2703 /* This peer was alive during a 'reconnect' period.
2704 * Flag it as not alive again for the next period.
2705 */
2706 ps->flags &= ~PEER_F_ALIVE;
Frédéric Lécaille54bff832019-03-26 10:25:20 +01002707 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT));
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002708 }
2709 else {
2710 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + random() % 2000));
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002711 peer_session_forceshutdown(ps);
Frédéric Lécaille9a88a832019-11-07 15:22:33 +01002712 ps->no_hbt++;
Frédéric Lécaille045e0d42019-03-21 11:12:32 +01002713 }
2714 }
2715 else if (tick_is_expired(ps->heartbeat, now_ms)) {
2716 ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT));
2717 ps->flags |= PEER_F_HEARTBEAT;
2718 appctx_wakeup(ps->appctx);
2719 }
Frédéric Lécailleb7405c12019-03-27 14:32:39 +01002720 task->expire = tick_first(ps->reconnect, ps->heartbeat);
Frédéric Lécaille645635d2019-02-11 17:49:39 +01002721 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002722 }
2723 /* else do nothing */
2724 } /* SUCCESSCODE */
2725 } /* !ps->peer->local */
2726 } /* for */
2727
2728 /* Resync from remotes expired: consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002729 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2730 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
2731 tick_is_expired(peers->resync_timeout, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002732 /* Resync from remote peer needed
2733 * no peer was assigned for the lesson
2734 * and resync timeout expire */
2735
2736 /* flag no more resync from remote, consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002737 peers->flags |= PEERS_F_RESYNC_REMOTE;
Emeric Brun2b920a12010-09-23 18:30:22 +02002738 }
2739
Emeric Brunb3971ab2015-05-12 18:49:09 +02002740 if ((peers->flags & PEERS_RESYNC_STATEMASK) != PEERS_RESYNC_FINISHED) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002741 /* Resync not finished*/
Frédéric Lécaille5d6e5f82017-05-29 13:47:16 +02002742 /* reschedule task to resync timeout if not expired, to ended resync if needed */
2743 if (!tick_is_expired(peers->resync_timeout, now_ms))
2744 task->expire = tick_first(task->expire, peers->resync_timeout);
Emeric Brun2b920a12010-09-23 18:30:22 +02002745 }
2746 } /* !stopping */
2747 else {
2748 /* soft stop case */
Willy Tarreau086735a2018-11-05 15:09:47 +01002749 if (state & TASK_WOKEN_SIGNAL) {
Joseph Herlant82b2f542018-11-15 12:19:14 -08002750 /* We've just received the signal */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002751 if (!(peers->flags & PEERS_F_DONOTSTOP)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002752 /* add DO NOT STOP flag if not present */
Olivier Houcharded879892019-03-08 18:53:43 +01002753 _HA_ATOMIC_ADD(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002754 peers->flags |= PEERS_F_DONOTSTOP;
2755 ps = peers->local;
2756 for (st = ps->tables; st ; st = st->next)
2757 st->table->syncing++;
Emeric Brun2b920a12010-09-23 18:30:22 +02002758 }
2759
2760 /* disconnect all connected peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002761 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun80527f52017-06-19 17:46:37 +02002762 /* we're killing a connection, we must apply a random delay before
2763 * retrying otherwise the other end will do the same and we can loop
2764 * for a while.
2765 */
2766 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + random() % 2000));
Willy Tarreau9df94c22016-10-31 18:42:52 +01002767 if (ps->appctx) {
Emeric Brun9ef2ad72019-04-02 17:22:01 +02002768 peer_session_forceshutdown(ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002769 }
2770 }
2771 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002772
Emeric Brunb3971ab2015-05-12 18:49:09 +02002773 ps = peers->local;
Emeric Brun2b920a12010-09-23 18:30:22 +02002774 if (ps->flags & PEER_F_TEACH_COMPLETE) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002775 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002776 /* resync of new process was complete, current process can die now */
Olivier Houcharded879892019-03-08 18:53:43 +01002777 _HA_ATOMIC_SUB(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002778 peers->flags &= ~PEERS_F_DONOTSTOP;
2779 for (st = ps->tables; st ; st = st->next)
2780 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002781 }
2782 }
Willy Tarreau9df94c22016-10-31 18:42:52 +01002783 else if (!ps->appctx) {
2784 /* If there's no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002785 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002786 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
2787 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE ||
2788 ps->statuscode == PEER_SESS_SC_TRYAGAIN) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002789 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002790 * or previous peer connection was successfully established
2791 * or previous tcp connect succeeded but init state incomplete
Emeric Brun2b920a12010-09-23 18:30:22 +02002792 * or during previous connect, peer replies a try again statuscode */
2793
2794 /* connect to the peer */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002795 peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002796 }
2797 else {
2798 /* Other error cases */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002799 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002800 /* unable to resync new process, current process can die now */
Olivier Houcharded879892019-03-08 18:53:43 +01002801 _HA_ATOMIC_SUB(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002802 peers->flags &= ~PEERS_F_DONOTSTOP;
2803 for (st = ps->tables; st ; st = st->next)
2804 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002805 }
2806 }
2807 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002808 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE ) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002809 /* current peer connection is active and established
2810 * wake up all peer handlers to push remaining local updates */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002811 for (st = ps->tables; st ; st = st->next) {
2812 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002813 appctx_wakeup(ps->appctx);
2814 break;
2815 }
2816 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002817 }
2818 } /* stopping */
Emeric Brun80527f52017-06-19 17:46:37 +02002819
2820 /* Release lock for all peers of the section */
2821 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002822 HA_SPIN_UNLOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002823
Emeric Brun2b920a12010-09-23 18:30:22 +02002824 /* Wakeup for re-connect */
2825 return task;
2826}
2827
Emeric Brunb3971ab2015-05-12 18:49:09 +02002828
Emeric Brun2b920a12010-09-23 18:30:22 +02002829/*
Willy Tarreaud9443442018-10-15 11:18:03 +02002830 * returns 0 in case of error.
Emeric Brun2b920a12010-09-23 18:30:22 +02002831 */
Willy Tarreaud9443442018-10-15 11:18:03 +02002832int peers_init_sync(struct peers *peers)
Emeric Brun2b920a12010-09-23 18:30:22 +02002833{
Emeric Brun2b920a12010-09-23 18:30:22 +02002834 struct peer * curpeer;
Emeric Brun2b920a12010-09-23 18:30:22 +02002835
Emeric Brun2b920a12010-09-23 18:30:22 +02002836 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002837 peers->peers_fe->maxconn += 3;
2838 }
2839
Emeric Brunc60def82017-09-27 14:59:38 +02002840 peers->sync_task = task_new(MAX_THREADS_MASK);
Willy Tarreaud9443442018-10-15 11:18:03 +02002841 if (!peers->sync_task)
2842 return 0;
2843
Emeric Brunb3971ab2015-05-12 18:49:09 +02002844 peers->sync_task->process = process_peer_sync;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002845 peers->sync_task->context = (void *)peers;
2846 peers->sighandler = signal_register_task(0, peers->sync_task, 0);
2847 task_wakeup(peers->sync_task, TASK_WOKEN_INIT);
Willy Tarreaud9443442018-10-15 11:18:03 +02002848 return 1;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002849}
2850
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002851/*
2852 * Allocate a cache a dictionary entries used upon transmission.
2853 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002854static struct dcache_tx *new_dcache_tx(size_t max_entries)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002855{
2856 struct dcache_tx *d;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002857 struct ebpt_node *entries;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002858
2859 d = malloc(sizeof *d);
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002860 entries = calloc(max_entries, sizeof *entries);
2861 if (!d || !entries)
2862 goto err;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002863
2864 d->lru_key = 0;
Frédéric Lécailleb65717f2019-06-07 14:25:25 +02002865 d->prev_lookup = NULL;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002866 d->cached_entries = EB_ROOT_UNIQUE;
2867 d->entries = entries;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002868
2869 return d;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002870
2871 err:
2872 free(d);
2873 free(entries);
2874 return NULL;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002875}
2876
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002877static void free_dcache_tx(struct dcache_tx *dc)
2878{
2879 free(dc->entries);
2880 dc->entries = NULL;
2881 free(dc);
2882}
2883
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002884/*
2885 * Allocate a cache of dictionary entries with <name> as name and <max_entries>
2886 * as maximum of entries.
2887 * Return the dictionay cache if succeeded, NULL if not.
2888 * Must be deallocated calling free_dcache().
2889 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002890static struct dcache *new_dcache(size_t max_entries)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002891{
2892 struct dcache_tx *dc_tx;
2893 struct dcache *dc;
2894 struct dcache_rx *dc_rx;
2895
2896 dc = calloc(1, sizeof *dc);
2897 dc_tx = new_dcache_tx(max_entries);
2898 dc_rx = calloc(max_entries, sizeof *dc_rx);
2899 if (!dc || !dc_tx || !dc_rx)
2900 goto err;
2901
2902 dc->tx = dc_tx;
2903 dc->rx = dc_rx;
2904 dc->max_entries = max_entries;
2905
2906 return dc;
2907
2908 err:
2909 free(dc);
2910 free(dc_tx);
2911 free(dc_rx);
2912 return NULL;
2913}
2914
2915/*
2916 * Deallocate a cache of dictionary entries.
2917 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002918static inline void free_dcache(struct dcache *dc)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002919{
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002920 free_dcache_tx(dc->tx);
2921 dc->tx = NULL;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002922 free(dc->rx); dc->rx = NULL;
2923 free(dc);
2924}
2925
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002926
2927/*
2928 * Look for the dictionary entry with the value of <i> in <d> cache of dictionary
2929 * entries used upon transmission.
2930 * Return the entry if found, NULL if not.
2931 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002932static struct ebpt_node *dcache_tx_lookup_value(struct dcache_tx *d,
2933 struct dcache_tx_entry *i)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002934{
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002935 return ebpt_lookup(&d->cached_entries, i->entry.key);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002936}
2937
2938/*
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002939 * Flush <dc> cache.
2940 * Always succeeds.
2941 */
2942static inline void flush_dcache(struct peer *peer)
2943{
2944 int i;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02002945 struct dcache *dc = peer->dcache;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002946
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002947 for (i = 0; i < dc->max_entries; i++)
2948 ebpt_delete(&dc->tx->entries[i]);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002949
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002950 memset(dc->rx, 0, dc->max_entries * sizeof *dc->rx);
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002951}
2952
2953/*
2954 * Insert a dictionary entry in <dc> cache part used upon transmission (->tx)
2955 * with information provided by <i> dictionary cache entry (especially the value
2956 * to be inserted if not already). Return <i> if already present in the cache
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002957 * or something different of <i> if not.
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002958 */
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002959static struct ebpt_node *dcache_tx_insert(struct dcache *dc, struct dcache_tx_entry *i)
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002960{
2961 struct dcache_tx *dc_tx;
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002962 struct ebpt_node *o;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002963
2964 dc_tx = dc->tx;
Frédéric Lécailleb65717f2019-06-07 14:25:25 +02002965
2966 if (dc_tx->prev_lookup && dc_tx->prev_lookup->key == i->entry.key) {
2967 o = dc_tx->prev_lookup;
2968 } else {
2969 o = dcache_tx_lookup_value(dc_tx, i);
2970 if (o) {
2971 /* Save it */
2972 dc_tx->prev_lookup = o;
2973 }
2974 }
2975
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002976 if (o) {
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002977 /* Copy the ID. */
2978 i->id = o - dc->tx->entries;
2979 return &i->entry;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002980 }
2981
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002982 /* The new entry to put in cache */
Frédéric Lécailleb65717f2019-06-07 14:25:25 +02002983 dc_tx->prev_lookup = o = &dc_tx->entries[dc_tx->lru_key];
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002984
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002985 ebpt_delete(o);
2986 o->key = i->entry.key;
2987 ebpt_insert(&dc_tx->cached_entries, o);
2988 i->id = dc_tx->lru_key;
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002989
Frédéric Lécaille6c391982019-06-06 11:34:03 +02002990 /* Update the index for the next entry to put in cache */
2991 dc_tx->lru_key = (dc_tx->lru_key + 1) & (dc->max_entries - 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002992
Frédéric Lécaille74167b22019-05-28 19:02:42 +02002993 return o;
2994}
Emeric Brunb3971ab2015-05-12 18:49:09 +02002995
2996/*
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02002997 * Allocate a dictionary cache for each peer of <peers> section.
2998 * Return 1 if succeeded, 0 if not.
2999 */
3000int peers_alloc_dcache(struct peers *peers)
3001{
3002 struct peer *p;
3003
3004 for (p = peers->remote; p; p = p->next) {
3005 p->dcache = new_dcache(PEER_STKT_CACHE_MAX_ENTRIES);
3006 if (!p->dcache)
3007 return 0;
3008 }
3009
3010 return 1;
3011}
3012
3013/*
Emeric Brunb3971ab2015-05-12 18:49:09 +02003014 * Function used to register a table for sync on a group of peers
3015 *
3016 */
3017void peers_register_table(struct peers *peers, struct stktable *table)
3018{
3019 struct shared_table *st;
3020 struct peer * curpeer;
3021 int id = 0;
3022
3023 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Vincent Bernat02779b62016-04-03 13:48:43 +02003024 st = calloc(1,sizeof(*st));
Emeric Brunb3971ab2015-05-12 18:49:09 +02003025 st->table = table;
3026 st->next = curpeer->tables;
3027 if (curpeer->tables)
3028 id = curpeer->tables->local_id;
3029 st->local_id = id + 1;
3030
3031 curpeer->tables = st;
3032 }
3033
3034 table->sync_task = peers->sync_task;
Emeric Brun2b920a12010-09-23 18:30:22 +02003035}
3036
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003037/*
3038 * Parse the "show peers" command arguments.
3039 * Returns 0 if succeeded, 1 if not with the ->msg of the appctx set as
3040 * error message.
3041 */
3042static int cli_parse_show_peers(char **args, char *payload, struct appctx *appctx, void *private)
3043{
3044 appctx->ctx.cfgpeers.target = NULL;
3045
3046 if (*args[2]) {
3047 struct peers *p;
3048
3049 for (p = cfg_peers; p; p = p->next) {
3050 if (!strcmp(p->id, args[2])) {
3051 appctx->ctx.cfgpeers.target = p;
3052 break;
3053 }
3054 }
3055
3056 if (!p) {
3057 appctx->ctx.cli.severity = LOG_ERR;
3058 appctx->ctx.cli.msg = "No such peers\n";
3059 appctx->st0 = CLI_ST_PRINT;
3060 return 1;
3061 }
3062 }
3063
3064 return 0;
3065}
3066
3067/*
3068 * This function dumps the peer state information of <peers> "peers" section.
3069 * Returns 0 if the output buffer is full and needs to be called again, non-zero if not.
3070 * Dedicated to be called by cli_io_handler_show_peers() cli I/O handler.
3071 */
3072static int peers_dump_head(struct buffer *msg, struct stream_interface *si, struct peers *peers)
3073{
3074 struct tm tm;
3075
3076 get_localtime(peers->last_change, &tm);
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003077 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 +02003078 peers,
3079 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
3080 tm.tm_hour, tm.tm_min, tm.tm_sec,
3081 peers->id, peers->state, peers->flags,
3082 peers->resync_timeout ?
3083 tick_is_expired(peers->resync_timeout, now_ms) ? "<PAST>" :
3084 human_time(TICKS_TO_MS(peers->resync_timeout - now_ms),
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003085 TICKS_TO_MS(1000)) : "<NEVER>",
3086 peers->sync_task ? peers->sync_task->calls : 0);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003087
3088 if (ci_putchk(si_ic(si), msg) == -1) {
3089 si_rx_room_blk(si);
3090 return 0;
3091 }
3092
3093 return 1;
3094}
3095
3096/*
3097 * This function dumps <peer> state information.
3098 * Returns 0 if the output buffer is full and needs to be called again, non-zero
3099 * if not. Dedicated to be called by cli_io_handler_show_peers() cli I/O handler.
3100 */
3101static int peers_dump_peer(struct buffer *msg, struct stream_interface *si, struct peer *peer)
3102{
3103 struct connection *conn;
3104 char pn[INET6_ADDRSTRLEN];
3105 struct stream_interface *peer_si;
3106 struct stream *peer_s;
3107 struct appctx *appctx;
3108 struct shared_table *st;
3109
3110 addr_to_str(&peer->addr, pn, sizeof pn);
Frédéric Lécaille9a88a832019-11-07 15:22:33 +01003111 chunk_appendf(msg, " %p: id=%s(%s) addr=%s:%d status=%s reconnect=%s confirm=%u tx_hbt=%u rx_hbt=%u no_hbt=%u new_conn=%u proto_err=%u\n",
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003112 peer, peer->id,
3113 peer->local ? "local" : "remote",
3114 pn, get_host_port(&peer->addr),
3115 statuscode_str(peer->statuscode),
3116 peer->reconnect ?
3117 tick_is_expired(peer->reconnect, now_ms) ? "<PAST>" :
3118 human_time(TICKS_TO_MS(peer->reconnect - now_ms),
3119 TICKS_TO_MS(1000)) : "<NEVER>",
Frédéric Lécaille9a88a832019-11-07 15:22:33 +01003120 peer->confirm, peer->tx_hbt, peer->rx_hbt,
3121 peer->no_hbt, peer->new_conn, peer->proto_err);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003122
3123 chunk_appendf(&trash, " flags=0x%x", peer->flags);
3124
3125 appctx = peer->appctx;
3126 if (!appctx)
Frédéric Lécaille586f9f42019-11-06 10:41:03 +01003127 goto table_info;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003128
Emeric Brun0bbec0f2019-04-18 11:39:43 +02003129 chunk_appendf(&trash, " appctx:%p st0=%d st1=%d task_calls=%u", appctx, appctx->st0, appctx->st1,
3130 appctx->t ? appctx->t->calls : 0);
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003131
3132 peer_si = peer->appctx->owner;
3133 if (!peer_si)
Frédéric Lécaille586f9f42019-11-06 10:41:03 +01003134 goto table_info;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003135
3136 peer_s = si_strm(peer_si);
3137 if (!peer_s)
Frédéric Lécaille586f9f42019-11-06 10:41:03 +01003138 goto table_info;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003139
3140 chunk_appendf(&trash, " state=%s", si_state_str(si_opposite(peer_si)->state));
3141
3142 conn = objt_conn(strm_orig(peer_s));
3143 if (conn)
3144 chunk_appendf(&trash, "\n xprt=%s", conn_get_xprt_name(conn));
3145
3146 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
3147 case AF_INET:
3148 case AF_INET6:
3149 chunk_appendf(&trash, " src=%s:%d", pn, get_host_port(&conn->addr.from));
3150 break;
3151 case AF_UNIX:
3152 chunk_appendf(&trash, " src=unix:%d", strm_li(peer_s)->luid);
3153 break;
3154 }
3155
3156 if (conn)
3157 conn_get_to_addr(conn);
3158
3159 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
3160 case AF_INET:
3161 case AF_INET6:
3162 chunk_appendf(&trash, " addr=%s:%d", pn, get_host_port(&conn->addr.to));
3163 break;
3164 case AF_UNIX:
3165 chunk_appendf(&trash, " addr=unix:%d", strm_li(peer_s)->luid);
3166 break;
3167 }
3168
Frédéric Lécaille586f9f42019-11-06 10:41:03 +01003169 table_info:
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003170 if (peer->remote_table)
3171 chunk_appendf(&trash, "\n remote_table:%p id=%s local_id=%d remote_id=%d",
3172 peer->remote_table,
3173 peer->remote_table->table->id,
3174 peer->remote_table->local_id,
3175 peer->remote_table->remote_id);
3176
3177 if (peer->last_local_table)
3178 chunk_appendf(&trash, "\n last_local_table:%p id=%s local_id=%d remote_id=%d",
3179 peer->last_local_table,
3180 peer->last_local_table->table->id,
3181 peer->last_local_table->local_id,
3182 peer->last_local_table->remote_id);
3183
3184 if (peer->tables) {
3185 chunk_appendf(&trash, "\n shared tables:");
3186 for (st = peer->tables; st; st = st->next) {
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003187 int i, count;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003188 struct stktable *t;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003189 struct dcache *dcache;
3190
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003191 t = st->table;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003192 dcache = peer->dcache;
3193
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003194 chunk_appendf(&trash, "\n %p local_id=%d remote_id=%d "
3195 "flags=0x%x remote_data=0x%llx",
3196 st, st->local_id, st->remote_id,
3197 st->flags, (unsigned long long)st->remote_data);
3198 chunk_appendf(&trash, "\n last_acked=%u last_pushed=%u last_get=%u"
3199 " teaching_origin=%u update=%u",
3200 st->last_acked, st->last_pushed, st->last_get,
3201 st->teaching_origin, st->update);
3202 chunk_appendf(&trash, "\n table:%p id=%s update=%u localupdate=%u"
3203 " commitupdate=%u syncing=%u",
3204 t, t->id, t->update, t->localupdate, t->commitupdate, t->syncing);
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003205 chunk_appendf(&trash, "\n TX dictionary cache:");
3206 count = 0;
3207 for (i = 0; i < dcache->max_entries; i++) {
3208 struct ebpt_node *node;
3209 struct dict_entry *de;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003210
Frédéric Lécaille6c391982019-06-06 11:34:03 +02003211 node = &dcache->tx->entries[i];
3212 if (!node->key)
3213 break;
3214
3215 if (!count++)
3216 chunk_appendf(&trash, "\n ");
3217 de = node->key;
3218 chunk_appendf(&trash, " %3u -> %s", i, (char *)de->value.key);
3219 count &= 0x3;
Frédéric Lécaille62b0b0b2019-05-29 16:20:41 +02003220 }
3221 chunk_appendf(&trash, "\n RX dictionary cache:");
3222 count = 0;
3223 for (i = 0; i < dcache->max_entries; i++) {
3224 if (!count++)
3225 chunk_appendf(&trash, "\n ");
3226 chunk_appendf(&trash, " %3u -> %s", i,
3227 dcache->rx[i].de ?
3228 (char *)dcache->rx[i].de->value.key : "-");
3229 count &= 0x3;
3230 }
Frédéric Lécaille95679dc2019-04-15 10:25:27 +02003231 }
3232 }
3233
3234 end:
3235 chunk_appendf(&trash, "\n");
3236 if (ci_putchk(si_ic(si), msg) == -1) {
3237 si_rx_room_blk(si);
3238 return 0;
3239 }
3240
3241 return 1;
3242}
3243
3244/*
3245 * This function dumps all the peers of "peers" section.
3246 * Returns 0 if the output buffer is full and needs to be called
3247 * again, non-zero if not. It proceeds in an isolated thread, so
3248 * there is no thread safety issue here.
3249 */
3250static int cli_io_handler_show_peers(struct appctx *appctx)
3251{
3252 int show_all;
3253 int ret = 0, first_peers = 1;
3254 struct stream_interface *si = appctx->owner;
3255
3256 thread_isolate();
3257
3258 show_all = !appctx->ctx.cfgpeers.target;
3259
3260 chunk_reset(&trash);
3261
3262 while (appctx->st2 != STAT_ST_FIN) {
3263 switch (appctx->st2) {
3264 case STAT_ST_INIT:
3265 if (show_all)
3266 appctx->ctx.cfgpeers.peers = cfg_peers;
3267 else
3268 appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.target;
3269
3270 appctx->st2 = STAT_ST_LIST;
3271 /* fall through */
3272
3273 case STAT_ST_LIST:
3274 if (!appctx->ctx.cfgpeers.peers) {
3275 /* No more peers list. */
3276 appctx->st2 = STAT_ST_END;
3277 }
3278 else {
3279 if (!first_peers)
3280 chunk_appendf(&trash, "\n");
3281 else
3282 first_peers = 0;
3283 if (!peers_dump_head(&trash, si, appctx->ctx.cfgpeers.peers))
3284 goto out;
3285
3286 appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peers->remote;
3287 appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.peers->next;
3288 appctx->st2 = STAT_ST_INFO;
3289 }
3290 break;
3291
3292 case STAT_ST_INFO:
3293 if (!appctx->ctx.cfgpeers.peer) {
3294 /* End of peer list */
3295 if (show_all)
3296 appctx->st2 = STAT_ST_LIST;
3297 else
3298 appctx->st2 = STAT_ST_END;
3299 }
3300 else {
3301 if (!peers_dump_peer(&trash, si, appctx->ctx.cfgpeers.peer))
3302 goto out;
3303
3304 appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peer->next;
3305 }
3306 break;
3307
3308 case STAT_ST_END:
3309 appctx->st2 = STAT_ST_FIN;
3310 break;
3311 }
3312 }
3313 ret = 1;
3314 out:
3315 thread_release();
3316 return ret;
3317}
3318
3319/*
3320 * CLI keywords.
3321 */
3322static struct cli_kw_list cli_kws = {{ }, {
3323 { { "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, },
3324 {},
3325}};
3326
3327/* Register cli keywords */
3328INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
3329