blob: cac0c8a8d72819be37399fe5193025ec8c40f216 [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>
33
34#include <proto/acl.h>
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020035#include <proto/applet.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020036#include <proto/channel.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020037#include <proto/fd.h>
Willy Tarreaud1d48d42015-03-13 16:15:46 +010038#include <proto/frontend.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020039#include <proto/log.h>
40#include <proto/hdr_idx.h>
Willy Tarreau53a47662017-08-28 10:53:00 +020041#include <proto/mux_pt.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020042#include <proto/proto_tcp.h>
43#include <proto/proto_http.h>
44#include <proto/proxy.h>
Willy Tarreaufeb76402015-04-03 14:10:06 +020045#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020046#include <proto/stream.h>
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010047#include <proto/signal.h>
48#include <proto/stick_table.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020049#include <proto/stream_interface.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020050#include <proto/task.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020051
52
53/*******************************/
54/* Current peer learning state */
55/*******************************/
56
57/******************************/
Emeric Brunb3971ab2015-05-12 18:49:09 +020058/* Current peers section resync state */
Emeric Brun2b920a12010-09-23 18:30:22 +020059/******************************/
Emeric Brunb3971ab2015-05-12 18:49:09 +020060#define PEERS_F_RESYNC_LOCAL 0x00000001 /* Learn from local finished or no more needed */
61#define PEERS_F_RESYNC_REMOTE 0x00000002 /* Learn from remote finished or no more needed */
62#define PEERS_F_RESYNC_ASSIGN 0x00000004 /* A peer was assigned to learn our lesson */
63#define PEERS_F_RESYNC_PROCESS 0x00000008 /* The assigned peer was requested for resync */
64#define PEERS_F_DONOTSTOP 0x00010000 /* Main table sync task block process during soft stop
Emeric Brun2b920a12010-09-23 18:30:22 +020065 to push data to new process */
66
Emeric Brunb3971ab2015-05-12 18:49:09 +020067#define PEERS_RESYNC_STATEMASK (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE)
68#define PEERS_RESYNC_FROMLOCAL 0x00000000
69#define PEERS_RESYNC_FROMREMOTE PEERS_F_RESYNC_LOCAL
70#define PEERS_RESYNC_FINISHED (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE)
71
72/***********************************/
73/* Current shared table sync state */
74/***********************************/
75#define SHTABLE_F_TEACH_STAGE1 0x00000001 /* Teach state 1 complete */
76#define SHTABLE_F_TEACH_STAGE2 0x00000002 /* Teach state 2 complete */
Emeric Brun2b920a12010-09-23 18:30:22 +020077
78/******************************/
79/* Remote peer teaching state */
80/******************************/
81#define PEER_F_TEACH_PROCESS 0x00000001 /* Teach a lesson to current peer */
Emeric Brun2b920a12010-09-23 18:30:22 +020082#define PEER_F_TEACH_FINISHED 0x00000008 /* Teach conclude, (wait for confirm) */
83#define PEER_F_TEACH_COMPLETE 0x00000010 /* All that we know already taught to current peer, used only for a local peer */
84#define PEER_F_LEARN_ASSIGN 0x00000100 /* Current peer was assigned for a lesson */
85#define PEER_F_LEARN_NOTUP2DATE 0x00000200 /* Learn from peer finished but peer is not up to date */
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +020086#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 +020087
Emeric Brunb3971ab2015-05-12 18:49:09 +020088#define PEER_TEACH_RESET ~(PEER_F_TEACH_PROCESS|PEER_F_TEACH_FINISHED) /* PEER_F_TEACH_COMPLETE should never be reset */
Emeric Brun2b920a12010-09-23 18:30:22 +020089#define PEER_LEARN_RESET ~(PEER_F_LEARN_ASSIGN|PEER_F_LEARN_NOTUP2DATE)
90
Emeric Brunb3971ab2015-05-12 18:49:09 +020091/*****************************/
92/* Sync message class */
93/*****************************/
94enum {
95 PEER_MSG_CLASS_CONTROL = 0,
96 PEER_MSG_CLASS_ERROR,
97 PEER_MSG_CLASS_STICKTABLE = 10,
98 PEER_MSG_CLASS_RESERVED = 255,
99};
100
101/*****************************/
102/* control message types */
103/*****************************/
104enum {
105 PEER_MSG_CTRL_RESYNCREQ = 0,
106 PEER_MSG_CTRL_RESYNCFINISHED,
107 PEER_MSG_CTRL_RESYNCPARTIAL,
108 PEER_MSG_CTRL_RESYNCCONFIRM,
109};
110
111/*****************************/
112/* error message types */
113/*****************************/
114enum {
115 PEER_MSG_ERR_PROTOCOL = 0,
116 PEER_MSG_ERR_SIZELIMIT,
117};
118
119
120/*******************************/
121/* stick table sync mesg types */
122/* Note: ids >= 128 contains */
123/* id message cotains data */
124/*******************************/
125enum {
126 PEER_MSG_STKT_UPDATE = 128,
127 PEER_MSG_STKT_INCUPDATE,
128 PEER_MSG_STKT_DEFINE,
129 PEER_MSG_STKT_SWITCH,
130 PEER_MSG_STKT_ACK,
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200131 PEER_MSG_STKT_UPDATE_TIMED,
132 PEER_MSG_STKT_INCUPDATE_TIMED,
Emeric Brunb3971ab2015-05-12 18:49:09 +0200133};
Emeric Brun2b920a12010-09-23 18:30:22 +0200134
135/**********************************/
136/* Peer Session IO handler states */
137/**********************************/
138
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100139enum {
140 PEER_SESS_ST_ACCEPT = 0, /* Initial state for session create by an accept, must be zero! */
141 PEER_SESS_ST_GETVERSION, /* Validate supported protocol version */
142 PEER_SESS_ST_GETHOST, /* Validate host ID correspond to local host id */
143 PEER_SESS_ST_GETPEER, /* Validate peer ID correspond to a known remote peer id */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100144 /* after this point, data were possibly exchanged */
145 PEER_SESS_ST_SENDSUCCESS, /* Send ret code 200 (success) and wait for message */
146 PEER_SESS_ST_CONNECT, /* Initial state for session create on a connect, push presentation into buffer */
147 PEER_SESS_ST_GETSTATUS, /* Wait for the welcome message */
148 PEER_SESS_ST_WAITMSG, /* Wait for data messages */
149 PEER_SESS_ST_EXIT, /* Exit with status code */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200150 PEER_SESS_ST_ERRPROTO, /* Send error proto message before exit */
151 PEER_SESS_ST_ERRSIZE, /* Send error size message before exit */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100152 PEER_SESS_ST_END, /* Killed session */
153};
Emeric Brun2b920a12010-09-23 18:30:22 +0200154
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100155/***************************************************/
156/* Peer Session status code - part of the protocol */
157/***************************************************/
Emeric Brun2b920a12010-09-23 18:30:22 +0200158
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100159#define PEER_SESS_SC_CONNECTCODE 100 /* connect in progress */
160#define PEER_SESS_SC_CONNECTEDCODE 110 /* tcp connect success */
Emeric Brun2b920a12010-09-23 18:30:22 +0200161
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100162#define PEER_SESS_SC_SUCCESSCODE 200 /* accept or connect successful */
Emeric Brun2b920a12010-09-23 18:30:22 +0200163
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100164#define PEER_SESS_SC_TRYAGAIN 300 /* try again later */
Emeric Brun2b920a12010-09-23 18:30:22 +0200165
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100166#define PEER_SESS_SC_ERRPROTO 501 /* error protocol */
167#define PEER_SESS_SC_ERRVERSION 502 /* unknown protocol version */
168#define PEER_SESS_SC_ERRHOST 503 /* bad host name */
169#define PEER_SESS_SC_ERRPEER 504 /* unknown peer */
Emeric Brun2b920a12010-09-23 18:30:22 +0200170
171#define PEER_SESSION_PROTO_NAME "HAProxyS"
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200172#define PEER_MAJOR_VER 2
173#define PEER_MINOR_VER 1
174#define PEER_DWNGRD_MINOR_VER 0
Emeric Brun2b920a12010-09-23 18:30:22 +0200175
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200176struct peers *cfg_peers = NULL;
Willy Tarreau81bc3b02016-10-31 17:37:39 +0100177static void peer_session_forceshutdown(struct appctx *appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +0200178
Emeric Brun18928af2017-03-29 16:32:53 +0200179/* This function encode an uint64 to 'dynamic' length format.
180 The encoded value is written at address *str, and the
181 caller must assure that size after *str is large enought.
182 At return, the *str is set at the next Byte after then
183 encoded integer. The function returns then length of the
184 encoded integer in Bytes */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200185int intencode(uint64_t i, char **str) {
186 int idx = 0;
187 unsigned char *msg;
188
189 if (!*str)
190 return 0;
191
192 msg = (unsigned char *)*str;
193 if (i < 240) {
194 msg[0] = (unsigned char)i;
195 *str = (char *)&msg[idx+1];
196 return (idx+1);
197 }
198
199 msg[idx] =(unsigned char)i | 240;
200 i = (i - 240) >> 4;
201 while (i >= 128) {
202 msg[++idx] = (unsigned char)i | 128;
203 i = (i - 128) >> 7;
204 }
205 msg[++idx] = (unsigned char)i;
206 *str = (char *)&msg[idx+1];
207 return (idx+1);
208}
209
210
211/* This function returns the decoded integer or 0
212 if decode failed
213 *str point on the beginning of the integer to decode
214 at the end of decoding *str point on the end of the
215 encoded integer or to null if end is reached */
Emeric Brun18928af2017-03-29 16:32:53 +0200216uint64_t intdecode(char **str, char *end)
217{
Emeric Brunb3971ab2015-05-12 18:49:09 +0200218 unsigned char *msg;
Emeric Brun18928af2017-03-29 16:32:53 +0200219 uint64_t i;
220 int shift;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200221
222 if (!*str)
223 return 0;
224
225 msg = (unsigned char *)*str;
Emeric Brun18928af2017-03-29 16:32:53 +0200226 if (msg >= (unsigned char *)end)
227 goto fail;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200228
Emeric Brun18928af2017-03-29 16:32:53 +0200229 i = *(msg++);
230 if (i >= 240) {
231 shift = 4;
232 do {
233 if (msg >= (unsigned char *)end)
234 goto fail;
235 i += (uint64_t)*msg << shift;
236 shift += 7;
237 } while (*(msg++) >= 128);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200238 }
Emeric Brun18928af2017-03-29 16:32:53 +0200239 *str = (char *)msg;
240 return i;
241
242 fail:
243 *str = NULL;
244 return 0;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200245}
Emeric Brun2b920a12010-09-23 18:30:22 +0200246
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200247/* Set the stick-table UPDATE message type byte at <msg_type> address,
248 * depending on <use_identifier> and <use_timed> boolean parameters.
249 * Always successful.
250 */
251static inline void peer_set_update_msg_type(char *msg_type, int use_identifier, int use_timed)
252{
253 if (use_timed) {
254 if (use_identifier)
255 *msg_type = PEER_MSG_STKT_UPDATE_TIMED;
256 else
257 *msg_type = PEER_MSG_STKT_INCUPDATE_TIMED;
258 }
259 else {
260 if (use_identifier)
261 *msg_type = PEER_MSG_STKT_UPDATE;
262 else
263 *msg_type = PEER_MSG_STKT_INCUPDATE;
264 }
265
266}
Emeric Brun2b920a12010-09-23 18:30:22 +0200267/*
Emeric Brunb3971ab2015-05-12 18:49:09 +0200268 * This prepare the data update message on the stick session <ts>, <st> is the considered
269 * stick table.
270 * <msg> is a buffer of <size> to recieve data message content
271 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
272 * check size)
Emeric Brun2b920a12010-09-23 18:30:22 +0200273 */
Emeric Brun819fc6f2017-06-13 19:37:32 +0200274static int peer_prepare_updatemsg(struct stksess *ts, struct shared_table *st, unsigned int updateid, char *msg, size_t size, int use_identifier, int use_timed)
Emeric Brun2b920a12010-09-23 18:30:22 +0200275{
276 uint32_t netinteger;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200277 unsigned short datalen;
278 char *cursor, *datamsg;
Emeric Brun94900952015-06-11 18:25:54 +0200279 unsigned int data_type;
280 void *data_ptr;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200281
282 cursor = datamsg = msg + 1 + 5;
283
Emeric Brun2b920a12010-09-23 18:30:22 +0200284 /* construct message */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200285
286 /* check if we need to send the update identifer */
Emeric Brun819fc6f2017-06-13 19:37:32 +0200287 if (!st->last_pushed || updateid < st->last_pushed || ((updateid - st->last_pushed) != 1)) {
Emeric Bruna6a09982015-09-22 15:34:19 +0200288 use_identifier = 1;
Emeric Brun2b920a12010-09-23 18:30:22 +0200289 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200290
291 /* encode update identifier if needed */
292 if (use_identifier) {
Emeric Brun819fc6f2017-06-13 19:37:32 +0200293 netinteger = htonl(updateid);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200294 memcpy(cursor, &netinteger, sizeof(netinteger));
295 cursor += sizeof(netinteger);
Emeric Brun2b920a12010-09-23 18:30:22 +0200296 }
297
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200298 if (use_timed) {
299 netinteger = htonl(tick_remain(now_ms, ts->expire));
300 memcpy(cursor, &netinteger, sizeof(netinteger));
301 cursor += sizeof(netinteger);
302 }
303
Emeric Brunb3971ab2015-05-12 18:49:09 +0200304 /* encode the key */
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +0200305 if (st->table->type == SMP_T_STR) {
Emeric Brun2b920a12010-09-23 18:30:22 +0200306 int stlen = strlen((char *)ts->key.key);
307
Emeric Brunb3971ab2015-05-12 18:49:09 +0200308 intencode(stlen, &cursor);
309 memcpy(cursor, ts->key.key, stlen);
310 cursor += stlen;
Emeric Brun2b920a12010-09-23 18:30:22 +0200311 }
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +0200312 else if (st->table->type == SMP_T_SINT) {
Emeric Brun2b920a12010-09-23 18:30:22 +0200313 netinteger = htonl(*((uint32_t *)ts->key.key));
Emeric Brunb3971ab2015-05-12 18:49:09 +0200314 memcpy(cursor, &netinteger, sizeof(netinteger));
315 cursor += sizeof(netinteger);
Emeric Brun2b920a12010-09-23 18:30:22 +0200316 }
317 else {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200318 memcpy(cursor, ts->key.key, st->table->key_size);
319 cursor += st->table->key_size;
Emeric Brun2b920a12010-09-23 18:30:22 +0200320 }
321
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100322 HA_RWLOCK_RDLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200323 /* encode values */
Emeric Brun94900952015-06-11 18:25:54 +0200324 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200325
Emeric Brun94900952015-06-11 18:25:54 +0200326 data_ptr = stktable_data_ptr(st->table, ts, data_type);
327 if (data_ptr) {
328 switch (stktable_data_types[data_type].std_type) {
329 case STD_T_SINT: {
330 int data;
331
332 data = stktable_data_cast(data_ptr, std_t_sint);
333 intencode(data, &cursor);
334 break;
335 }
336 case STD_T_UINT: {
337 unsigned int data;
338
339 data = stktable_data_cast(data_ptr, std_t_uint);
340 intencode(data, &cursor);
341 break;
342 }
343 case STD_T_ULL: {
344 unsigned long long data;
345
346 data = stktable_data_cast(data_ptr, std_t_ull);
347 intencode(data, &cursor);
348 break;
349 }
350 case STD_T_FRQP: {
351 struct freq_ctr_period *frqp;
352
353 frqp = &stktable_data_cast(data_ptr, std_t_frqp);
354 intencode((unsigned int)(now_ms - frqp->curr_tick), &cursor);
355 intencode(frqp->curr_ctr, &cursor);
356 intencode(frqp->prev_ctr, &cursor);
357 break;
358 }
359 }
360 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200361 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100362 HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200363
364 /* Compute datalen */
365 datalen = (cursor - datamsg);
366
367 /* prepare message header */
368 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200369 peer_set_update_msg_type(&msg[1], use_identifier, use_timed);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200370 cursor = &msg[2];
371 intencode(datalen, &cursor);
372
373 /* move data after header */
374 memmove(cursor, datamsg, datalen);
375
376 /* return header size + data_len */
377 return (cursor - msg) + datalen;
378}
379
380/*
381 * This prepare the switch table message to targeted share table <st>.
382 * <msg> is a buffer of <size> to recieve data message content
383 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
384 * check size)
385 */
386static int peer_prepare_switchmsg(struct shared_table *st, char *msg, size_t size)
387{
388 int len;
389 unsigned short datalen;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200390 struct chunk *chunk;
391 char *cursor, *datamsg, *chunkp, *chunkq;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200392 uint64_t data = 0;
Emeric Brun94900952015-06-11 18:25:54 +0200393 unsigned int data_type;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200394
395 cursor = datamsg = msg + 2 + 5;
396
397 /* Encode data */
398
399 /* encode local id */
400 intencode(st->local_id, &cursor);
401
402 /* encode table name */
403 len = strlen(st->table->id);
404 intencode(len, &cursor);
405 memcpy(cursor, st->table->id, len);
406 cursor += len;
407
408 /* encode table type */
409
410 intencode(st->table->type, &cursor);
411
412 /* encode table key size */
413 intencode(st->table->key_size, &cursor);
414
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200415 chunk = get_trash_chunk();
416 chunkp = chunkq = chunk->str;
Emeric Brun94900952015-06-11 18:25:54 +0200417 /* encode available known data types in table */
418 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
419 if (st->table->data_ofs[data_type]) {
420 switch (stktable_data_types[data_type].std_type) {
421 case STD_T_SINT:
422 case STD_T_UINT:
423 case STD_T_ULL:
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200424 data |= 1 << data_type;
425 break;
Emeric Brun94900952015-06-11 18:25:54 +0200426 case STD_T_FRQP:
427 data |= 1 << data_type;
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200428 intencode(data_type, &chunkq);
429 intencode(st->table->data_arg[data_type].u, &chunkq);
Emeric Brun94900952015-06-11 18:25:54 +0200430 break;
431 }
432 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200433 }
434 intencode(data, &cursor);
435
Frédéric Lécaille37a72542017-07-06 15:02:16 +0200436 /* Encode stick-table entries duration. */
437 intencode(st->table->expire, &cursor);
438
439 if (chunkq > chunkp) {
440 chunk->len = chunkq - chunkp;
441 memcpy(cursor, chunk->str, chunk->len);
442 cursor += chunk->len;
443 }
444
Emeric Brunb3971ab2015-05-12 18:49:09 +0200445 /* Compute datalen */
446 datalen = (cursor - datamsg);
Emeric Brun2b920a12010-09-23 18:30:22 +0200447
Emeric Brunb3971ab2015-05-12 18:49:09 +0200448 /* prepare message header */
449 msg[0] = PEER_MSG_CLASS_STICKTABLE;
450 msg[1] = PEER_MSG_STKT_DEFINE;
451 cursor = &msg[2];
452 intencode(datalen, &cursor);
Emeric Brun2b920a12010-09-23 18:30:22 +0200453
Emeric Brunb3971ab2015-05-12 18:49:09 +0200454 /* move data after header */
455 memmove(cursor, datamsg, datalen);
456
457 /* return header size + data_len */
458 return (cursor - msg) + datalen;
Emeric Brun2b920a12010-09-23 18:30:22 +0200459}
460
Emeric Brunb3971ab2015-05-12 18:49:09 +0200461/*
462 * This prepare the acknowledge message on the stick session <ts>, <st> is the considered
463 * stick table.
464 * <msg> is a buffer of <size> to recieve data message content
465 * If function returns 0, the caller should consider we were unable to encode this message (TODO:
466 * check size)
467 */
468static int peer_prepare_ackmsg(struct shared_table *st, char *msg, size_t size)
469{
470 unsigned short datalen;
471 char *cursor, *datamsg;
472 uint32_t netinteger;
473
Emeric Brunb058f1c2015-09-22 15:50:18 +0200474 cursor = datamsg = msg + 2 + 5;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200475
476 intencode(st->remote_id, &cursor);
477 netinteger = htonl(st->last_get);
478 memcpy(cursor, &netinteger, sizeof(netinteger));
479 cursor += sizeof(netinteger);
480
481 /* Compute datalen */
482 datalen = (cursor - datamsg);
483
484 /* prepare message header */
485 msg[0] = PEER_MSG_CLASS_STICKTABLE;
Emeric Brune1ab8082015-08-21 11:48:54 +0200486 msg[1] = PEER_MSG_STKT_ACK;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200487 cursor = &msg[2];
488 intencode(datalen, &cursor);
489
490 /* move data after header */
491 memmove(cursor, datamsg, datalen);
492
493 /* return header size + data_len */
494 return (cursor - msg) + datalen;
495}
Emeric Brun2b920a12010-09-23 18:30:22 +0200496
497/*
498 * Callback to release a session with a peer
499 */
Willy Tarreau00a37f02015-04-13 12:05:19 +0200500static void peer_session_release(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +0200501{
Willy Tarreau00a37f02015-04-13 12:05:19 +0200502 struct stream_interface *si = appctx->owner;
Willy Tarreau87b09662015-04-03 00:22:06 +0200503 struct stream *s = si_strm(si);
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200504 struct peer *peer = appctx->ctx.peers.ptr;
505 struct peers *peers = strm_fe(s)->parent;
Emeric Brun2b920a12010-09-23 18:30:22 +0200506
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100507 /* appctx->ctx.peers.ptr is not a peer session */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100508 if (appctx->st0 < PEER_SESS_ST_SENDSUCCESS)
Emeric Brun2b920a12010-09-23 18:30:22 +0200509 return;
510
511 /* peer session identified */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200512 if (peer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100513 HA_SPIN_LOCK(PEER_LOCK, &peer->lock);
Willy Tarreau9df94c22016-10-31 18:42:52 +0100514 if (peer->appctx == appctx) {
Emeric Brunb157d732015-08-21 12:00:30 +0200515 /* Re-init current table pointers to force announcement on re-connect */
516 peer->remote_table = peer->last_local_table = NULL;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200517 peer->appctx = NULL;
518 if (peer->flags & PEER_F_LEARN_ASSIGN) {
Emeric Brun2b920a12010-09-23 18:30:22 +0200519 /* unassign current peer for learning */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200520 peer->flags &= ~(PEER_F_LEARN_ASSIGN);
521 peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
Emeric Brun2b920a12010-09-23 18:30:22 +0200522
523 /* reschedule a resync */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200524 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000));
Emeric Brun2b920a12010-09-23 18:30:22 +0200525 }
526 /* reset teaching and learning flags to 0 */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200527 peer->flags &= PEER_TEACH_RESET;
528 peer->flags &= PEER_LEARN_RESET;
Emeric Brun2b920a12010-09-23 18:30:22 +0200529 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100530 HA_SPIN_UNLOCK(PEER_LOCK, &peer->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200531 task_wakeup(peers->sync_task, TASK_WOKEN_MSG);
Emeric Brun2b920a12010-09-23 18:30:22 +0200532 }
533}
534
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200535/* Retrieve the major and minor versions of peers protocol
536 * announced by a remote peer. <str> is a null-terminated
537 * string with the following format: "<maj_ver>.<min_ver>".
538 */
539static int peer_get_version(const char *str,
540 unsigned int *maj_ver, unsigned int *min_ver)
541{
542 unsigned int majv, minv;
543 const char *pos, *saved;
544 const char *end;
545
546 saved = pos = str;
547 end = str + strlen(str);
548
549 majv = read_uint(&pos, end);
550 if (saved == pos || *pos++ != '.')
551 return -1;
552
553 saved = pos;
554 minv = read_uint(&pos, end);
555 if (saved == pos || pos != end)
556 return -1;
557
558 *maj_ver = majv;
559 *min_ver = minv;
560
561 return 0;
562}
Emeric Brun2b920a12010-09-23 18:30:22 +0200563
564/*
565 * IO Handler to handle message exchance with a peer
566 */
Willy Tarreau00a37f02015-04-13 12:05:19 +0200567static void peer_io_handler(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +0200568{
Willy Tarreau00a37f02015-04-13 12:05:19 +0200569 struct stream_interface *si = appctx->owner;
Willy Tarreau87b09662015-04-03 00:22:06 +0200570 struct stream *s = si_strm(si);
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200571 struct peers *curpeers = strm_fe(s)->parent;
Emeric Brun80527f52017-06-19 17:46:37 +0200572 struct peer *curpeer = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +0200573 int reql = 0;
574 int repl = 0;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200575 size_t proto_len = strlen(PEER_SESSION_PROTO_NAME);
576 unsigned int maj_ver, min_ver;
Emeric Brun2b920a12010-09-23 18:30:22 +0200577
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100578 /* Check if the input buffer is avalaible. */
579 if (si_ic(si)->buf->size == 0)
580 goto full;
581
Emeric Brun2b920a12010-09-23 18:30:22 +0200582 while (1) {
583switchstate:
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200584 maj_ver = min_ver = (unsigned int)-1;
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100585 switch(appctx->st0) {
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100586 case PEER_SESS_ST_ACCEPT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100587 appctx->ctx.peers.ptr = NULL;
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100588 appctx->st0 = PEER_SESS_ST_GETVERSION;
Emeric Brun2b920a12010-09-23 18:30:22 +0200589 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100590 case PEER_SESS_ST_GETVERSION:
Willy Tarreau06d80a92017-10-19 14:32:15 +0200591 reql = co_getline(si_oc(si), trash.str, trash.size);
Emeric Brun2b920a12010-09-23 18:30:22 +0200592 if (reql <= 0) { /* closed or EOL not found */
593 if (reql == 0)
594 goto out;
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100595 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +0200596 goto switchstate;
597 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100598 if (trash.str[reql-1] != '\n') {
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100599 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +0200600 goto switchstate;
601 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100602 else if (reql > 1 && (trash.str[reql-2] == '\r'))
603 trash.str[reql-2] = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +0200604 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100605 trash.str[reql-1] = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +0200606
Willy Tarreau06d80a92017-10-19 14:32:15 +0200607 co_skip(si_oc(si), reql);
Emeric Brun2b920a12010-09-23 18:30:22 +0200608
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200609 /* test protocol */
610 if (strncmp(PEER_SESSION_PROTO_NAME " ", trash.str, proto_len + 1) != 0) {
611 appctx->st0 = PEER_SESS_ST_EXIT;
612 appctx->st1 = PEER_SESS_SC_ERRPROTO;
613 goto switchstate;
614 }
615 if (peer_get_version(trash.str + proto_len + 1, &maj_ver, &min_ver) == -1 ||
616 maj_ver != PEER_MAJOR_VER || min_ver > PEER_MINOR_VER) {
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100617 appctx->st0 = PEER_SESS_ST_EXIT;
618 appctx->st1 = PEER_SESS_SC_ERRVERSION;
Emeric Brun2b920a12010-09-23 18:30:22 +0200619 goto switchstate;
620 }
621
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100622 appctx->st0 = PEER_SESS_ST_GETHOST;
Emeric Brun2b920a12010-09-23 18:30:22 +0200623 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100624 case PEER_SESS_ST_GETHOST:
Willy Tarreau06d80a92017-10-19 14:32:15 +0200625 reql = co_getline(si_oc(si), trash.str, trash.size);
Emeric Brun2b920a12010-09-23 18:30:22 +0200626 if (reql <= 0) { /* closed or EOL not found */
627 if (reql == 0)
628 goto out;
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100629 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +0200630 goto switchstate;
631 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100632 if (trash.str[reql-1] != '\n') {
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100633 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +0200634 goto switchstate;
635 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100636 else if (reql > 1 && (trash.str[reql-2] == '\r'))
637 trash.str[reql-2] = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +0200638 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100639 trash.str[reql-1] = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +0200640
Willy Tarreau06d80a92017-10-19 14:32:15 +0200641 co_skip(si_oc(si), reql);
Emeric Brun2b920a12010-09-23 18:30:22 +0200642
643 /* test hostname match */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100644 if (strcmp(localpeer, trash.str) != 0) {
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100645 appctx->st0 = PEER_SESS_ST_EXIT;
646 appctx->st1 = PEER_SESS_SC_ERRHOST;
Emeric Brun2b920a12010-09-23 18:30:22 +0200647 goto switchstate;
648 }
649
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100650 appctx->st0 = PEER_SESS_ST_GETPEER;
Emeric Brun2b920a12010-09-23 18:30:22 +0200651 /* fall through */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100652 case PEER_SESS_ST_GETPEER: {
Emeric Brun2b920a12010-09-23 18:30:22 +0200653 char *p;
Willy Tarreau06d80a92017-10-19 14:32:15 +0200654 reql = co_getline(si_oc(si), trash.str, trash.size);
Emeric Brun2b920a12010-09-23 18:30:22 +0200655 if (reql <= 0) { /* closed or EOL not found */
656 if (reql == 0)
657 goto out;
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100658 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +0200659 goto switchstate;
660 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100661 if (trash.str[reql-1] != '\n') {
Emeric Brun2b920a12010-09-23 18:30:22 +0200662 /* Incomplete line, we quit */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100663 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +0200664 goto switchstate;
665 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100666 else if (reql > 1 && (trash.str[reql-2] == '\r'))
667 trash.str[reql-2] = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +0200668 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100669 trash.str[reql-1] = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +0200670
Willy Tarreau06d80a92017-10-19 14:32:15 +0200671 co_skip(si_oc(si), reql);
Emeric Brun2b920a12010-09-23 18:30:22 +0200672
Emeric Brunb3971ab2015-05-12 18:49:09 +0200673 /* parse line "<peer name> <pid> <relative_pid>" */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100674 p = strchr(trash.str, ' ');
Emeric Brun2b920a12010-09-23 18:30:22 +0200675 if (!p) {
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100676 appctx->st0 = PEER_SESS_ST_EXIT;
677 appctx->st1 = PEER_SESS_SC_ERRPROTO;
Emeric Brun2b920a12010-09-23 18:30:22 +0200678 goto switchstate;
679 }
680 *p = 0;
681
682 /* lookup known peer */
683 for (curpeer = curpeers->remote; curpeer; curpeer = curpeer->next) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100684 if (strcmp(curpeer->id, trash.str) == 0)
Emeric Brun2b920a12010-09-23 18:30:22 +0200685 break;
686 }
687
688 /* if unknown peer */
689 if (!curpeer) {
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100690 appctx->st0 = PEER_SESS_ST_EXIT;
691 appctx->st1 = PEER_SESS_SC_ERRPEER;
Emeric Brun2b920a12010-09-23 18:30:22 +0200692 goto switchstate;
693 }
Emeric Brun2b920a12010-09-23 18:30:22 +0200694
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100695 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Willy Tarreau9df94c22016-10-31 18:42:52 +0100696 if (curpeer->appctx && curpeer->appctx != appctx) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200697 if (curpeer->local) {
698 /* Local connection, reply a retry */
699 appctx->st0 = PEER_SESS_ST_EXIT;
700 appctx->st1 = PEER_SESS_SC_TRYAGAIN;
701 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +0200702 }
Emeric Brun80527f52017-06-19 17:46:37 +0200703
704 /* we're killing a connection, we must apply a random delay before
705 * retrying otherwise the other end will do the same and we can loop
706 * for a while.
707 */
708 curpeer->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + random() % 2000));
Willy Tarreau81bc3b02016-10-31 17:37:39 +0100709 peer_session_forceshutdown(curpeer->appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +0200710 }
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200711 if (maj_ver != (unsigned int)-1 && min_ver != (unsigned int)-1) {
712 if (min_ver == PEER_DWNGRD_MINOR_VER) {
713 curpeer->flags |= PEER_F_DWNGRD;
714 }
715 else {
716 curpeer->flags &= ~PEER_F_DWNGRD;
717 }
718 }
Emeric Brunb3971ab2015-05-12 18:49:09 +0200719 curpeer->appctx = appctx;
720 appctx->ctx.peers.ptr = curpeer;
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100721 appctx->st0 = PEER_SESS_ST_SENDSUCCESS;
Emeric Brun2b920a12010-09-23 18:30:22 +0200722 /* fall through */
723 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100724 case PEER_SESS_ST_SENDSUCCESS: {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200725 struct shared_table *st;
Emeric Brun2b920a12010-09-23 18:30:22 +0200726
Emeric Brun80527f52017-06-19 17:46:37 +0200727 if (!curpeer) {
728 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100729 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +0200730 if (curpeer->appctx != appctx) {
731 appctx->st0 = PEER_SESS_ST_END;
732 goto switchstate;
733 }
734 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100735 repl = snprintf(trash.str, trash.size, "%d\n", PEER_SESS_SC_SUCCESSCODE);
Willy Tarreau06d80a92017-10-19 14:32:15 +0200736 repl = ci_putblk(si_ic(si), trash.str, repl);
Emeric Brun2b920a12010-09-23 18:30:22 +0200737 if (repl <= 0) {
738 if (repl == -1)
Willy Tarreaubc18da12015-03-13 14:00:47 +0100739 goto full;
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100740 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +0200741 goto switchstate;
742 }
743
744 /* Register status code */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200745 curpeer->statuscode = PEER_SESS_SC_SUCCESSCODE;
Emeric Brun2b920a12010-09-23 18:30:22 +0200746
747 /* Awake main task */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200748 task_wakeup(curpeers->sync_task, TASK_WOKEN_MSG);
Emeric Brun2b920a12010-09-23 18:30:22 +0200749
750 /* Init confirm counter */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200751 curpeer->confirm = 0;
752
753 /* Init cursors */
754 for (st = curpeer->tables; st ; st = st->next) {
755 st->last_get = st->last_acked = 0;
756 st->teaching_origin = st->last_pushed = st->update;
757 }
Emeric Brun2b920a12010-09-23 18:30:22 +0200758
759 /* reset teaching and learning flags to 0 */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200760 curpeer->flags &= PEER_TEACH_RESET;
761 curpeer->flags &= PEER_LEARN_RESET;
Emeric Brun2b920a12010-09-23 18:30:22 +0200762
763 /* if current peer is local */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200764 if (curpeer->local) {
765 /* if current host need resyncfrom local and no process assined */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200766 if ((curpeers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL &&
767 !(curpeers->flags & PEERS_F_RESYNC_ASSIGN)) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200768 /* assign local peer for a lesson, consider lesson already requested */
769 curpeer->flags |= PEER_F_LEARN_ASSIGN;
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200770 curpeers->flags |= (PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200771 }
Emeric Brun2b920a12010-09-23 18:30:22 +0200772
Emeric Brunb3971ab2015-05-12 18:49:09 +0200773 }
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200774 else if ((curpeers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
775 !(curpeers->flags & PEERS_F_RESYNC_ASSIGN)) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200776 /* assign peer for a lesson */
777 curpeer->flags |= PEER_F_LEARN_ASSIGN;
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200778 curpeers->flags |= PEERS_F_RESYNC_ASSIGN;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200779 }
780
781
Emeric Brun2b920a12010-09-23 18:30:22 +0200782 /* switch to waiting message state */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100783 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +0200784 goto switchstate;
785 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100786 case PEER_SESS_ST_CONNECT: {
Emeric Brun80527f52017-06-19 17:46:37 +0200787
788 if (!curpeer) {
789 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100790 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +0200791 if (curpeer->appctx != appctx) {
792 appctx->st0 = PEER_SESS_ST_END;
793 goto switchstate;
794 }
795 }
Emeric Brun2b920a12010-09-23 18:30:22 +0200796
797 /* Send headers */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100798 repl = snprintf(trash.str, trash.size,
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200799 PEER_SESSION_PROTO_NAME " %u.%u\n%s\n%s %d %d\n",
800 PEER_MAJOR_VER,
801 (curpeer->flags & PEER_F_DWNGRD) ? PEER_DWNGRD_MINOR_VER : PEER_MINOR_VER,
Emeric Brunb3971ab2015-05-12 18:49:09 +0200802 curpeer->id,
Emeric Brun2b920a12010-09-23 18:30:22 +0200803 localpeer,
Willy Tarreau7b77c9f2012-01-07 22:52:12 +0100804 (int)getpid(),
Emeric Brunb3971ab2015-05-12 18:49:09 +0200805 relative_pid);
Emeric Brun2b920a12010-09-23 18:30:22 +0200806
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100807 if (repl >= trash.size) {
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100808 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +0200809 goto switchstate;
810 }
811
Willy Tarreau06d80a92017-10-19 14:32:15 +0200812 repl = ci_putblk(si_ic(si), trash.str, repl);
Emeric Brun2b920a12010-09-23 18:30:22 +0200813 if (repl <= 0) {
814 if (repl == -1)
Willy Tarreaubc18da12015-03-13 14:00:47 +0100815 goto full;
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100816 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +0200817 goto switchstate;
818 }
819
820 /* switch to the waiting statuscode state */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100821 appctx->st0 = PEER_SESS_ST_GETSTATUS;
Emeric Brun2b920a12010-09-23 18:30:22 +0200822 /* fall through */
823 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100824 case PEER_SESS_ST_GETSTATUS: {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200825 struct shared_table *st;
Emeric Brun2b920a12010-09-23 18:30:22 +0200826
Emeric Brun80527f52017-06-19 17:46:37 +0200827 if (!curpeer) {
828 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100829 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +0200830 if (curpeer->appctx != appctx) {
831 appctx->st0 = PEER_SESS_ST_END;
832 goto switchstate;
833 }
834 }
835
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100836 if (si_ic(si)->flags & CF_WRITE_PARTIAL)
Emeric Brunb3971ab2015-05-12 18:49:09 +0200837 curpeer->statuscode = PEER_SESS_SC_CONNECTEDCODE;
Emeric Brun2b920a12010-09-23 18:30:22 +0200838
Willy Tarreau06d80a92017-10-19 14:32:15 +0200839 reql = co_getline(si_oc(si), trash.str, trash.size);
Emeric Brun2b920a12010-09-23 18:30:22 +0200840 if (reql <= 0) { /* closed or EOL not found */
841 if (reql == 0)
842 goto out;
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100843 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +0200844 goto switchstate;
845 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100846 if (trash.str[reql-1] != '\n') {
Emeric Brun2b920a12010-09-23 18:30:22 +0200847 /* Incomplete line, we quit */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100848 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +0200849 goto switchstate;
850 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100851 else if (reql > 1 && (trash.str[reql-2] == '\r'))
852 trash.str[reql-2] = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +0200853 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100854 trash.str[reql-1] = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +0200855
Willy Tarreau06d80a92017-10-19 14:32:15 +0200856 co_skip(si_oc(si), reql);
Emeric Brun2b920a12010-09-23 18:30:22 +0200857
858 /* Register status code */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200859 curpeer->statuscode = atoi(trash.str);
Emeric Brun2b920a12010-09-23 18:30:22 +0200860
861 /* Awake main task */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200862 task_wakeup(curpeers->sync_task, TASK_WOKEN_MSG);
Emeric Brun2b920a12010-09-23 18:30:22 +0200863
864 /* If status code is success */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200865 if (curpeer->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Emeric Brun2b920a12010-09-23 18:30:22 +0200866 /* Init cursors */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200867 for (st = curpeer->tables; st ; st = st->next) {
868 st->last_get = st->last_acked = 0;
869 st->teaching_origin = st->last_pushed = st->update;
870 }
Emeric Brun2b920a12010-09-23 18:30:22 +0200871
872 /* Init confirm counter */
Emeric Brunb3971ab2015-05-12 18:49:09 +0200873 curpeer->confirm = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +0200874
Emeric Brunb3971ab2015-05-12 18:49:09 +0200875 /* reset teaching and learning flags to 0 */
876 curpeer->flags &= PEER_TEACH_RESET;
877 curpeer->flags &= PEER_LEARN_RESET;
Emeric Brun2b920a12010-09-23 18:30:22 +0200878
Emeric Brunb3971ab2015-05-12 18:49:09 +0200879 /* If current peer is local */
880 if (curpeer->local) {
881 /* flag to start to teach lesson */
882 curpeer->flags |= PEER_F_TEACH_PROCESS;
Emeric Brun2b920a12010-09-23 18:30:22 +0200883
Emeric Brunb3971ab2015-05-12 18:49:09 +0200884 }
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200885 else if ((curpeers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE &&
886 !(curpeers->flags & PEERS_F_RESYNC_ASSIGN)) {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200887 /* If peer is remote and resync from remote is needed,
888 and no peer currently assigned */
Emeric Brun2b920a12010-09-23 18:30:22 +0200889
Emeric Brunb3971ab2015-05-12 18:49:09 +0200890 /* assign peer for a lesson */
891 curpeer->flags |= PEER_F_LEARN_ASSIGN;
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200892 curpeers->flags |= PEERS_F_RESYNC_ASSIGN;
Emeric Brun2b920a12010-09-23 18:30:22 +0200893 }
894
895 }
896 else {
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +0200897 if (curpeer->statuscode == PEER_SESS_SC_ERRVERSION)
898 curpeer->flags |= PEER_F_DWNGRD;
Emeric Brun2b920a12010-09-23 18:30:22 +0200899 /* Status code is not success, abort */
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100900 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +0200901 goto switchstate;
902 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100903 appctx->st0 = PEER_SESS_ST_WAITMSG;
Emeric Brun2b920a12010-09-23 18:30:22 +0200904 /* fall through */
905 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +0100906 case PEER_SESS_ST_WAITMSG: {
Willy Tarreau9d9179b2013-04-11 16:56:44 +0200907 struct stksess *ts, *newts = NULL;
Emeric Brunb3971ab2015-05-12 18:49:09 +0200908 uint32_t msg_len = 0;
909 char *msg_cur = trash.str;
910 char *msg_end = trash.str;
911 unsigned char msg_head[7];
Emeric Brun2b920a12010-09-23 18:30:22 +0200912 int totl = 0;
913
Emeric Brun80527f52017-06-19 17:46:37 +0200914 if (!curpeer) {
915 curpeer = appctx->ctx.peers.ptr;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100916 HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +0200917 if (curpeer->appctx != appctx) {
918 appctx->st0 = PEER_SESS_ST_END;
919 goto switchstate;
920 }
921 }
922
Willy Tarreau06d80a92017-10-19 14:32:15 +0200923 reql = co_getblk(si_oc(si), (char *)msg_head, 2*sizeof(unsigned char), totl);
Willy Tarreau72d6c162013-04-11 16:14:13 +0200924 if (reql <= 0) /* closed or EOL not found */
925 goto incomplete;
926
Emeric Brun2b920a12010-09-23 18:30:22 +0200927 totl += reql;
928
Emeric Brunb3971ab2015-05-12 18:49:09 +0200929 if (msg_head[1] >= 128) {
930 /* Read and Decode message length */
Willy Tarreau06d80a92017-10-19 14:32:15 +0200931 reql = co_getblk(si_oc(si), (char *)&msg_head[2], sizeof(unsigned char), totl);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200932 if (reql <= 0) /* closed */
933 goto incomplete;
Emeric Brun2b920a12010-09-23 18:30:22 +0200934
Emeric Brunb3971ab2015-05-12 18:49:09 +0200935 totl += reql;
936
937 if (msg_head[2] < 240) {
938 msg_len = msg_head[2];
Emeric Brun2b920a12010-09-23 18:30:22 +0200939 }
940 else {
Emeric Brunb3971ab2015-05-12 18:49:09 +0200941 int i;
942 char *cur;
943 char *end;
Willy Tarreau72d6c162013-04-11 16:14:13 +0200944
Emeric Brunb3971ab2015-05-12 18:49:09 +0200945 for (i = 3 ; i < sizeof(msg_head) ; i++) {
Willy Tarreau06d80a92017-10-19 14:32:15 +0200946 reql = co_getblk(si_oc(si), (char *)&msg_head[i], sizeof(char), totl);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200947 if (reql <= 0) /* closed */
948 goto incomplete;
949
950 totl += reql;
951
952 if (!(msg_head[i] & 0x80))
953 break;
954 }
955
956 if (i == sizeof(msg_head)) {
957 /* malformed message */
958 appctx->st0 = PEER_SESS_ST_ERRPROTO;
959 goto switchstate;
960
961 }
962 end = (char *)msg_head + sizeof(msg_head);
963 cur = (char *)&msg_head[2];
964 msg_len = intdecode(&cur, end);
965 if (!cur) {
966 /* malformed message */
967 appctx->st0 = PEER_SESS_ST_ERRPROTO;
968 goto switchstate;
969 }
Emeric Brun2b920a12010-09-23 18:30:22 +0200970 }
971
Willy Tarreau86a446e2013-11-25 23:02:37 +0100972
Emeric Brunb3971ab2015-05-12 18:49:09 +0200973 /* Read message content */
974 if (msg_len) {
975 if (msg_len > trash.size) {
976 /* Status code is not success, abort */
977 appctx->st0 = PEER_SESS_ST_ERRSIZE;
978 goto switchstate;
979 }
Willy Tarreau72d6c162013-04-11 16:14:13 +0200980
Willy Tarreau06d80a92017-10-19 14:32:15 +0200981 reql = co_getblk(si_oc(si), trash.str, msg_len, totl);
Emeric Brunb3971ab2015-05-12 18:49:09 +0200982 if (reql <= 0) /* closed */
983 goto incomplete;
Emeric Brun2b920a12010-09-23 18:30:22 +0200984 totl += reql;
Willy Tarreau86a446e2013-11-25 23:02:37 +0100985
Emeric Brunb3971ab2015-05-12 18:49:09 +0200986 msg_end += msg_len;
987 }
988 }
Willy Tarreau86a446e2013-11-25 23:02:37 +0100989
Emeric Brunb3971ab2015-05-12 18:49:09 +0200990 if (msg_head[0] == PEER_MSG_CLASS_CONTROL) {
991 if (msg_head[1] == PEER_MSG_CTRL_RESYNCREQ) {
992 struct shared_table *st;
993 /* Reset message: remote need resync */
994
995 /* prepare tables fot a global push */
996 for (st = curpeer->tables; st; st = st->next) {
997 st->teaching_origin = st->last_pushed = st->table->update;
998 st->flags = 0;
Willy Tarreau86a446e2013-11-25 23:02:37 +0100999 }
Willy Tarreau72d6c162013-04-11 16:14:13 +02001000
Emeric Brunb3971ab2015-05-12 18:49:09 +02001001 /* reset teaching flags to 0 */
1002 curpeer->flags &= PEER_TEACH_RESET;
Willy Tarreau9d9179b2013-04-11 16:56:44 +02001003
Emeric Brunb3971ab2015-05-12 18:49:09 +02001004 /* flag to start to teach lesson */
1005 curpeer->flags |= PEER_F_TEACH_PROCESS;
1006
1007
1008 }
1009 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCFINISHED) {
1010
1011 if (curpeer->flags & PEER_F_LEARN_ASSIGN) {
1012 curpeer->flags &= ~PEER_F_LEARN_ASSIGN;
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001013 curpeers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
1014 curpeers->flags |= (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE);
Willy Tarreau86a446e2013-11-25 23:02:37 +01001015 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001016 curpeer->confirm++;
Emeric Brun2b920a12010-09-23 18:30:22 +02001017 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001018 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCPARTIAL) {
1019
1020 if (curpeer->flags & PEER_F_LEARN_ASSIGN) {
1021 curpeer->flags &= ~PEER_F_LEARN_ASSIGN;
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001022 curpeers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001023
1024 curpeer->flags |= PEER_F_LEARN_NOTUP2DATE;
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001025 curpeers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000));
1026 task_wakeup(curpeers->sync_task, TASK_WOKEN_MSG);
Cyril Bonté9a60ff92014-02-16 01:07:07 +01001027 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001028 curpeer->confirm++;
Emeric Brun2b920a12010-09-23 18:30:22 +02001029 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001030 else if (msg_head[1] == PEER_MSG_CTRL_RESYNCCONFIRM) {
Emeric Brun597b26e2016-08-12 11:23:31 +02001031 struct shared_table *st;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001032
1033 /* If stopping state */
1034 if (stopping) {
1035 /* Close session, push resync no more needed */
1036 curpeer->flags |= PEER_F_TEACH_COMPLETE;
1037 appctx->st0 = PEER_SESS_ST_END;
1038 goto switchstate;
1039 }
Emeric Brun597b26e2016-08-12 11:23:31 +02001040 for (st = curpeer->tables; st; st = st->next) {
1041 st->update = st->last_pushed = st->teaching_origin;
1042 st->flags = 0;
1043 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001044
1045 /* reset teaching flags to 0 */
1046 curpeer->flags &= PEER_TEACH_RESET;
Emeric Brun2b920a12010-09-23 18:30:22 +02001047 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001048 }
1049 else if (msg_head[0] == PEER_MSG_CLASS_STICKTABLE) {
1050 if (msg_head[1] == PEER_MSG_STKT_DEFINE) {
1051 int table_id_len;
1052 struct shared_table *st;
1053 int table_type;
1054 int table_keylen;
1055 int table_id;
1056 uint64_t table_data;
Emeric Brun2b920a12010-09-23 18:30:22 +02001057
Emeric Brunb3971ab2015-05-12 18:49:09 +02001058 table_id = intdecode(&msg_cur, msg_end);
1059 if (!msg_cur) {
1060 /* malformed message */
1061 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1062 goto switchstate;
1063 }
Willy Tarreau72d6c162013-04-11 16:14:13 +02001064
Emeric Brunb3971ab2015-05-12 18:49:09 +02001065 table_id_len = intdecode(&msg_cur, msg_end);
1066 if (!msg_cur) {
1067 /* malformed message */
1068 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1069 goto switchstate;
1070 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001071
Emeric Brunb3971ab2015-05-12 18:49:09 +02001072 curpeer->remote_table = NULL;
1073 if (!table_id_len || (msg_cur + table_id_len) >= msg_end) {
1074 /* malformed message */
1075 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1076 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02001077 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001078
Emeric Brunb3971ab2015-05-12 18:49:09 +02001079 for (st = curpeer->tables; st; st = st->next) {
1080 /* Reset IDs */
1081 if (st->remote_id == table_id)
1082 st->remote_id = 0;
Willy Tarreau9d9179b2013-04-11 16:56:44 +02001083
Emeric Brunb3971ab2015-05-12 18:49:09 +02001084 if (!curpeer->remote_table
1085 && (table_id_len == strlen(st->table->id))
1086 && (memcmp(st->table->id, msg_cur, table_id_len) == 0)) {
1087 curpeer->remote_table = st;
Emeric Brun2b920a12010-09-23 18:30:22 +02001088 }
1089 }
1090
Emeric Brunb3971ab2015-05-12 18:49:09 +02001091 if (!curpeer->remote_table) {
1092 goto ignore_msg;
1093 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001094
Emeric Brunb3971ab2015-05-12 18:49:09 +02001095 msg_cur += table_id_len;
1096 if (msg_cur >= msg_end) {
1097 /* malformed message */
1098 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1099 goto switchstate;
1100 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001101
Emeric Brunb3971ab2015-05-12 18:49:09 +02001102 table_type = intdecode(&msg_cur, msg_end);
1103 if (!msg_cur) {
1104 /* malformed message */
1105 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1106 goto switchstate;
1107 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001108
Emeric Brunb3971ab2015-05-12 18:49:09 +02001109 table_keylen = intdecode(&msg_cur, msg_end);
1110 if (!msg_cur) {
1111 /* malformed message */
1112 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1113 goto switchstate;
1114 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001115
Emeric Brunb3971ab2015-05-12 18:49:09 +02001116 table_data = intdecode(&msg_cur, msg_end);
1117 if (!msg_cur) {
1118 /* malformed message */
1119 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1120 goto switchstate;
1121 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001122
Emeric Brunb3971ab2015-05-12 18:49:09 +02001123 if (curpeer->remote_table->table->type != table_type
1124 || curpeer->remote_table->table->key_size != table_keylen) {
1125 curpeer->remote_table = NULL;
1126 goto ignore_msg;
1127 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001128
Emeric Brunb3971ab2015-05-12 18:49:09 +02001129 curpeer->remote_table->remote_data = table_data;
1130 curpeer->remote_table->remote_id = table_id;
Emeric Brun2b920a12010-09-23 18:30:22 +02001131 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001132 else if (msg_head[1] == PEER_MSG_STKT_SWITCH) {
1133 struct shared_table *st;
1134 int table_id;
Emeric Brun2b920a12010-09-23 18:30:22 +02001135
Emeric Brunb3971ab2015-05-12 18:49:09 +02001136 table_id = intdecode(&msg_cur, msg_end);
1137 if (!msg_cur) {
1138 /* malformed message */
1139 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1140 goto switchstate;
1141 }
1142 curpeer->remote_table = NULL;
1143 for (st = curpeer->tables; st; st = st->next) {
1144 if (st->remote_id == table_id) {
1145 curpeer->remote_table = st;
1146 break;
1147 }
1148 }
1149
Emeric Brun2b920a12010-09-23 18:30:22 +02001150 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001151 else if (msg_head[1] == PEER_MSG_STKT_UPDATE
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02001152 || msg_head[1] == PEER_MSG_STKT_INCUPDATE
1153 || msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED
1154 || msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02001155 struct shared_table *st = curpeer->remote_table;
1156 uint32_t update;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02001157 int expire;
Emeric Brun94900952015-06-11 18:25:54 +02001158 unsigned int data_type;
1159 void *data_ptr;
Emeric Brun2b920a12010-09-23 18:30:22 +02001160
Emeric Brunb3971ab2015-05-12 18:49:09 +02001161 /* Here we have data message */
1162 if (!st)
1163 goto ignore_msg;
Emeric Brun2b920a12010-09-23 18:30:22 +02001164
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02001165 expire = MS_TO_TICKS(st->table->expire);
1166
1167 if (msg_head[1] == PEER_MSG_STKT_UPDATE ||
1168 msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02001169 if (msg_len < sizeof(update)) {
1170 /* malformed message */
1171 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1172 goto switchstate;
1173 }
1174 memcpy(&update, msg_cur, sizeof(update));
1175 msg_cur += sizeof(update);
1176 st->last_get = htonl(update);
1177 }
1178 else {
1179 st->last_get++;
1180 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001181
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02001182 if (msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED ||
1183 msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED) {
1184 size_t expire_sz = sizeof expire;
1185
1186 if (msg_cur + expire_sz > msg_end) {
1187 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1188 goto switchstate;
1189 }
1190 memcpy(&expire, msg_cur, expire_sz);
1191 msg_cur += expire_sz;
1192 expire = ntohl(expire);
1193 }
1194
Emeric Brunb3971ab2015-05-12 18:49:09 +02001195 newts = stksess_new(st->table, NULL);
1196 if (!newts)
1197 goto ignore_msg;
Emeric Brun819fc6f2017-06-13 19:37:32 +02001198 /* Force expiratiion to remote date
1199 in case of first insert */
1200 newts->expire = tick_add(now_ms, expire);
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +02001201 if (st->table->type == SMP_T_STR) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02001202 unsigned int to_read, to_store;
Emeric Brun2b920a12010-09-23 18:30:22 +02001203
Emeric Brunb3971ab2015-05-12 18:49:09 +02001204 to_read = intdecode(&msg_cur, msg_end);
1205 if (!msg_cur) {
1206 /* malformed message */
1207 stksess_free(st->table, newts);
1208 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1209 goto switchstate;
1210 }
1211 to_store = MIN(to_read, st->table->key_size - 1);
1212 if (msg_cur + to_store > msg_end) {
1213 /* malformed message */
1214 stksess_free(st->table, newts);
1215 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1216 goto switchstate;
1217 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001218
Emeric Brunb3971ab2015-05-12 18:49:09 +02001219 memcpy(newts->key.key, msg_cur, to_store);
1220 newts->key.key[to_store] = 0;
1221 msg_cur += to_read;
1222 }
Thierry FOURNIER5d24ebc2015-07-24 08:46:42 +02001223 else if (st->table->type == SMP_T_SINT) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02001224 unsigned int netinteger;
Willy Tarreau72d6c162013-04-11 16:14:13 +02001225
Emeric Brunb3971ab2015-05-12 18:49:09 +02001226 if (msg_cur + sizeof(netinteger) > msg_end) {
1227 /* malformed message */
1228 stksess_free(st->table, newts);
1229 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1230 goto switchstate;
1231 }
1232 memcpy(&netinteger, msg_cur, sizeof(netinteger));
1233 netinteger = ntohl(netinteger);
1234 memcpy(newts->key.key, &netinteger, sizeof(netinteger));
1235 msg_cur += sizeof(netinteger);
1236 }
1237 else {
1238 if (msg_cur + st->table->key_size > msg_end) {
1239 /* malformed message */
1240 stksess_free(st->table, newts);
1241 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1242 goto switchstate;
1243 }
1244 memcpy(newts->key.key, msg_cur, st->table->key_size);
1245 msg_cur += st->table->key_size;
1246 }
1247
1248 /* lookup for existing entry */
Emeric Brun819fc6f2017-06-13 19:37:32 +02001249 ts = stktable_set_entry(st->table, newts);
1250 if (ts != newts) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02001251 stksess_free(st->table, newts);
1252 newts = NULL;
1253 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001254
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001255 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001256
Emeric Brun94900952015-06-11 18:25:54 +02001257 for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02001258
Emeric Brun94900952015-06-11 18:25:54 +02001259 if ((1 << data_type) & st->remote_data) {
1260 switch (stktable_data_types[data_type].std_type) {
1261 case STD_T_SINT: {
1262 int data;
1263
1264 data = intdecode(&msg_cur, msg_end);
1265 if (!msg_cur) {
1266 /* malformed message */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001267 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001268 stktable_touch_remote(st->table, ts, 1);
Emeric Brun94900952015-06-11 18:25:54 +02001269 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1270 goto switchstate;
1271 }
1272
1273 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1274 if (data_ptr)
1275 stktable_data_cast(data_ptr, std_t_sint) = data;
1276 break;
1277 }
1278 case STD_T_UINT: {
1279 unsigned int data;
1280
1281 data = intdecode(&msg_cur, msg_end);
1282 if (!msg_cur) {
1283 /* malformed message */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001284 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001285 stktable_touch_remote(st->table, ts, 1);
Emeric Brun94900952015-06-11 18:25:54 +02001286 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1287 goto switchstate;
1288 }
1289
1290 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1291 if (data_ptr)
1292 stktable_data_cast(data_ptr, std_t_uint) = data;
1293 break;
1294 }
1295 case STD_T_ULL: {
1296 unsigned long long data;
1297
1298 data = intdecode(&msg_cur, msg_end);
1299 if (!msg_cur) {
1300 /* malformed message */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001301 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001302 stktable_touch_remote(st->table, ts, 1);
Emeric Brun94900952015-06-11 18:25:54 +02001303 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1304 goto switchstate;
1305 }
1306
1307 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1308 if (data_ptr)
1309 stktable_data_cast(data_ptr, std_t_ull) = data;
1310 break;
1311 }
1312 case STD_T_FRQP: {
1313 struct freq_ctr_period data;
1314
Emeric Brunf2fc1fd2017-11-02 17:32:43 +01001315 /* First bit is reserved for the freq_ctr_period lock
1316 Note: here we're still protected by the stksess lock
1317 so we don't need to update the update the freq_ctr_period
1318 using its internal lock */
1319
1320 data.curr_tick = tick_add(now_ms, -intdecode(&msg_cur, msg_end)) & ~0x1;
Emeric Brun94900952015-06-11 18:25:54 +02001321 if (!msg_cur) {
1322 /* malformed message */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001323 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001324 stktable_touch_remote(st->table, ts, 1);
Emeric Brun94900952015-06-11 18:25:54 +02001325 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1326 goto switchstate;
1327 }
1328 data.curr_ctr = intdecode(&msg_cur, msg_end);
1329 if (!msg_cur) {
1330 /* malformed message */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001331 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001332 stktable_touch_remote(st->table, ts, 1);
Emeric Brun94900952015-06-11 18:25:54 +02001333 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1334 goto switchstate;
1335 }
1336 data.prev_ctr = intdecode(&msg_cur, msg_end);
1337 if (!msg_cur) {
1338 /* malformed message */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001339 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001340 stktable_touch_remote(st->table, ts, 1);
Emeric Brun94900952015-06-11 18:25:54 +02001341 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1342 goto switchstate;
1343 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001344
Emeric Brun94900952015-06-11 18:25:54 +02001345 data_ptr = stktable_data_ptr(st->table, ts, data_type);
1346 if (data_ptr)
1347 stktable_data_cast(data_ptr, std_t_frqp) = data;
1348 break;
1349 }
1350 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001351 }
1352 }
Emeric Brun819fc6f2017-06-13 19:37:32 +02001353
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001354 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001355 stktable_touch_remote(st->table, ts, 1);
1356
Emeric Brunb3971ab2015-05-12 18:49:09 +02001357 }
1358 else if (msg_head[1] == PEER_MSG_STKT_ACK) {
1359 /* ack message */
1360 uint32_t table_id ;
1361 uint32_t update;
1362 struct shared_table *st;
1363
1364 table_id = intdecode(&msg_cur, msg_end);
1365 if (!msg_cur || (msg_cur + sizeof(update) > msg_end)) {
1366 /* malformed message */
1367 appctx->st0 = PEER_SESS_ST_ERRPROTO;
1368 goto switchstate;
1369 }
1370 memcpy(&update, msg_cur, sizeof(update));
1371 update = ntohl(update);
Emeric Brun2b920a12010-09-23 18:30:22 +02001372
Emeric Brunb3971ab2015-05-12 18:49:09 +02001373 for (st = curpeer->tables; st; st = st->next) {
1374 if (st->local_id == table_id) {
1375 st->update = update;
1376 break;
1377 }
1378 }
1379 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001380 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001381 else if (msg_head[0] == PEER_MSG_CLASS_RESERVED) {
1382 appctx->st0 = PEER_SESS_ST_ERRPROTO;
Emeric Brun2b920a12010-09-23 18:30:22 +02001383 goto switchstate;
1384 }
1385
Emeric Brunb3971ab2015-05-12 18:49:09 +02001386ignore_msg:
Emeric Brun2b920a12010-09-23 18:30:22 +02001387 /* skip consumed message */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001388 co_skip(si_oc(si), totl);
Emeric Brun2b920a12010-09-23 18:30:22 +02001389 /* loop on that state to peek next message */
Willy Tarreau72d6c162013-04-11 16:14:13 +02001390 goto switchstate;
1391
Emeric Brun2b920a12010-09-23 18:30:22 +02001392incomplete:
Willy Tarreau06d80a92017-10-19 14:32:15 +02001393 /* we get here when a co_getblk() returns <= 0 in reql */
Willy Tarreau9d9179b2013-04-11 16:56:44 +02001394
Willy Tarreau72d6c162013-04-11 16:14:13 +02001395 if (reql < 0) {
1396 /* there was an error */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01001397 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau72d6c162013-04-11 16:14:13 +02001398 goto switchstate;
1399 }
1400
Emeric Brun2b920a12010-09-23 18:30:22 +02001401
Emeric Brun2b920a12010-09-23 18:30:22 +02001402
Emeric Brunb3971ab2015-05-12 18:49:09 +02001403
Emeric Brun2b920a12010-09-23 18:30:22 +02001404 /* Need to request a resync */
Emeric Brunb3971ab2015-05-12 18:49:09 +02001405 if ((curpeer->flags & PEER_F_LEARN_ASSIGN) &&
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001406 (curpeers->flags & PEERS_F_RESYNC_ASSIGN) &&
1407 !(curpeers->flags & PEERS_F_RESYNC_PROCESS)) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02001408 unsigned char msg[2];
Emeric Brun2b920a12010-09-23 18:30:22 +02001409
Emeric Brunb3971ab2015-05-12 18:49:09 +02001410 /* Current peer was elected to request a resync */
1411 msg[0] = PEER_MSG_CLASS_CONTROL;
1412 msg[1] = PEER_MSG_CTRL_RESYNCREQ;
Emeric Brun2b920a12010-09-23 18:30:22 +02001413
Emeric Brunb3971ab2015-05-12 18:49:09 +02001414 /* message to buffer */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001415 repl = ci_putblk(si_ic(si), (char *)msg, sizeof(msg));
Emeric Brunb3971ab2015-05-12 18:49:09 +02001416 if (repl <= 0) {
1417 /* no more write possible */
1418 if (repl == -1)
1419 goto full;
1420 appctx->st0 = PEER_SESS_ST_END;
1421 goto switchstate;
1422 }
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001423 curpeers->flags |= PEERS_F_RESYNC_PROCESS;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001424 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001425
Emeric Brunb3971ab2015-05-12 18:49:09 +02001426 /* Nothing to read, now we start to write */
Emeric Brun2b920a12010-09-23 18:30:22 +02001427
Emeric Brunb3971ab2015-05-12 18:49:09 +02001428 if (curpeer->tables) {
1429 struct shared_table *st;
1430 struct shared_table *last_local_table;
Emeric Brun2b920a12010-09-23 18:30:22 +02001431
Emeric Brunb3971ab2015-05-12 18:49:09 +02001432 last_local_table = curpeer->last_local_table;
1433 if (!last_local_table)
1434 last_local_table = curpeer->tables;
1435 st = last_local_table->next;
Emeric Brun2b920a12010-09-23 18:30:22 +02001436
Emeric Brunb3971ab2015-05-12 18:49:09 +02001437 while (1) {
1438 if (!st)
1439 st = curpeer->tables;
Emeric Brun2b920a12010-09-23 18:30:22 +02001440
Emeric Brunb3971ab2015-05-12 18:49:09 +02001441 /* It remains some updates to ack */
1442 if (st->last_get != st->last_acked) {
Emeric Brun2b920a12010-09-23 18:30:22 +02001443 int msglen;
Emeric Brun2b920a12010-09-23 18:30:22 +02001444
Emeric Brunb3971ab2015-05-12 18:49:09 +02001445 msglen = peer_prepare_ackmsg(st, trash.str, trash.size);
1446 if (!msglen) {
1447 /* internal error: message does not fit in trash */
1448 appctx->st0 = PEER_SESS_ST_END;
1449 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02001450 }
1451
Emeric Brunb3971ab2015-05-12 18:49:09 +02001452 /* message to buffer */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001453 repl = ci_putblk(si_ic(si), trash.str, msglen);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001454 if (repl <= 0) {
1455 /* no more write possible */
1456 if (repl == -1) {
1457 goto full;
Emeric Brun2b920a12010-09-23 18:30:22 +02001458 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001459 appctx->st0 = PEER_SESS_ST_END;
1460 goto switchstate;
Emeric Brun2b920a12010-09-23 18:30:22 +02001461 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001462 st->last_acked = st->last_get;
Emeric Brun2b920a12010-09-23 18:30:22 +02001463 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001464
Emeric Brunb3971ab2015-05-12 18:49:09 +02001465 if (!(curpeer->flags & PEER_F_TEACH_PROCESS)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001466 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001467 if (!(curpeer->flags & PEER_F_LEARN_ASSIGN) &&
1468 ((int)(st->last_pushed - st->table->localupdate) < 0)) {
1469 struct eb32_node *eb;
1470 int new_pushed;
Emeric Brun2b920a12010-09-23 18:30:22 +02001471
Emeric Brunb3971ab2015-05-12 18:49:09 +02001472 if (st != curpeer->last_local_table) {
1473 int msglen;
Emeric Brun2b920a12010-09-23 18:30:22 +02001474
Emeric Brunb3971ab2015-05-12 18:49:09 +02001475 msglen = peer_prepare_switchmsg(st, trash.str, trash.size);
1476 if (!msglen) {
1477 /* internal error: message does not fit in trash */
1478 appctx->st0 = PEER_SESS_ST_END;
1479 goto switchstate;
1480 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001481
Emeric Brunb3971ab2015-05-12 18:49:09 +02001482 /* message to buffer */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001483 repl = ci_putblk(si_ic(si), trash.str, msglen);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001484 if (repl <= 0) {
1485 /* no more write possible */
1486 if (repl == -1) {
1487 goto full;
1488 }
1489 appctx->st0 = PEER_SESS_ST_END;
1490 goto switchstate;
1491 }
1492 curpeer->last_local_table = st;
Emeric Brun2b920a12010-09-23 18:30:22 +02001493 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001494
1495 /* We force new pushed to 1 to force identifier in update message */
1496 new_pushed = 1;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001497 while (1) {
1498 uint32_t msglen;
1499 struct stksess *ts;
Emeric Brun819fc6f2017-06-13 19:37:32 +02001500 unsigned updateid;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001501
1502 /* push local updates */
Emeric Brun819fc6f2017-06-13 19:37:32 +02001503 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001504 if (!eb) {
1505 eb = eb32_first(&st->table->updates);
1506 if (!eb || ((int)(eb->key - st->last_pushed) <= 0)) {
Emeric Brunaaf58602015-06-15 17:23:30 +02001507 st->table->commitupdate = st->last_pushed = st->table->localupdate;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001508 break;
1509 }
1510 }
1511
1512 if ((int)(eb->key - st->table->localupdate) > 0) {
Emeric Brunaaf58602015-06-15 17:23:30 +02001513 st->table->commitupdate = st->last_pushed = st->table->localupdate;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001514 break;
1515 }
1516
1517 ts = eb32_entry(eb, struct stksess, upd);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001518 updateid = ts->upd.key;
1519 ts->ref_cnt++;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001520 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001521
1522 msglen = peer_prepare_updatemsg(ts, st, updateid, trash.str, trash.size, new_pushed, 0);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001523 if (!msglen) {
1524 /* internal error: message does not fit in trash */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001525 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001526 ts->ref_cnt--;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001527 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001528 appctx->st0 = PEER_SESS_ST_END;
1529 goto switchstate;
1530 }
1531
1532 /* message to buffer */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001533 repl = ci_putblk(si_ic(si), trash.str, msglen);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001534 if (repl <= 0) {
1535 /* no more write possible */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001536 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001537 ts->ref_cnt--;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001538 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001539 if (repl == -1) {
1540 goto full;
1541 }
1542 appctx->st0 = PEER_SESS_ST_END;
1543 goto switchstate;
1544 }
Emeric Brun819fc6f2017-06-13 19:37:32 +02001545
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001546 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001547 ts->ref_cnt--;
1548 st->last_pushed = updateid;
Emeric Brunaaf58602015-06-15 17:23:30 +02001549 if ((int)(st->last_pushed - st->table->commitupdate) > 0)
1550 st->table->commitupdate = st->last_pushed;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001551 /* identifier may not needed in next update message */
1552 new_pushed = 0;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001553 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001554 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001555 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +02001556 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001557 else {
1558 if (!(st->flags & SHTABLE_F_TEACH_STAGE1)) {
1559 struct eb32_node *eb;
1560 int new_pushed;
Emeric Brun2b920a12010-09-23 18:30:22 +02001561
Emeric Brunb3971ab2015-05-12 18:49:09 +02001562 if (st != curpeer->last_local_table) {
1563 int msglen;
1564
1565 msglen = peer_prepare_switchmsg(st, trash.str, trash.size);
1566 if (!msglen) {
1567 /* internal error: message does not fit in trash */
1568 appctx->st0 = PEER_SESS_ST_END;
1569 goto switchstate;
1570 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001571
Emeric Brunb3971ab2015-05-12 18:49:09 +02001572 /* message to buffer */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001573 repl = ci_putblk(si_ic(si), trash.str, msglen);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001574 if (repl <= 0) {
1575 /* no more write possible */
1576 if (repl == -1) {
1577 goto full;
1578 }
1579 appctx->st0 = PEER_SESS_ST_END;
1580 goto switchstate;
1581 }
1582 curpeer->last_local_table = st;
1583 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001584
Emeric Brunb3971ab2015-05-12 18:49:09 +02001585 /* We force new pushed to 1 to force identifier in update message */
1586 new_pushed = 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001587 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001588 while (1) {
1589 uint32_t msglen;
1590 struct stksess *ts;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02001591 int use_timed;
Emeric Brun819fc6f2017-06-13 19:37:32 +02001592 unsigned updateid;
Emeric Brun2b920a12010-09-23 18:30:22 +02001593
Emeric Brunb3971ab2015-05-12 18:49:09 +02001594 /* push local updates */
Emeric Brun819fc6f2017-06-13 19:37:32 +02001595 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001596 if (!eb) {
1597 st->flags |= SHTABLE_F_TEACH_STAGE1;
1598 eb = eb32_first(&st->table->updates);
1599 if (eb)
1600 st->last_pushed = eb->key - 1;
1601 break;
1602 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001603
Emeric Brunb3971ab2015-05-12 18:49:09 +02001604 ts = eb32_entry(eb, struct stksess, upd);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001605 updateid = ts->upd.key;
1606 ts->ref_cnt++;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001607 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001608
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02001609 use_timed = !(curpeer->flags & PEER_F_DWNGRD);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001610 msglen = peer_prepare_updatemsg(ts, st, updateid, trash.str, trash.size, new_pushed, use_timed);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001611 if (!msglen) {
1612 /* internal error: message does not fit in trash */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001613 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001614 ts->ref_cnt--;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001615 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001616 appctx->st0 = PEER_SESS_ST_END;
1617 goto switchstate;
1618 }
1619
1620 /* message to buffer */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001621 repl = ci_putblk(si_ic(si), trash.str, msglen);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001622 if (repl <= 0) {
1623 /* no more write possible */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001624 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001625 ts->ref_cnt--;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001626 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001627 if (repl == -1) {
1628 goto full;
1629 }
1630 appctx->st0 = PEER_SESS_ST_END;
1631 goto switchstate;
1632 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001633 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001634 ts->ref_cnt--;
1635 st->last_pushed = updateid;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001636 /* identifier may not needed in next update message */
1637 new_pushed = 0;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001638 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001639 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +02001640 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001641
Emeric Brunb3971ab2015-05-12 18:49:09 +02001642 if (!(st->flags & SHTABLE_F_TEACH_STAGE2)) {
1643 struct eb32_node *eb;
1644 int new_pushed;
Emeric Brun2b920a12010-09-23 18:30:22 +02001645
Emeric Brunb3971ab2015-05-12 18:49:09 +02001646 if (st != curpeer->last_local_table) {
1647 int msglen;
1648
1649 msglen = peer_prepare_switchmsg(st, trash.str, trash.size);
1650 if (!msglen) {
1651 /* internal error: message does not fit in trash */
1652 appctx->st0 = PEER_SESS_ST_END;
1653 goto switchstate;
1654 }
1655
1656 /* message to buffer */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001657 repl = ci_putblk(si_ic(si), trash.str, msglen);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001658 if (repl <= 0) {
1659 /* no more write possible */
1660 if (repl == -1) {
1661 goto full;
1662 }
1663 appctx->st0 = PEER_SESS_ST_END;
1664 goto switchstate;
1665 }
1666 curpeer->last_local_table = st;
1667 }
1668
1669 /* We force new pushed to 1 to force identifier in update message */
1670 new_pushed = 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001671 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001672 while (1) {
1673 uint32_t msglen;
1674 struct stksess *ts;
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02001675 int use_timed;
Emeric Brun819fc6f2017-06-13 19:37:32 +02001676 unsigned updateid;
1677
1678 /* push local updates */
1679 eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001680
1681 /* push local updates */
1682 if (!eb || eb->key > st->teaching_origin) {
1683 st->flags |= SHTABLE_F_TEACH_STAGE2;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001684 break;
1685 }
1686
1687 ts = eb32_entry(eb, struct stksess, upd);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001688 updateid = ts->upd.key;
1689 ts->ref_cnt++;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001690 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001691
Frédéric Lécaille523cc9e2016-10-12 17:30:30 +02001692 use_timed = !(curpeer->flags & PEER_F_DWNGRD);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001693 msglen = peer_prepare_updatemsg(ts, st, updateid, trash.str, trash.size, new_pushed, use_timed);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001694 if (!msglen) {
1695 /* internal error: message does not fit in trash */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001696 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001697 ts->ref_cnt--;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001698 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001699 appctx->st0 = PEER_SESS_ST_END;
1700 goto switchstate;
1701 }
1702
1703 /* message to buffer */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001704 repl = ci_putblk(si_ic(si), trash.str, msglen);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001705 if (repl <= 0) {
1706 /* no more write possible */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001707 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001708 ts->ref_cnt--;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001709 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001710 if (repl == -1) {
1711 goto full;
1712 }
1713 appctx->st0 = PEER_SESS_ST_END;
1714 goto switchstate;
1715 }
Emeric Brun819fc6f2017-06-13 19:37:32 +02001716
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001717 HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001718 ts->ref_cnt--;
1719 st->last_pushed = updateid;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001720 /* identifier may not needed in next update message */
1721 new_pushed = 0;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001722 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001723 HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +02001724 }
Emeric Brun2b920a12010-09-23 18:30:22 +02001725 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001726
1727 if (st == last_local_table)
1728 break;
1729 st = st->next;
Emeric Brun2b920a12010-09-23 18:30:22 +02001730 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02001731 }
1732
1733
1734 if ((curpeer->flags & PEER_F_TEACH_PROCESS) && !(curpeer->flags & PEER_F_TEACH_FINISHED)) {
1735 unsigned char msg[2];
1736
1737 /* Current peer was elected to request a resync */
1738 msg[0] = PEER_MSG_CLASS_CONTROL;
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001739 msg[1] = ((curpeers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FINISHED) ? PEER_MSG_CTRL_RESYNCFINISHED : PEER_MSG_CTRL_RESYNCPARTIAL;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001740 /* process final lesson message */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001741 repl = ci_putblk(si_ic(si), (char *)msg, sizeof(msg));
Emeric Brunb3971ab2015-05-12 18:49:09 +02001742 if (repl <= 0) {
1743 /* no more write possible */
1744 if (repl == -1)
1745 goto full;
1746 appctx->st0 = PEER_SESS_ST_END;
1747 goto switchstate;
1748 }
1749 /* flag finished message sent */
1750 curpeer->flags |= PEER_F_TEACH_FINISHED;
1751 }
1752
Emeric Brun597b26e2016-08-12 11:23:31 +02001753 /* Confirm finished or partial messages */
1754 while (curpeer->confirm) {
1755 unsigned char msg[2];
1756
1757 /* There is a confirm messages to send */
1758 msg[0] = PEER_MSG_CLASS_CONTROL;
1759 msg[1] = PEER_MSG_CTRL_RESYNCCONFIRM;
1760
1761 /* message to buffer */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001762 repl = ci_putblk(si_ic(si), (char *)msg, sizeof(msg));
Emeric Brun597b26e2016-08-12 11:23:31 +02001763 if (repl <= 0) {
1764 /* no more write possible */
1765 if (repl == -1)
1766 goto full;
1767 appctx->st0 = PEER_SESS_ST_END;
1768 goto switchstate;
1769 }
1770 curpeer->confirm--;
1771 }
1772
Emeric Brun2b920a12010-09-23 18:30:22 +02001773 /* noting more to do */
1774 goto out;
1775 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01001776 case PEER_SESS_ST_EXIT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001777 repl = snprintf(trash.str, trash.size, "%d\n", appctx->st1);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001778 if (ci_putblk(si_ic(si), trash.str, repl) == -1)
Willy Tarreaubc18da12015-03-13 14:00:47 +01001779 goto full;
Willy Tarreaue4d927a2013-12-01 12:47:35 +01001780 appctx->st0 = PEER_SESS_ST_END;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001781 goto switchstate;
1782 case PEER_SESS_ST_ERRSIZE: {
1783 unsigned char msg[2];
1784
1785 msg[0] = PEER_MSG_CLASS_ERROR;
1786 msg[1] = PEER_MSG_ERR_SIZELIMIT;
1787
Willy Tarreau06d80a92017-10-19 14:32:15 +02001788 if (ci_putblk(si_ic(si), (char *)msg, sizeof(msg)) == -1)
Emeric Brunb3971ab2015-05-12 18:49:09 +02001789 goto full;
1790 appctx->st0 = PEER_SESS_ST_END;
1791 goto switchstate;
1792 }
1793 case PEER_SESS_ST_ERRPROTO: {
1794 unsigned char msg[2];
1795
1796 msg[0] = PEER_MSG_CLASS_ERROR;
1797 msg[1] = PEER_MSG_ERR_PROTOCOL;
1798
Willy Tarreau06d80a92017-10-19 14:32:15 +02001799 if (ci_putblk(si_ic(si), (char *)msg, sizeof(msg)) == -1)
Emeric Brunb3971ab2015-05-12 18:49:09 +02001800 goto full;
1801 appctx->st0 = PEER_SESS_ST_END;
Emeric Brun2b920a12010-09-23 18:30:22 +02001802 /* fall through */
Emeric Brunb3971ab2015-05-12 18:49:09 +02001803 }
Willy Tarreaue4d927a2013-12-01 12:47:35 +01001804 case PEER_SESS_ST_END: {
Emeric Brun80527f52017-06-19 17:46:37 +02001805 if (curpeer) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001806 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02001807 curpeer = NULL;
1808 }
Willy Tarreau73b013b2012-05-21 16:31:45 +02001809 si_shutw(si);
1810 si_shutr(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01001811 si_ic(si)->flags |= CF_READ_NULL;
Willy Tarreau828824a2015-04-19 17:20:03 +02001812 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02001813 }
1814 }
1815 }
1816out:
Willy Tarreau2bb4a962014-11-28 11:11:05 +01001817 si_oc(si)->flags |= CF_READ_DONTWAIT;
Emeric Brun80527f52017-06-19 17:46:37 +02001818
1819 if (curpeer)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001820 HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock);
Emeric Brun2b920a12010-09-23 18:30:22 +02001821 return;
Willy Tarreaubc18da12015-03-13 14:00:47 +01001822full:
Willy Tarreaufe127932015-04-21 19:23:39 +02001823 si_applet_cant_put(si);
Willy Tarreaubc18da12015-03-13 14:00:47 +01001824 goto out;
Emeric Brun2b920a12010-09-23 18:30:22 +02001825}
1826
Willy Tarreau30576452015-04-13 13:50:30 +02001827static struct applet peer_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001828 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01001829 .name = "<PEER>", /* used for logging */
1830 .fct = peer_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07001831 .release = peer_session_release,
Willy Tarreaub24281b2011-02-13 13:16:36 +01001832};
Emeric Brun2b920a12010-09-23 18:30:22 +02001833
1834/*
1835 * Use this function to force a close of a peer session
1836 */
Willy Tarreau81bc3b02016-10-31 17:37:39 +01001837static void peer_session_forceshutdown(struct appctx *appctx)
Emeric Brun2b920a12010-09-23 18:30:22 +02001838{
Frédéric Lécaille5df11902017-06-13 16:39:57 +02001839 /* Note that the peer sessions which have just been created
1840 * (->st0 == PEER_SESS_ST_CONNECT) must not
1841 * be shutdown, if not, the TCP session will never be closed
1842 * and stay in CLOSE_WAIT state after having been closed by
1843 * the remote side.
1844 */
1845 if (!appctx || appctx->st0 == PEER_SESS_ST_CONNECT)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001846 return;
1847
Willy Tarreau81bc3b02016-10-31 17:37:39 +01001848 if (appctx->applet != &peer_applet)
1849 return;
1850
Willy Tarreaue4d927a2013-12-01 12:47:35 +01001851 appctx->st0 = PEER_SESS_ST_END;
Willy Tarreau78c0c502016-10-31 17:32:20 +01001852 appctx_wakeup(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02001853}
1854
Willy Tarreau91d96282015-03-13 15:47:26 +01001855/* Pre-configures a peers frontend to accept incoming connections */
1856void peers_setup_frontend(struct proxy *fe)
1857{
1858 fe->last_change = now.tv_sec;
1859 fe->cap = PR_CAP_FE;
1860 fe->maxconn = 0;
1861 fe->conn_retries = CONN_RETRIES;
1862 fe->timeout.client = MS_TO_TICKS(5000);
Willy Tarreaud1d48d42015-03-13 16:15:46 +01001863 fe->accept = frontend_accept;
Willy Tarreauf87ab942015-03-13 15:55:16 +01001864 fe->default_target = &peer_applet.obj_type;
Willy Tarreau91d96282015-03-13 15:47:26 +01001865 fe->options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC;
Willy Tarreau0fca4832015-05-01 19:12:05 +02001866 fe->bind_proc = 0; /* will be filled by users */
Willy Tarreau91d96282015-03-13 15:47:26 +01001867}
1868
Emeric Brun2b920a12010-09-23 18:30:22 +02001869/*
Willy Tarreaubd55e312010-11-11 10:55:09 +01001870 * Create a new peer session in assigned state (connect will start automatically)
Emeric Brun2b920a12010-09-23 18:30:22 +02001871 */
Willy Tarreau9df94c22016-10-31 18:42:52 +01001872static struct appctx *peer_session_create(struct peers *peers, struct peer *peer)
Emeric Brun2b920a12010-09-23 18:30:22 +02001873{
Willy Tarreau04b92862017-09-15 11:01:04 +02001874 struct proxy *p = peers->peers_fe; /* attached frontend */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001875 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02001876 struct session *sess;
Willy Tarreau87b09662015-04-03 00:22:06 +02001877 struct stream *s;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001878 struct connection *conn;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001879 struct conn_stream *cs;
Emeric Brun2b920a12010-09-23 18:30:22 +02001880
Emeric Brunb3971ab2015-05-12 18:49:09 +02001881 peer->reconnect = tick_add(now_ms, MS_TO_TICKS(5000));
1882 peer->statuscode = PEER_SESS_SC_CONNECTCODE;
Willy Tarreaud990baf2015-04-05 00:32:03 +02001883 s = NULL;
1884
Emeric Brun1138fd02017-06-19 12:38:55 +02001885 appctx = appctx_new(&peer_applet, tid_bit);
Willy Tarreaud990baf2015-04-05 00:32:03 +02001886 if (!appctx)
1887 goto out_close;
1888
1889 appctx->st0 = PEER_SESS_ST_CONNECT;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001890 appctx->ctx.peers.ptr = (void *)peer;
Willy Tarreaud990baf2015-04-05 00:32:03 +02001891
Willy Tarreau04b92862017-09-15 11:01:04 +02001892 sess = session_new(p, NULL, &appctx->obj_type);
Willy Tarreau15b5e142015-04-04 14:38:25 +02001893 if (!sess) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001894 ha_alert("out of memory in peer_session_create().\n");
Willy Tarreaud990baf2015-04-05 00:32:03 +02001895 goto out_free_appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02001896 }
1897
Willy Tarreau87787ac2017-08-28 16:22:54 +02001898 if ((s = stream_new(sess, &appctx->obj_type)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001899 ha_alert("Failed to initialize stream in peer_session_create().\n");
Willy Tarreau87787ac2017-08-28 16:22:54 +02001900 goto out_free_sess;
Willy Tarreau8baf9062015-04-05 00:46:36 +02001901 }
1902
Willy Tarreau342bfb12015-04-05 01:35:34 +02001903 /* The tasks below are normally what is supposed to be done by
1904 * fe->accept().
1905 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001906 s->flags = SF_ASSIGNED|SF_ADDR_SET;
Emeric Brun2b920a12010-09-23 18:30:22 +02001907
Willy Tarreau6e2979c2015-04-27 13:21:15 +02001908 /* applet is waiting for data */
1909 si_applet_cant_get(&s->si[0]);
1910 appctx_wakeup(appctx);
1911
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02001912 /* initiate an outgoing connection */
1913 si_set_state(&s->si[1], SI_ST_ASS);
Willy Tarreau3ed35ef2013-10-24 11:51:38 +02001914
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001915 /* automatically prepare the stream interface to connect to the
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001916 * pre-initialized connection in si->conn.
1917 */
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001918 if (unlikely((conn = conn_new()) == NULL))
Willy Tarreau8baf9062015-04-05 00:46:36 +02001919 goto out_free_strm;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001920
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001921 if (unlikely((cs = cs_new(conn)) == NULL))
1922 goto out_free_conn;
1923
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001924 conn_prepare(conn, peer->proto, peer->xprt);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001925 conn_install_mux(conn, &mux_pt_ops, cs);
1926 si_attach_cs(&s->si[1], cs);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02001927
1928 conn->target = s->target = &s->be->obj_type;
1929 memcpy(&conn->addr.to, &peer->addr, sizeof(conn->addr.to));
Emeric Brun2b920a12010-09-23 18:30:22 +02001930 s->do_log = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02001931 s->uniq_id = 0;
Emeric Brun2b920a12010-09-23 18:30:22 +02001932
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001933 s->res.flags |= CF_READ_DONTWAIT;
Willy Tarreau696a2912014-11-24 11:36:57 +01001934
Emeric Brunb3971ab2015-05-12 18:49:09 +02001935 peer->appctx = appctx;
Willy Tarreau87787ac2017-08-28 16:22:54 +02001936 task_wakeup(s->task, TASK_WOKEN_INIT);
Willy Tarreau9df94c22016-10-31 18:42:52 +01001937 return appctx;
Emeric Brun2b920a12010-09-23 18:30:22 +02001938
1939 /* Error unrolling */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001940 out_free_conn:
1941 conn_free(conn);
Willy Tarreau15b5e142015-04-04 14:38:25 +02001942 out_free_strm:
Emeric Brun2b920a12010-09-23 18:30:22 +02001943 LIST_DEL(&s->list);
Willy Tarreau87b09662015-04-03 00:22:06 +02001944 pool_free2(pool2_stream, s);
Willy Tarreau15b5e142015-04-04 14:38:25 +02001945 out_free_sess:
Willy Tarreau11c36242015-04-04 15:54:03 +02001946 session_free(sess);
Willy Tarreaud990baf2015-04-05 00:32:03 +02001947 out_free_appctx:
1948 appctx_free(appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02001949 out_close:
Willy Tarreaub21d08e2016-10-31 17:46:57 +01001950 return NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02001951}
1952
1953/*
1954 * Task processing function to manage re-connect and peer session
1955 * tasks wakeup on local update.
1956 */
Simon Horman96553772011-06-08 09:18:51 +09001957static struct task *process_peer_sync(struct task * task)
Emeric Brun2b920a12010-09-23 18:30:22 +02001958{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001959 struct peers *peers = task->context;
Emeric Brunb3971ab2015-05-12 18:49:09 +02001960 struct peer *ps;
1961 struct shared_table *st;
Emeric Brun2b920a12010-09-23 18:30:22 +02001962
1963 task->expire = TICK_ETERNITY;
1964
Emeric Brunb3971ab2015-05-12 18:49:09 +02001965 if (!peers->peers_fe) {
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02001966 /* this one was never started, kill it */
Emeric Brunb3971ab2015-05-12 18:49:09 +02001967 signal_unregister_handler(peers->sighandler);
Emeric Brunb3971ab2015-05-12 18:49:09 +02001968 task_delete(peers->sync_task);
1969 task_free(peers->sync_task);
Willy Tarreau37bb7be2015-09-21 15:24:58 +02001970 peers->sync_task = NULL;
Willy Tarreau46dc1ca2015-05-01 18:32:13 +02001971 return NULL;
1972 }
1973
Emeric Brun80527f52017-06-19 17:46:37 +02001974 /* Acquire lock for all peers of the section */
1975 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001976 HA_SPIN_LOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02001977
Emeric Brun2b920a12010-09-23 18:30:22 +02001978 if (!stopping) {
1979 /* Normal case (not soft stop)*/
Emeric Brunb3971ab2015-05-12 18:49:09 +02001980
1981 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL) &&
1982 (!nb_oldpids || tick_is_expired(peers->resync_timeout, now_ms)) &&
1983 !(peers->flags & PEERS_F_RESYNC_ASSIGN)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02001984 /* Resync from local peer needed
1985 no peer was assigned for the lesson
1986 and no old local peer found
1987 or resync timeout expire */
1988
1989 /* flag no more resync from local, to try resync from remotes */
Emeric Brunb3971ab2015-05-12 18:49:09 +02001990 peers->flags |= PEERS_F_RESYNC_LOCAL;
Emeric Brun2b920a12010-09-23 18:30:22 +02001991
1992 /* reschedule a resync */
Emeric Brunb3971ab2015-05-12 18:49:09 +02001993 peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000));
Emeric Brun2b920a12010-09-23 18:30:22 +02001994 }
1995
1996 /* For each session */
Emeric Brunb3971ab2015-05-12 18:49:09 +02001997 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02001998 /* For each remote peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02001999 if (!ps->local) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002000 if (!ps->appctx) {
2001 /* no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002002 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002003 ((ps->statuscode == PEER_SESS_SC_CONNECTCODE ||
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002004 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002005 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002006 tick_is_expired(ps->reconnect, now_ms))) {
2007 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002008 * or previous peer connection established with success
2009 * or previous peer connection failed while connecting
Emeric Brun2b920a12010-09-23 18:30:22 +02002010 * and reconnection timer is expired */
2011
2012 /* retry a connect */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002013 ps->appctx = peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002014 }
Willy Tarreaub4e34da2015-05-20 10:39:04 +02002015 else if (!tick_is_expired(ps->reconnect, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002016 /* If previous session failed during connection
2017 * but reconnection timer is not expired */
2018
2019 /* reschedule task for reconnect */
2020 task->expire = tick_first(task->expire, ps->reconnect);
2021 }
2022 /* else do nothing */
Willy Tarreau9df94c22016-10-31 18:42:52 +01002023 } /* !ps->appctx */
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002024 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002025 /* current peer connection is active and established */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002026 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2027 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
Emeric Brun2b920a12010-09-23 18:30:22 +02002028 !(ps->flags & PEER_F_LEARN_NOTUP2DATE)) {
2029 /* Resync from a remote is needed
2030 * and no peer was assigned for lesson
2031 * and current peer may be up2date */
2032
2033 /* assign peer for the lesson */
2034 ps->flags |= PEER_F_LEARN_ASSIGN;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002035 peers->flags |= PEERS_F_RESYNC_ASSIGN;
Emeric Brun2b920a12010-09-23 18:30:22 +02002036
Willy Tarreau9df94c22016-10-31 18:42:52 +01002037 /* wake up peer handler to handle a request of resync */
Willy Tarreaue5843b32015-04-27 18:40:14 +02002038 appctx_wakeup(ps->appctx);
Emeric Brun2b920a12010-09-23 18:30:22 +02002039 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002040 else {
2041 /* Awake session if there is data to push */
2042 for (st = ps->tables; st ; st = st->next) {
2043 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002044 /* wake up the peer handler to push local updates */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002045 appctx_wakeup(ps->appctx);
2046 break;
2047 }
2048 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002049 }
2050 /* else do nothing */
2051 } /* SUCCESSCODE */
2052 } /* !ps->peer->local */
2053 } /* for */
2054
2055 /* Resync from remotes expired: consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002056 if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) &&
2057 !(peers->flags & PEERS_F_RESYNC_ASSIGN) &&
2058 tick_is_expired(peers->resync_timeout, now_ms)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002059 /* Resync from remote peer needed
2060 * no peer was assigned for the lesson
2061 * and resync timeout expire */
2062
2063 /* flag no more resync from remote, consider resync is finished */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002064 peers->flags |= PEERS_F_RESYNC_REMOTE;
Emeric Brun2b920a12010-09-23 18:30:22 +02002065 }
2066
Emeric Brunb3971ab2015-05-12 18:49:09 +02002067 if ((peers->flags & PEERS_RESYNC_STATEMASK) != PEERS_RESYNC_FINISHED) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002068 /* Resync not finished*/
Frédéric Lécaille5d6e5f82017-05-29 13:47:16 +02002069 /* reschedule task to resync timeout if not expired, to ended resync if needed */
2070 if (!tick_is_expired(peers->resync_timeout, now_ms))
2071 task->expire = tick_first(task->expire, peers->resync_timeout);
Emeric Brun2b920a12010-09-23 18:30:22 +02002072 }
2073 } /* !stopping */
2074 else {
2075 /* soft stop case */
2076 if (task->state & TASK_WOKEN_SIGNAL) {
2077 /* We've just recieved the signal */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002078 if (!(peers->flags & PEERS_F_DONOTSTOP)) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002079 /* add DO NOT STOP flag if not present */
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02002080 HA_ATOMIC_ADD(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002081 peers->flags |= PEERS_F_DONOTSTOP;
2082 ps = peers->local;
2083 for (st = ps->tables; st ; st = st->next)
2084 st->table->syncing++;
Emeric Brun2b920a12010-09-23 18:30:22 +02002085 }
2086
2087 /* disconnect all connected peers */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002088 for (ps = peers->remote; ps; ps = ps->next) {
Emeric Brun80527f52017-06-19 17:46:37 +02002089 /* we're killing a connection, we must apply a random delay before
2090 * retrying otherwise the other end will do the same and we can loop
2091 * for a while.
2092 */
2093 ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + random() % 2000));
Willy Tarreau9df94c22016-10-31 18:42:52 +01002094 if (ps->appctx) {
Willy Tarreau81bc3b02016-10-31 17:37:39 +01002095 peer_session_forceshutdown(ps->appctx);
Willy Tarreaue5843b32015-04-27 18:40:14 +02002096 ps->appctx = NULL;
Emeric Brun2b920a12010-09-23 18:30:22 +02002097 }
2098 }
2099 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002100
Emeric Brunb3971ab2015-05-12 18:49:09 +02002101 ps = peers->local;
Emeric Brun2b920a12010-09-23 18:30:22 +02002102 if (ps->flags & PEER_F_TEACH_COMPLETE) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002103 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002104 /* resync of new process was complete, current process can die now */
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02002105 HA_ATOMIC_ADD(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002106 peers->flags &= ~PEERS_F_DONOTSTOP;
2107 for (st = ps->tables; st ; st = st->next)
2108 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002109 }
2110 }
Willy Tarreau9df94c22016-10-31 18:42:52 +01002111 else if (!ps->appctx) {
2112 /* If there's no active peer connection */
Emeric Brun2b920a12010-09-23 18:30:22 +02002113 if (ps->statuscode == 0 ||
Willy Tarreaue4d927a2013-12-01 12:47:35 +01002114 ps->statuscode == PEER_SESS_SC_SUCCESSCODE ||
2115 ps->statuscode == PEER_SESS_SC_CONNECTEDCODE ||
2116 ps->statuscode == PEER_SESS_SC_TRYAGAIN) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002117 /* connection never tried
Willy Tarreau9df94c22016-10-31 18:42:52 +01002118 * or previous peer connection was successfully established
2119 * or previous tcp connect succeeded but init state incomplete
Emeric Brun2b920a12010-09-23 18:30:22 +02002120 * or during previous connect, peer replies a try again statuscode */
2121
2122 /* connect to the peer */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002123 peer_session_create(peers, ps);
Emeric Brun2b920a12010-09-23 18:30:22 +02002124 }
2125 else {
2126 /* Other error cases */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002127 if (peers->flags & PEERS_F_DONOTSTOP) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002128 /* unable to resync new process, current process can die now */
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02002129 HA_ATOMIC_SUB(&jobs, 1);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002130 peers->flags &= ~PEERS_F_DONOTSTOP;
2131 for (st = ps->tables; st ; st = st->next)
2132 st->table->syncing--;
Emeric Brun2b920a12010-09-23 18:30:22 +02002133 }
2134 }
2135 }
Emeric Brunb3971ab2015-05-12 18:49:09 +02002136 else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE ) {
Willy Tarreau9df94c22016-10-31 18:42:52 +01002137 /* current peer connection is active and established
2138 * wake up all peer handlers to push remaining local updates */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002139 for (st = ps->tables; st ; st = st->next) {
2140 if ((int)(st->last_pushed - st->table->localupdate) < 0) {
Emeric Brunb3971ab2015-05-12 18:49:09 +02002141 appctx_wakeup(ps->appctx);
2142 break;
2143 }
2144 }
Emeric Brun2b920a12010-09-23 18:30:22 +02002145 }
2146 } /* stopping */
Emeric Brun80527f52017-06-19 17:46:37 +02002147
2148 /* Release lock for all peers of the section */
2149 for (ps = peers->remote; ps; ps = ps->next)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002150 HA_SPIN_UNLOCK(PEER_LOCK, &ps->lock);
Emeric Brun80527f52017-06-19 17:46:37 +02002151
Emeric Brun2b920a12010-09-23 18:30:22 +02002152 /* Wakeup for re-connect */
2153 return task;
2154}
2155
Emeric Brunb3971ab2015-05-12 18:49:09 +02002156
Emeric Brun2b920a12010-09-23 18:30:22 +02002157/*
Emeric Brun2b920a12010-09-23 18:30:22 +02002158 *
2159 */
Emeric Brunb3971ab2015-05-12 18:49:09 +02002160void peers_init_sync(struct peers *peers)
Emeric Brun2b920a12010-09-23 18:30:22 +02002161{
Emeric Brun2b920a12010-09-23 18:30:22 +02002162 struct peer * curpeer;
Willy Tarreau4348fad2012-09-20 16:48:07 +02002163 struct listener *listener;
Emeric Brun2b920a12010-09-23 18:30:22 +02002164
Emeric Brun2b920a12010-09-23 18:30:22 +02002165 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Emeric Brun2b920a12010-09-23 18:30:22 +02002166 peers->peers_fe->maxconn += 3;
2167 }
2168
Willy Tarreau4348fad2012-09-20 16:48:07 +02002169 list_for_each_entry(listener, &peers->peers_fe->conf.listeners, by_fe)
2170 listener->maxconn = peers->peers_fe->maxconn;
Emeric Brunc60def82017-09-27 14:59:38 +02002171 peers->sync_task = task_new(MAX_THREADS_MASK);
Emeric Brunb3971ab2015-05-12 18:49:09 +02002172 peers->sync_task->process = process_peer_sync;
Emeric Brunb3971ab2015-05-12 18:49:09 +02002173 peers->sync_task->context = (void *)peers;
2174 peers->sighandler = signal_register_task(0, peers->sync_task, 0);
2175 task_wakeup(peers->sync_task, TASK_WOKEN_INIT);
2176}
2177
2178
2179
2180/*
2181 * Function used to register a table for sync on a group of peers
2182 *
2183 */
2184void peers_register_table(struct peers *peers, struct stktable *table)
2185{
2186 struct shared_table *st;
2187 struct peer * curpeer;
2188 int id = 0;
2189
2190 for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) {
Vincent Bernat02779b62016-04-03 13:48:43 +02002191 st = calloc(1,sizeof(*st));
Emeric Brunb3971ab2015-05-12 18:49:09 +02002192 st->table = table;
2193 st->next = curpeer->tables;
2194 if (curpeer->tables)
2195 id = curpeer->tables->local_id;
2196 st->local_id = id + 1;
2197
2198 curpeer->tables = st;
2199 }
2200
2201 table->sync_task = peers->sync_task;
Emeric Brun2b920a12010-09-23 18:30:22 +02002202}
2203