Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1 | /* |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2 | * Peer synchro management. |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3 | * |
| 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écaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 26 | #include <common/standard.h> |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 27 | #include <common/hathreads.h> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 28 | |
| 29 | #include <types/global.h> |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 30 | #include <types/listener.h> |
| 31 | #include <types/obj_type.h> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 32 | #include <types/peers.h> |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 33 | #include <types/stats.h> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 34 | |
| 35 | #include <proto/acl.h> |
Willy Tarreau | 8a8d83b | 2015-04-13 13:24:54 +0200 | [diff] [blame] | 36 | #include <proto/applet.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 37 | #include <proto/channel.h> |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 38 | #include <proto/cli.h> |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 39 | #include <proto/dict.h> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 40 | #include <proto/fd.h> |
Willy Tarreau | d1d48d4 | 2015-03-13 16:15:46 +0100 | [diff] [blame] | 41 | #include <proto/frontend.h> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 42 | #include <proto/log.h> |
| 43 | #include <proto/hdr_idx.h> |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 44 | #include <proto/mux_pt.h> |
Frédéric Lécaille | 1055e68 | 2018-04-26 14:35:21 +0200 | [diff] [blame] | 45 | #include <proto/peers.h> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 46 | #include <proto/proxy.h> |
Willy Tarreau | feb7640 | 2015-04-03 14:10:06 +0200 | [diff] [blame] | 47 | #include <proto/session.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 48 | #include <proto/stream.h> |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 49 | #include <proto/signal.h> |
| 50 | #include <proto/stick_table.h> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 51 | #include <proto/stream_interface.h> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 52 | #include <proto/task.h> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 53 | |
| 54 | |
| 55 | /*******************************/ |
| 56 | /* Current peer learning state */ |
| 57 | /*******************************/ |
| 58 | |
| 59 | /******************************/ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 60 | /* Current peers section resync state */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 61 | /******************************/ |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 62 | #define PEERS_F_RESYNC_LOCAL 0x00000001 /* Learn from local finished or no more needed */ |
| 63 | #define PEERS_F_RESYNC_REMOTE 0x00000002 /* Learn from remote finished or no more needed */ |
| 64 | #define PEERS_F_RESYNC_ASSIGN 0x00000004 /* A peer was assigned to learn our lesson */ |
| 65 | #define PEERS_F_RESYNC_PROCESS 0x00000008 /* The assigned peer was requested for resync */ |
| 66 | #define PEERS_F_DONOTSTOP 0x00010000 /* Main table sync task block process during soft stop |
| 67 | to push data to new process */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 68 | |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 69 | #define PEERS_RESYNC_STATEMASK (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE) |
| 70 | #define PEERS_RESYNC_FROMLOCAL 0x00000000 |
| 71 | #define PEERS_RESYNC_FROMREMOTE PEERS_F_RESYNC_LOCAL |
| 72 | #define PEERS_RESYNC_FINISHED (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE) |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 73 | |
| 74 | /***********************************/ |
| 75 | /* Current shared table sync state */ |
| 76 | /***********************************/ |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 77 | #define SHTABLE_F_TEACH_STAGE1 0x00000001 /* Teach state 1 complete */ |
| 78 | #define SHTABLE_F_TEACH_STAGE2 0x00000002 /* Teach state 2 complete */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 79 | |
| 80 | /******************************/ |
| 81 | /* Remote peer teaching state */ |
| 82 | /******************************/ |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 83 | #define PEER_F_TEACH_PROCESS 0x00000001 /* Teach a lesson to current peer */ |
| 84 | #define PEER_F_TEACH_FINISHED 0x00000008 /* Teach conclude, (wait for confirm) */ |
| 85 | #define PEER_F_TEACH_COMPLETE 0x00000010 /* All that we know already taught to current peer, used only for a local peer */ |
| 86 | #define PEER_F_LEARN_ASSIGN 0x00000100 /* Current peer was assigned for a lesson */ |
| 87 | #define PEER_F_LEARN_NOTUP2DATE 0x00000200 /* Learn from peer finished but peer is not up to date */ |
| 88 | #define PEER_F_ALIVE 0x20000000 /* Used to flag a peer a alive. */ |
| 89 | #define PEER_F_HEARTBEAT 0x40000000 /* Heartbeat message to send. */ |
| 90 | #define PEER_F_DWNGRD 0x80000000 /* When this flag is enabled, we must downgrade the supported version announced during peer sessions. */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 91 | |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 92 | #define PEER_TEACH_RESET ~(PEER_F_TEACH_PROCESS|PEER_F_TEACH_FINISHED) /* PEER_F_TEACH_COMPLETE should never be reset */ |
| 93 | #define PEER_LEARN_RESET ~(PEER_F_LEARN_ASSIGN|PEER_F_LEARN_NOTUP2DATE) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 94 | |
Frédéric Lécaille | 54bff83 | 2019-03-26 10:25:20 +0100 | [diff] [blame] | 95 | #define PEER_RESYNC_TIMEOUT 5000 /* 5 seconds */ |
| 96 | #define PEER_RECONNECT_TIMEOUT 5000 /* 5 seconds */ |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 97 | #define PEER_HEARTBEAT_TIMEOUT 3000 /* 3 seconds */ |
| 98 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 99 | /*****************************/ |
| 100 | /* Sync message class */ |
| 101 | /*****************************/ |
| 102 | enum { |
| 103 | PEER_MSG_CLASS_CONTROL = 0, |
| 104 | PEER_MSG_CLASS_ERROR, |
| 105 | PEER_MSG_CLASS_STICKTABLE = 10, |
| 106 | PEER_MSG_CLASS_RESERVED = 255, |
| 107 | }; |
| 108 | |
| 109 | /*****************************/ |
| 110 | /* control message types */ |
| 111 | /*****************************/ |
| 112 | enum { |
| 113 | PEER_MSG_CTRL_RESYNCREQ = 0, |
| 114 | PEER_MSG_CTRL_RESYNCFINISHED, |
| 115 | PEER_MSG_CTRL_RESYNCPARTIAL, |
| 116 | PEER_MSG_CTRL_RESYNCCONFIRM, |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 117 | PEER_MSG_CTRL_HEARTBEAT, |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | /*****************************/ |
| 121 | /* error message types */ |
| 122 | /*****************************/ |
| 123 | enum { |
| 124 | PEER_MSG_ERR_PROTOCOL = 0, |
| 125 | PEER_MSG_ERR_SIZELIMIT, |
| 126 | }; |
| 127 | |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 128 | /* |
| 129 | * Parameters used by functions to build peer protocol messages. */ |
| 130 | struct peer_prep_params { |
| 131 | struct { |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 132 | struct peer *peer; |
| 133 | } hello; |
| 134 | struct { |
| 135 | unsigned int st1; |
| 136 | } error_status; |
| 137 | struct { |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 138 | struct stksess *stksess; |
| 139 | struct shared_table *shared_table; |
| 140 | unsigned int updateid; |
| 141 | int use_identifier; |
| 142 | int use_timed; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 143 | struct peer *peer; |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 144 | } updt; |
| 145 | struct { |
| 146 | struct shared_table *shared_table; |
| 147 | } swtch; |
| 148 | struct { |
| 149 | struct shared_table *shared_table; |
| 150 | } ack; |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 151 | struct { |
| 152 | unsigned char head[2]; |
| 153 | } control; |
| 154 | struct { |
| 155 | unsigned char head[2]; |
| 156 | } error; |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 157 | }; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 158 | |
| 159 | /*******************************/ |
| 160 | /* stick table sync mesg types */ |
| 161 | /* Note: ids >= 128 contains */ |
| 162 | /* id message cotains data */ |
| 163 | /*******************************/ |
Olivier Houchard | 3399226 | 2018-10-16 18:49:26 +0200 | [diff] [blame] | 164 | #define PEER_MSG_STKT_UPDATE 0x80 |
| 165 | #define PEER_MSG_STKT_INCUPDATE 0x81 |
| 166 | #define PEER_MSG_STKT_DEFINE 0x82 |
| 167 | #define PEER_MSG_STKT_SWITCH 0x83 |
| 168 | #define PEER_MSG_STKT_ACK 0x84 |
| 169 | #define PEER_MSG_STKT_UPDATE_TIMED 0x85 |
| 170 | #define PEER_MSG_STKT_INCUPDATE_TIMED 0x86 |
Frédéric Lécaille | 36fb77e | 2019-06-04 08:28:19 +0200 | [diff] [blame] | 171 | /* All the stick-table message identifiers abova have the #7 bit set */ |
| 172 | #define PEER_MSG_STKT_BIT 7 |
| 173 | #define PEER_MSG_STKT_BIT_MASK (1 << PEER_MSG_STKT_BIT) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 174 | |
Frédéric Lécaille | 3914334 | 2019-05-24 14:32:27 +0200 | [diff] [blame] | 175 | /* The maximum length of an encoded data length. */ |
| 176 | #define PEER_MSG_ENC_LENGTH_MAXLEN 5 |
| 177 | |
Frédéric Lécaille | 32b5573 | 2019-06-03 18:29:51 +0200 | [diff] [blame] | 178 | /* Minimum 64-bits value encoded with 2 bytes */ |
| 179 | #define PEER_ENC_2BYTES_MIN 0xf0 /* 0xf0 (or 240) */ |
| 180 | /* 3 bytes */ |
| 181 | #define PEER_ENC_3BYTES_MIN ((1ULL << 11) | PEER_ENC_2BYTES_MIN) /* 0x8f0 (or 2288) */ |
| 182 | /* 4 bytes */ |
| 183 | #define PEER_ENC_4BYTES_MIN ((1ULL << 18) | PEER_ENC_3BYTES_MIN) /* 0x408f0 (or 264432) */ |
| 184 | /* 5 bytes */ |
| 185 | #define PEER_ENC_5BYTES_MIN ((1ULL << 25) | PEER_ENC_4BYTES_MIN) /* 0x20408f0 (or 33818864) */ |
| 186 | /* 6 bytes */ |
| 187 | #define PEER_ENC_6BYTES_MIN ((1ULL << 32) | PEER_ENC_5BYTES_MIN) /* 0x1020408f0 (or 4328786160) */ |
| 188 | /* 7 bytes */ |
| 189 | #define PEER_ENC_7BYTES_MIN ((1ULL << 39) | PEER_ENC_6BYTES_MIN) /* 0x81020408f0 (or 554084600048) */ |
| 190 | /* 8 bytes */ |
| 191 | #define PEER_ENC_8BYTES_MIN ((1ULL << 46) | PEER_ENC_7BYTES_MIN) /* 0x4081020408f0 (or 70922828777712) */ |
| 192 | /* 9 bytes */ |
| 193 | #define PEER_ENC_9BYTES_MIN ((1ULL << 53) | PEER_ENC_8BYTES_MIN) /* 0x204081020408f0 (or 9078122083518704) */ |
| 194 | /* 10 bytes */ |
| 195 | #define PEER_ENC_10BYTES_MIN ((1ULL << 60) | PEER_ENC_9BYTES_MIN) /* 0x10204081020408f0 (or 1161999626690365680) */ |
| 196 | |
| 197 | /* #7 bit used to detect the last byte to be encoded */ |
| 198 | #define PEER_ENC_STOP_BIT 7 |
| 199 | /* The byte minimum value with #7 bit set */ |
| 200 | #define PEER_ENC_STOP_BYTE (1 << PEER_ENC_STOP_BIT) |
| 201 | /* The left most number of bits set for PEER_ENC_2BYTES_MIN */ |
| 202 | #define PEER_ENC_2BYTES_MIN_BITS 4 |
| 203 | |
Frédéric Lécaille | 3914334 | 2019-05-24 14:32:27 +0200 | [diff] [blame] | 204 | #define PEER_MSG_HEADER_LEN 2 |
| 205 | |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 206 | #define PEER_STKT_CACHE_MAX_ENTRIES 128 |
| 207 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 208 | /**********************************/ |
| 209 | /* Peer Session IO handler states */ |
| 210 | /**********************************/ |
| 211 | |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 212 | enum { |
| 213 | PEER_SESS_ST_ACCEPT = 0, /* Initial state for session create by an accept, must be zero! */ |
| 214 | PEER_SESS_ST_GETVERSION, /* Validate supported protocol version */ |
| 215 | PEER_SESS_ST_GETHOST, /* Validate host ID correspond to local host id */ |
| 216 | PEER_SESS_ST_GETPEER, /* Validate peer ID correspond to a known remote peer id */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 217 | /* after this point, data were possibly exchanged */ |
| 218 | PEER_SESS_ST_SENDSUCCESS, /* Send ret code 200 (success) and wait for message */ |
| 219 | PEER_SESS_ST_CONNECT, /* Initial state for session create on a connect, push presentation into buffer */ |
| 220 | PEER_SESS_ST_GETSTATUS, /* Wait for the welcome message */ |
| 221 | PEER_SESS_ST_WAITMSG, /* Wait for data messages */ |
| 222 | PEER_SESS_ST_EXIT, /* Exit with status code */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 223 | PEER_SESS_ST_ERRPROTO, /* Send error proto message before exit */ |
| 224 | PEER_SESS_ST_ERRSIZE, /* Send error size message before exit */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 225 | PEER_SESS_ST_END, /* Killed session */ |
| 226 | }; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 227 | |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 228 | /***************************************************/ |
| 229 | /* Peer Session status code - part of the protocol */ |
| 230 | /***************************************************/ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 231 | |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 232 | #define PEER_SESS_SC_CONNECTCODE 100 /* connect in progress */ |
| 233 | #define PEER_SESS_SC_CONNECTEDCODE 110 /* tcp connect success */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 234 | |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 235 | #define PEER_SESS_SC_SUCCESSCODE 200 /* accept or connect successful */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 236 | |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 237 | #define PEER_SESS_SC_TRYAGAIN 300 /* try again later */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 238 | |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 239 | #define PEER_SESS_SC_ERRPROTO 501 /* error protocol */ |
| 240 | #define PEER_SESS_SC_ERRVERSION 502 /* unknown protocol version */ |
| 241 | #define PEER_SESS_SC_ERRHOST 503 /* bad host name */ |
| 242 | #define PEER_SESS_SC_ERRPEER 504 /* unknown peer */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 243 | |
| 244 | #define PEER_SESSION_PROTO_NAME "HAProxyS" |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 245 | #define PEER_MAJOR_VER 2 |
| 246 | #define PEER_MINOR_VER 1 |
| 247 | #define PEER_DWNGRD_MINOR_VER 0 |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 248 | |
Willy Tarreau | 6254a92 | 2019-01-29 17:45:23 +0100 | [diff] [blame] | 249 | static size_t proto_len = sizeof(PEER_SESSION_PROTO_NAME) - 1; |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 250 | struct peers *cfg_peers = NULL; |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 251 | static void peer_session_forceshutdown(struct peer *peer); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 252 | |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 253 | static struct ebpt_node *dcache_tx_insert(struct dcache *dc, |
| 254 | struct dcache_tx_entry *i); |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 255 | static inline void flush_dcache(struct peer *peer); |
| 256 | |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 257 | static const char *statuscode_str(int statuscode) |
| 258 | { |
| 259 | switch (statuscode) { |
| 260 | case PEER_SESS_SC_CONNECTCODE: |
| 261 | return "CONN"; |
| 262 | case PEER_SESS_SC_CONNECTEDCODE: |
| 263 | return "HSHK"; |
| 264 | case PEER_SESS_SC_SUCCESSCODE: |
| 265 | return "ESTA"; |
| 266 | case PEER_SESS_SC_TRYAGAIN: |
| 267 | return "RETR"; |
| 268 | case PEER_SESS_SC_ERRPROTO: |
| 269 | return "PROT"; |
| 270 | case PEER_SESS_SC_ERRVERSION: |
| 271 | return "VERS"; |
| 272 | case PEER_SESS_SC_ERRHOST: |
| 273 | return "NAME"; |
| 274 | case PEER_SESS_SC_ERRPEER: |
| 275 | return "UNKN"; |
| 276 | default: |
| 277 | return "NONE"; |
| 278 | } |
| 279 | } |
| 280 | |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 281 | /* This function encode an uint64 to 'dynamic' length format. |
| 282 | The encoded value is written at address *str, and the |
| 283 | caller must assure that size after *str is large enought. |
| 284 | At return, the *str is set at the next Byte after then |
| 285 | encoded integer. The function returns then length of the |
| 286 | encoded integer in Bytes */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 287 | int intencode(uint64_t i, char **str) { |
| 288 | int idx = 0; |
| 289 | unsigned char *msg; |
| 290 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 291 | msg = (unsigned char *)*str; |
Frédéric Lécaille | 32b5573 | 2019-06-03 18:29:51 +0200 | [diff] [blame] | 292 | if (i < PEER_ENC_2BYTES_MIN) { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 293 | msg[0] = (unsigned char)i; |
| 294 | *str = (char *)&msg[idx+1]; |
| 295 | return (idx+1); |
| 296 | } |
| 297 | |
Frédéric Lécaille | 32b5573 | 2019-06-03 18:29:51 +0200 | [diff] [blame] | 298 | msg[idx] =(unsigned char)i | PEER_ENC_2BYTES_MIN; |
| 299 | i = (i - PEER_ENC_2BYTES_MIN) >> PEER_ENC_2BYTES_MIN_BITS; |
| 300 | while (i >= PEER_ENC_STOP_BYTE) { |
| 301 | msg[++idx] = (unsigned char)i | PEER_ENC_STOP_BYTE; |
| 302 | i = (i - PEER_ENC_STOP_BYTE) >> PEER_ENC_STOP_BIT; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 303 | } |
| 304 | msg[++idx] = (unsigned char)i; |
| 305 | *str = (char *)&msg[idx+1]; |
| 306 | return (idx+1); |
| 307 | } |
| 308 | |
| 309 | |
| 310 | /* This function returns the decoded integer or 0 |
| 311 | if decode failed |
| 312 | *str point on the beginning of the integer to decode |
| 313 | at the end of decoding *str point on the end of the |
| 314 | encoded integer or to null if end is reached */ |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 315 | uint64_t intdecode(char **str, char *end) |
| 316 | { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 317 | unsigned char *msg; |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 318 | uint64_t i; |
| 319 | int shift; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 320 | |
| 321 | if (!*str) |
| 322 | return 0; |
| 323 | |
| 324 | msg = (unsigned char *)*str; |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 325 | if (msg >= (unsigned char *)end) |
| 326 | goto fail; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 327 | |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 328 | i = *(msg++); |
Frédéric Lécaille | 32b5573 | 2019-06-03 18:29:51 +0200 | [diff] [blame] | 329 | if (i >= PEER_ENC_2BYTES_MIN) { |
| 330 | shift = PEER_ENC_2BYTES_MIN_BITS; |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 331 | do { |
| 332 | if (msg >= (unsigned char *)end) |
| 333 | goto fail; |
| 334 | i += (uint64_t)*msg << shift; |
Frédéric Lécaille | 32b5573 | 2019-06-03 18:29:51 +0200 | [diff] [blame] | 335 | shift += PEER_ENC_STOP_BIT; |
| 336 | } while (*(msg++) >= PEER_ENC_STOP_BYTE); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 337 | } |
Frédéric Lécaille | a8725ec | 2019-01-22 10:31:39 +0100 | [diff] [blame] | 338 | *str = (char *)msg; |
| 339 | return i; |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 340 | |
Frédéric Lécaille | a8725ec | 2019-01-22 10:31:39 +0100 | [diff] [blame] | 341 | fail: |
| 342 | *str = NULL; |
| 343 | return 0; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 344 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 345 | |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 346 | /* |
| 347 | * Build a "hello" peer protocol message. |
| 348 | * Return the number of written bytes written to build this messages if succeeded, |
| 349 | * 0 if not. |
| 350 | */ |
| 351 | static int peer_prepare_hellomsg(char *msg, size_t size, struct peer_prep_params *p) |
| 352 | { |
| 353 | int min_ver, ret; |
| 354 | struct peer *peer; |
| 355 | |
| 356 | peer = p->hello.peer; |
| 357 | min_ver = (peer->flags & PEER_F_DWNGRD) ? PEER_DWNGRD_MINOR_VER : PEER_MINOR_VER; |
| 358 | /* Prepare headers */ |
| 359 | ret = snprintf(msg, size, PEER_SESSION_PROTO_NAME " %u.%u\n%s\n%s %d %d\n", |
| 360 | PEER_MAJOR_VER, min_ver, peer->id, localpeer, (int)getpid(), relative_pid); |
| 361 | if (ret >= size) |
| 362 | return 0; |
| 363 | |
| 364 | return ret; |
| 365 | } |
| 366 | |
| 367 | /* |
| 368 | * Build a "handshake succeeded" status message. |
| 369 | * Return the number of written bytes written to build this messages if succeeded, |
| 370 | * 0 if not. |
| 371 | */ |
| 372 | static int peer_prepare_status_successmsg(char *msg, size_t size, struct peer_prep_params *p) |
| 373 | { |
| 374 | int ret; |
| 375 | |
| 376 | ret = snprintf(msg, size, "%d\n", PEER_SESS_SC_SUCCESSCODE); |
| 377 | if (ret >= size) |
| 378 | return 0; |
| 379 | |
| 380 | return ret; |
| 381 | } |
| 382 | |
| 383 | /* |
| 384 | * Build an error status message. |
| 385 | * Return the number of written bytes written to build this messages if succeeded, |
| 386 | * 0 if not. |
| 387 | */ |
| 388 | static int peer_prepare_status_errormsg(char *msg, size_t size, struct peer_prep_params *p) |
| 389 | { |
| 390 | int ret; |
| 391 | unsigned int st1; |
| 392 | |
| 393 | st1 = p->error_status.st1; |
| 394 | ret = snprintf(msg, size, "%d\n", st1); |
| 395 | if (ret >= size) |
| 396 | return 0; |
| 397 | |
| 398 | return ret; |
| 399 | } |
| 400 | |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 401 | /* Set the stick-table UPDATE message type byte at <msg_type> address, |
| 402 | * depending on <use_identifier> and <use_timed> boolean parameters. |
| 403 | * Always successful. |
| 404 | */ |
| 405 | static inline void peer_set_update_msg_type(char *msg_type, int use_identifier, int use_timed) |
| 406 | { |
| 407 | if (use_timed) { |
| 408 | if (use_identifier) |
| 409 | *msg_type = PEER_MSG_STKT_UPDATE_TIMED; |
| 410 | else |
| 411 | *msg_type = PEER_MSG_STKT_INCUPDATE_TIMED; |
| 412 | } |
| 413 | else { |
| 414 | if (use_identifier) |
| 415 | *msg_type = PEER_MSG_STKT_UPDATE; |
| 416 | else |
| 417 | *msg_type = PEER_MSG_STKT_INCUPDATE; |
| 418 | } |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 419 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 420 | /* |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 421 | * This prepare the data update message on the stick session <ts>, <st> is the considered |
| 422 | * stick table. |
Joseph Herlant | 82b2f54 | 2018-11-15 12:19:14 -0800 | [diff] [blame] | 423 | * <msg> is a buffer of <size> to receive data message content |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 424 | * If function returns 0, the caller should consider we were unable to encode this message (TODO: |
| 425 | * check size) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 426 | */ |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 427 | static int peer_prepare_updatemsg(char *msg, size_t size, struct peer_prep_params *p) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 428 | { |
| 429 | uint32_t netinteger; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 430 | unsigned short datalen; |
| 431 | char *cursor, *datamsg; |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 432 | unsigned int data_type; |
| 433 | void *data_ptr; |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 434 | struct stksess *ts; |
| 435 | struct shared_table *st; |
| 436 | unsigned int updateid; |
| 437 | int use_identifier; |
| 438 | int use_timed; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 439 | struct peer *peer; |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 440 | |
| 441 | ts = p->updt.stksess; |
| 442 | st = p->updt.shared_table; |
| 443 | updateid = p->updt.updateid; |
| 444 | use_identifier = p->updt.use_identifier; |
| 445 | use_timed = p->updt.use_timed; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 446 | peer = p->updt.peer; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 447 | |
Frédéric Lécaille | 0e8db97 | 2019-05-24 14:34:34 +0200 | [diff] [blame] | 448 | cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 449 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 450 | /* construct message */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 451 | |
| 452 | /* check if we need to send the update identifer */ |
Emeric Brun | 819fc6f | 2017-06-13 19:37:32 +0200 | [diff] [blame] | 453 | if (!st->last_pushed || updateid < st->last_pushed || ((updateid - st->last_pushed) != 1)) { |
Emeric Brun | a6a0998 | 2015-09-22 15:34:19 +0200 | [diff] [blame] | 454 | use_identifier = 1; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 455 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 456 | |
| 457 | /* encode update identifier if needed */ |
| 458 | if (use_identifier) { |
Emeric Brun | 819fc6f | 2017-06-13 19:37:32 +0200 | [diff] [blame] | 459 | netinteger = htonl(updateid); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 460 | memcpy(cursor, &netinteger, sizeof(netinteger)); |
| 461 | cursor += sizeof(netinteger); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 462 | } |
| 463 | |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 464 | if (use_timed) { |
| 465 | netinteger = htonl(tick_remain(now_ms, ts->expire)); |
| 466 | memcpy(cursor, &netinteger, sizeof(netinteger)); |
| 467 | cursor += sizeof(netinteger); |
| 468 | } |
| 469 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 470 | /* encode the key */ |
Thierry FOURNIER | 5d24ebc | 2015-07-24 08:46:42 +0200 | [diff] [blame] | 471 | if (st->table->type == SMP_T_STR) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 472 | int stlen = strlen((char *)ts->key.key); |
| 473 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 474 | intencode(stlen, &cursor); |
| 475 | memcpy(cursor, ts->key.key, stlen); |
| 476 | cursor += stlen; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 477 | } |
Thierry FOURNIER | 5d24ebc | 2015-07-24 08:46:42 +0200 | [diff] [blame] | 478 | else if (st->table->type == SMP_T_SINT) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 479 | netinteger = htonl(*((uint32_t *)ts->key.key)); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 480 | memcpy(cursor, &netinteger, sizeof(netinteger)); |
| 481 | cursor += sizeof(netinteger); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 482 | } |
| 483 | else { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 484 | memcpy(cursor, ts->key.key, st->table->key_size); |
| 485 | cursor += st->table->key_size; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 486 | } |
| 487 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 488 | HA_RWLOCK_RDLOCK(STK_SESS_LOCK, &ts->lock); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 489 | /* encode values */ |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 490 | for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 491 | |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 492 | data_ptr = stktable_data_ptr(st->table, ts, data_type); |
| 493 | if (data_ptr) { |
| 494 | switch (stktable_data_types[data_type].std_type) { |
| 495 | case STD_T_SINT: { |
| 496 | int data; |
| 497 | |
| 498 | data = stktable_data_cast(data_ptr, std_t_sint); |
| 499 | intencode(data, &cursor); |
| 500 | break; |
| 501 | } |
| 502 | case STD_T_UINT: { |
| 503 | unsigned int data; |
| 504 | |
| 505 | data = stktable_data_cast(data_ptr, std_t_uint); |
| 506 | intencode(data, &cursor); |
| 507 | break; |
| 508 | } |
| 509 | case STD_T_ULL: { |
| 510 | unsigned long long data; |
| 511 | |
| 512 | data = stktable_data_cast(data_ptr, std_t_ull); |
| 513 | intencode(data, &cursor); |
| 514 | break; |
| 515 | } |
| 516 | case STD_T_FRQP: { |
| 517 | struct freq_ctr_period *frqp; |
| 518 | |
| 519 | frqp = &stktable_data_cast(data_ptr, std_t_frqp); |
| 520 | intencode((unsigned int)(now_ms - frqp->curr_tick), &cursor); |
| 521 | intencode(frqp->curr_ctr, &cursor); |
| 522 | intencode(frqp->prev_ctr, &cursor); |
| 523 | break; |
| 524 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 525 | case STD_T_DICT: { |
| 526 | struct dict_entry *de; |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 527 | struct ebpt_node *cached_de; |
Willy Tarreau | 237f8ae | 2019-06-06 16:40:43 +0200 | [diff] [blame] | 528 | struct dcache_tx_entry cde = { }; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 529 | char *beg, *end; |
| 530 | size_t value_len, data_len; |
| 531 | struct dcache *dc; |
| 532 | |
| 533 | de = stktable_data_cast(data_ptr, std_t_dict); |
Frédéric Lécaille | d9203ca | 2019-11-13 17:50:34 +0100 | [diff] [blame] | 534 | if (!de) { |
| 535 | /* No entry */ |
| 536 | intencode(0, &cursor); |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 537 | break; |
Frédéric Lécaille | d9203ca | 2019-11-13 17:50:34 +0100 | [diff] [blame] | 538 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 539 | |
| 540 | dc = peer->dcache; |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 541 | cde.entry.key = de; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 542 | cached_de = dcache_tx_insert(dc, &cde); |
Frédéric Lécaille | fd82793 | 2019-06-07 10:34:04 +0200 | [diff] [blame] | 543 | if (cached_de == &cde.entry) { |
| 544 | if (cde.id + 1 >= PEER_ENC_2BYTES_MIN) |
| 545 | break; |
| 546 | /* Encode the length of the remaining data -> 1 */ |
| 547 | intencode(1, &cursor); |
| 548 | /* Encode the cache entry ID */ |
| 549 | intencode(cde.id + 1, &cursor); |
| 550 | } |
| 551 | else { |
| 552 | /* Leave enough room to encode the remaining data length. */ |
| 553 | end = beg = cursor + PEER_MSG_ENC_LENGTH_MAXLEN; |
| 554 | /* Encode the dictionary entry key */ |
| 555 | intencode(cde.id + 1, &end); |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 556 | /* Encode the length of the dictionary entry data */ |
Frédéric Lécaille | fd82793 | 2019-06-07 10:34:04 +0200 | [diff] [blame] | 557 | value_len = de->len; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 558 | intencode(value_len, &end); |
| 559 | /* Copy the data */ |
| 560 | memcpy(end, de->value.key, value_len); |
| 561 | end += value_len; |
Frédéric Lécaille | fd82793 | 2019-06-07 10:34:04 +0200 | [diff] [blame] | 562 | /* Encode the length of the data */ |
| 563 | data_len = end - beg; |
| 564 | intencode(data_len, &cursor); |
| 565 | memmove(cursor, beg, data_len); |
| 566 | cursor += data_len; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 567 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 568 | break; |
| 569 | } |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 570 | } |
| 571 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 572 | } |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 573 | HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 574 | |
| 575 | /* Compute datalen */ |
| 576 | datalen = (cursor - datamsg); |
| 577 | |
| 578 | /* prepare message header */ |
| 579 | msg[0] = PEER_MSG_CLASS_STICKTABLE; |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 580 | peer_set_update_msg_type(&msg[1], use_identifier, use_timed); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 581 | cursor = &msg[2]; |
| 582 | intencode(datalen, &cursor); |
| 583 | |
| 584 | /* move data after header */ |
| 585 | memmove(cursor, datamsg, datalen); |
| 586 | |
| 587 | /* return header size + data_len */ |
| 588 | return (cursor - msg) + datalen; |
| 589 | } |
| 590 | |
| 591 | /* |
| 592 | * This prepare the switch table message to targeted share table <st>. |
Joseph Herlant | 82b2f54 | 2018-11-15 12:19:14 -0800 | [diff] [blame] | 593 | * <msg> is a buffer of <size> to receive data message content |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 594 | * If function returns 0, the caller should consider we were unable to encode this message (TODO: |
| 595 | * check size) |
| 596 | */ |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 597 | static int peer_prepare_switchmsg(char *msg, size_t size, struct peer_prep_params *params) |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 598 | { |
| 599 | int len; |
| 600 | unsigned short datalen; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 601 | struct buffer *chunk; |
Frédéric Lécaille | 37a7254 | 2017-07-06 15:02:16 +0200 | [diff] [blame] | 602 | char *cursor, *datamsg, *chunkp, *chunkq; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 603 | uint64_t data = 0; |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 604 | unsigned int data_type; |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 605 | struct shared_table *st; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 606 | |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 607 | st = params->swtch.shared_table; |
Frédéric Lécaille | 3914334 | 2019-05-24 14:32:27 +0200 | [diff] [blame] | 608 | cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 609 | |
| 610 | /* Encode data */ |
| 611 | |
| 612 | /* encode local id */ |
| 613 | intencode(st->local_id, &cursor); |
| 614 | |
| 615 | /* encode table name */ |
Frédéric Lécaille | 7fcc24d | 2019-03-20 15:09:45 +0100 | [diff] [blame] | 616 | len = strlen(st->table->nid); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 617 | intencode(len, &cursor); |
Frédéric Lécaille | 7fcc24d | 2019-03-20 15:09:45 +0100 | [diff] [blame] | 618 | memcpy(cursor, st->table->nid, len); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 619 | cursor += len; |
| 620 | |
| 621 | /* encode table type */ |
| 622 | |
| 623 | intencode(st->table->type, &cursor); |
| 624 | |
| 625 | /* encode table key size */ |
| 626 | intencode(st->table->key_size, &cursor); |
| 627 | |
Frédéric Lécaille | 37a7254 | 2017-07-06 15:02:16 +0200 | [diff] [blame] | 628 | chunk = get_trash_chunk(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 629 | chunkp = chunkq = chunk->area; |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 630 | /* encode available known data types in table */ |
| 631 | for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) { |
| 632 | if (st->table->data_ofs[data_type]) { |
| 633 | switch (stktable_data_types[data_type].std_type) { |
| 634 | case STD_T_SINT: |
| 635 | case STD_T_UINT: |
| 636 | case STD_T_ULL: |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 637 | case STD_T_DICT: |
Frédéric Lécaille | 37a7254 | 2017-07-06 15:02:16 +0200 | [diff] [blame] | 638 | data |= 1 << data_type; |
| 639 | break; |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 640 | case STD_T_FRQP: |
| 641 | data |= 1 << data_type; |
Frédéric Lécaille | 37a7254 | 2017-07-06 15:02:16 +0200 | [diff] [blame] | 642 | intencode(data_type, &chunkq); |
| 643 | intencode(st->table->data_arg[data_type].u, &chunkq); |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 644 | break; |
| 645 | } |
| 646 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 647 | } |
| 648 | intencode(data, &cursor); |
| 649 | |
Frédéric Lécaille | 37a7254 | 2017-07-06 15:02:16 +0200 | [diff] [blame] | 650 | /* Encode stick-table entries duration. */ |
| 651 | intencode(st->table->expire, &cursor); |
| 652 | |
| 653 | if (chunkq > chunkp) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 654 | chunk->data = chunkq - chunkp; |
| 655 | memcpy(cursor, chunk->area, chunk->data); |
| 656 | cursor += chunk->data; |
Frédéric Lécaille | 37a7254 | 2017-07-06 15:02:16 +0200 | [diff] [blame] | 657 | } |
| 658 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 659 | /* Compute datalen */ |
| 660 | datalen = (cursor - datamsg); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 661 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 662 | /* prepare message header */ |
| 663 | msg[0] = PEER_MSG_CLASS_STICKTABLE; |
| 664 | msg[1] = PEER_MSG_STKT_DEFINE; |
| 665 | cursor = &msg[2]; |
| 666 | intencode(datalen, &cursor); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 667 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 668 | /* move data after header */ |
| 669 | memmove(cursor, datamsg, datalen); |
| 670 | |
| 671 | /* return header size + data_len */ |
| 672 | return (cursor - msg) + datalen; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 673 | } |
| 674 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 675 | /* |
| 676 | * This prepare the acknowledge message on the stick session <ts>, <st> is the considered |
| 677 | * stick table. |
Joseph Herlant | 82b2f54 | 2018-11-15 12:19:14 -0800 | [diff] [blame] | 678 | * <msg> is a buffer of <size> to receive data message content |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 679 | * If function returns 0, the caller should consider we were unable to encode this message (TODO: |
| 680 | * check size) |
| 681 | */ |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 682 | static int peer_prepare_ackmsg(char *msg, size_t size, struct peer_prep_params *p) |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 683 | { |
| 684 | unsigned short datalen; |
| 685 | char *cursor, *datamsg; |
| 686 | uint32_t netinteger; |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 687 | struct shared_table *st; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 688 | |
Frédéric Lécaille | 3914334 | 2019-05-24 14:32:27 +0200 | [diff] [blame] | 689 | cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 690 | |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 691 | st = p->ack.shared_table; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 692 | intencode(st->remote_id, &cursor); |
| 693 | netinteger = htonl(st->last_get); |
| 694 | memcpy(cursor, &netinteger, sizeof(netinteger)); |
| 695 | cursor += sizeof(netinteger); |
| 696 | |
| 697 | /* Compute datalen */ |
| 698 | datalen = (cursor - datamsg); |
| 699 | |
| 700 | /* prepare message header */ |
| 701 | msg[0] = PEER_MSG_CLASS_STICKTABLE; |
Emeric Brun | e1ab808 | 2015-08-21 11:48:54 +0200 | [diff] [blame] | 702 | msg[1] = PEER_MSG_STKT_ACK; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 703 | cursor = &msg[2]; |
| 704 | intencode(datalen, &cursor); |
| 705 | |
| 706 | /* move data after header */ |
| 707 | memmove(cursor, datamsg, datalen); |
| 708 | |
| 709 | /* return header size + data_len */ |
| 710 | return (cursor - msg) + datalen; |
| 711 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 712 | |
| 713 | /* |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 714 | * Function to deinit connected peer |
| 715 | */ |
| 716 | void __peer_session_deinit(struct peer *peer) |
| 717 | { |
| 718 | struct stream_interface *si; |
| 719 | struct stream *s; |
| 720 | struct peers *peers; |
| 721 | |
| 722 | if (!peer->appctx) |
| 723 | return; |
| 724 | |
| 725 | si = peer->appctx->owner; |
| 726 | if (!si) |
| 727 | return; |
| 728 | |
| 729 | s = si_strm(si); |
| 730 | if (!s) |
| 731 | return; |
| 732 | |
| 733 | peers = strm_fe(s)->parent; |
| 734 | if (!peers) |
| 735 | return; |
| 736 | |
| 737 | if (peer->appctx->st0 == PEER_SESS_ST_WAITMSG) |
| 738 | HA_ATOMIC_SUB(&connected_peers, 1); |
| 739 | |
| 740 | HA_ATOMIC_SUB(&active_peers, 1); |
| 741 | |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 742 | flush_dcache(peer); |
| 743 | |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 744 | /* Re-init current table pointers to force announcement on re-connect */ |
| 745 | peer->remote_table = peer->last_local_table = NULL; |
| 746 | peer->appctx = NULL; |
| 747 | if (peer->flags & PEER_F_LEARN_ASSIGN) { |
| 748 | /* unassign current peer for learning */ |
| 749 | peer->flags &= ~(PEER_F_LEARN_ASSIGN); |
| 750 | peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS); |
| 751 | |
| 752 | /* reschedule a resync */ |
| 753 | peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000)); |
| 754 | } |
| 755 | /* reset teaching and learning flags to 0 */ |
| 756 | peer->flags &= PEER_TEACH_RESET; |
| 757 | peer->flags &= PEER_LEARN_RESET; |
Frédéric Lécaille | be1c4bc | 2019-11-20 11:17:30 +0100 | [diff] [blame] | 758 | /* set this peer as dead from heartbeat point of view */ |
| 759 | peer->flags &= ~PEER_F_ALIVE; |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 760 | task_wakeup(peers->sync_task, TASK_WOKEN_MSG); |
| 761 | } |
| 762 | |
| 763 | /* |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 764 | * Callback to release a session with a peer |
| 765 | */ |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 766 | static void peer_session_release(struct appctx *appctx) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 767 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 768 | struct peer *peer = appctx->ctx.peers.ptr; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 769 | |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 770 | /* appctx->ctx.peers.ptr is not a peer session */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 771 | if (appctx->st0 < PEER_SESS_ST_SENDSUCCESS) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 772 | return; |
| 773 | |
| 774 | /* peer session identified */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 775 | if (peer) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 776 | HA_SPIN_LOCK(PEER_LOCK, &peer->lock); |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 777 | if (peer->appctx == appctx) |
| 778 | __peer_session_deinit(peer); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 779 | HA_SPIN_UNLOCK(PEER_LOCK, &peer->lock); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 780 | } |
| 781 | } |
| 782 | |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 783 | /* Retrieve the major and minor versions of peers protocol |
| 784 | * announced by a remote peer. <str> is a null-terminated |
| 785 | * string with the following format: "<maj_ver>.<min_ver>". |
| 786 | */ |
| 787 | static int peer_get_version(const char *str, |
| 788 | unsigned int *maj_ver, unsigned int *min_ver) |
| 789 | { |
| 790 | unsigned int majv, minv; |
| 791 | const char *pos, *saved; |
| 792 | const char *end; |
| 793 | |
| 794 | saved = pos = str; |
| 795 | end = str + strlen(str); |
| 796 | |
| 797 | majv = read_uint(&pos, end); |
| 798 | if (saved == pos || *pos++ != '.') |
| 799 | return -1; |
| 800 | |
| 801 | saved = pos; |
| 802 | minv = read_uint(&pos, end); |
| 803 | if (saved == pos || pos != end) |
| 804 | return -1; |
| 805 | |
| 806 | *maj_ver = majv; |
| 807 | *min_ver = minv; |
| 808 | |
| 809 | return 0; |
| 810 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 811 | |
| 812 | /* |
Frédéric Lécaille | ce02557 | 2019-01-21 13:38:06 +0100 | [diff] [blame] | 813 | * Parse a line terminated by an optional '\r' character, followed by a mandatory |
| 814 | * '\n' character. |
| 815 | * Returns 1 if succeeded or 0 if a '\n' character could not be found, and -1 if |
| 816 | * a line could not be read because the communication channel is closed. |
| 817 | */ |
| 818 | static inline int peer_getline(struct appctx *appctx) |
| 819 | { |
| 820 | int n; |
| 821 | struct stream_interface *si = appctx->owner; |
| 822 | |
| 823 | n = co_getline(si_oc(si), trash.area, trash.size); |
| 824 | if (!n) |
| 825 | return 0; |
| 826 | |
| 827 | if (n < 0 || trash.area[n - 1] != '\n') { |
| 828 | appctx->st0 = PEER_SESS_ST_END; |
| 829 | return -1; |
| 830 | } |
| 831 | |
| 832 | if (n > 1 && (trash.area[n - 2] == '\r')) |
| 833 | trash.area[n - 2] = 0; |
| 834 | else |
| 835 | trash.area[n - 1] = 0; |
| 836 | |
| 837 | co_skip(si_oc(si), n); |
| 838 | |
| 839 | return n; |
| 840 | } |
| 841 | |
| 842 | /* |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 843 | * Send a message after having called <peer_prepare_msg> to build it. |
| 844 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 845 | * Returns -1 if there was not enough room left to send the message, |
| 846 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 847 | * returned value equal to PEER_SESS_ST_END. |
| 848 | */ |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 849 | static inline int peer_send_msg(struct appctx *appctx, |
| 850 | int (*peer_prepare_msg)(char *, size_t, struct peer_prep_params *), |
| 851 | struct peer_prep_params *params) |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 852 | { |
| 853 | int ret, msglen; |
| 854 | struct stream_interface *si = appctx->owner; |
| 855 | |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 856 | msglen = peer_prepare_msg(trash.area, trash.size, params); |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 857 | if (!msglen) { |
| 858 | /* internal error: message does not fit in trash */ |
| 859 | appctx->st0 = PEER_SESS_ST_END; |
| 860 | return 0; |
| 861 | } |
| 862 | |
| 863 | /* message to buffer */ |
| 864 | ret = ci_putblk(si_ic(si), trash.area, msglen); |
| 865 | if (ret <= 0) { |
| 866 | if (ret == -1) { |
| 867 | /* No more write possible */ |
| 868 | si_rx_room_blk(si); |
| 869 | return -1; |
| 870 | } |
| 871 | appctx->st0 = PEER_SESS_ST_END; |
| 872 | } |
| 873 | |
| 874 | return ret; |
| 875 | } |
| 876 | |
| 877 | /* |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 878 | * Send a hello message. |
| 879 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 880 | * Returns -1 if there was not enough room left to send the message, |
| 881 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 882 | * returned value equal to PEER_SESS_ST_END. |
| 883 | */ |
| 884 | static inline int peer_send_hellomsg(struct appctx *appctx, struct peer *peer) |
| 885 | { |
| 886 | struct peer_prep_params p = { |
| 887 | .hello.peer = peer, |
| 888 | }; |
| 889 | |
| 890 | return peer_send_msg(appctx, peer_prepare_hellomsg, &p); |
| 891 | } |
| 892 | |
| 893 | /* |
| 894 | * Send a success peer handshake status message. |
| 895 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 896 | * Returns -1 if there was not enough room left to send the message, |
| 897 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 898 | * returned value equal to PEER_SESS_ST_END. |
| 899 | */ |
| 900 | static inline int peer_send_status_successmsg(struct appctx *appctx) |
| 901 | { |
| 902 | return peer_send_msg(appctx, peer_prepare_status_successmsg, NULL); |
| 903 | } |
| 904 | |
| 905 | /* |
| 906 | * Send a peer handshake status error message. |
| 907 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 908 | * Returns -1 if there was not enough room left to send the message, |
| 909 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 910 | * returned value equal to PEER_SESS_ST_END. |
| 911 | */ |
| 912 | static inline int peer_send_status_errormsg(struct appctx *appctx) |
| 913 | { |
| 914 | struct peer_prep_params p = { |
| 915 | .error_status.st1 = appctx->st1, |
| 916 | }; |
| 917 | |
| 918 | return peer_send_msg(appctx, peer_prepare_status_errormsg, &p); |
| 919 | } |
| 920 | |
| 921 | /* |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 922 | * Send a stick-table switch message. |
| 923 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 924 | * Returns -1 if there was not enough room left to send the message, |
| 925 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 926 | * returned value equal to PEER_SESS_ST_END. |
| 927 | */ |
| 928 | static inline int peer_send_switchmsg(struct shared_table *st, struct appctx *appctx) |
| 929 | { |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 930 | struct peer_prep_params p = { |
| 931 | .swtch.shared_table = st, |
| 932 | }; |
| 933 | |
| 934 | return peer_send_msg(appctx, peer_prepare_switchmsg, &p); |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 935 | } |
| 936 | |
| 937 | /* |
| 938 | * Send a stick-table update acknowledgement message. |
| 939 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 940 | * Returns -1 if there was not enough room left to send the message, |
| 941 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 942 | * returned value equal to PEER_SESS_ST_END. |
| 943 | */ |
| 944 | static inline int peer_send_ackmsg(struct shared_table *st, struct appctx *appctx) |
| 945 | { |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 946 | struct peer_prep_params p = { |
| 947 | .ack.shared_table = st, |
| 948 | }; |
| 949 | |
| 950 | return peer_send_msg(appctx, peer_prepare_ackmsg, &p); |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 951 | } |
| 952 | |
| 953 | /* |
Frédéric Lécaille | 87f554c | 2019-01-22 17:26:50 +0100 | [diff] [blame] | 954 | * Send a stick-table update message. |
| 955 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 956 | * Returns -1 if there was not enough room left to send the message, |
| 957 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 958 | * returned value equal to PEER_SESS_ST_END. |
| 959 | */ |
| 960 | static inline int peer_send_updatemsg(struct shared_table *st, struct appctx *appctx, struct stksess *ts, |
| 961 | unsigned int updateid, int use_identifier, int use_timed) |
| 962 | { |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 963 | struct peer_prep_params p = { |
| 964 | .updt.stksess = ts, |
| 965 | .updt.shared_table = st, |
| 966 | .updt.updateid = updateid, |
| 967 | .updt.use_identifier = use_identifier, |
| 968 | .updt.use_timed = use_timed, |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 969 | .updt.peer = appctx->ctx.peers.ptr, |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 970 | }; |
| 971 | |
| 972 | return peer_send_msg(appctx, peer_prepare_updatemsg, &p); |
Frédéric Lécaille | 87f554c | 2019-01-22 17:26:50 +0100 | [diff] [blame] | 973 | } |
| 974 | |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 975 | /* |
| 976 | * Build a peer protocol control class message. |
| 977 | * Returns the number of written bytes used to build the message if succeeded, |
| 978 | * 0 if not. |
| 979 | */ |
| 980 | static int peer_prepare_control_msg(char *msg, size_t size, struct peer_prep_params *p) |
| 981 | { |
| 982 | if (size < sizeof p->control.head) |
| 983 | return 0; |
| 984 | |
| 985 | msg[0] = p->control.head[0]; |
| 986 | msg[1] = p->control.head[1]; |
| 987 | |
| 988 | return 2; |
| 989 | } |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 990 | |
| 991 | /* |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 992 | * Send a stick-table synchronization request message. |
| 993 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 994 | * Returns -1 if there was not enough room left to send the message, |
| 995 | * any other negative returned value must be considered as an error with an appctx st0 |
| 996 | * returned value equal to PEER_SESS_ST_END. |
| 997 | */ |
| 998 | static inline int peer_send_resync_reqmsg(struct appctx *appctx) |
| 999 | { |
| 1000 | struct peer_prep_params p = { |
| 1001 | .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCREQ, }, |
| 1002 | }; |
| 1003 | |
| 1004 | return peer_send_msg(appctx, peer_prepare_control_msg, &p); |
| 1005 | } |
| 1006 | |
| 1007 | /* |
| 1008 | * Send a stick-table synchronization confirmation message. |
| 1009 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1010 | * Returns -1 if there was not enough room left to send the message, |
| 1011 | * any other negative returned value must be considered as an error with an appctx st0 |
| 1012 | * returned value equal to PEER_SESS_ST_END. |
| 1013 | */ |
| 1014 | static inline int peer_send_resync_confirmsg(struct appctx *appctx) |
| 1015 | { |
| 1016 | struct peer_prep_params p = { |
| 1017 | .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCCONFIRM, }, |
| 1018 | }; |
| 1019 | |
| 1020 | return peer_send_msg(appctx, peer_prepare_control_msg, &p); |
| 1021 | } |
| 1022 | |
| 1023 | /* |
| 1024 | * Send a stick-table synchronization finished message. |
| 1025 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1026 | * Returns -1 if there was not enough room left to send the message, |
| 1027 | * any other negative returned value must be considered as an error with an appctx st0 |
| 1028 | * returned value equal to PEER_SESS_ST_END. |
| 1029 | */ |
Emeric Brun | deda2a6 | 2020-03-16 10:51:01 +0100 | [diff] [blame] | 1030 | static inline int peer_send_resync_finishedmsg(struct appctx *appctx, struct peers *peers) |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 1031 | { |
| 1032 | struct peer_prep_params p = { |
| 1033 | .control.head = { PEER_MSG_CLASS_CONTROL, }, |
| 1034 | }; |
| 1035 | |
Emeric Brun | deda2a6 | 2020-03-16 10:51:01 +0100 | [diff] [blame] | 1036 | p.control.head[1] = (peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FINISHED ? |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 1037 | PEER_MSG_CTRL_RESYNCFINISHED : PEER_MSG_CTRL_RESYNCPARTIAL; |
| 1038 | |
| 1039 | return peer_send_msg(appctx, peer_prepare_control_msg, &p); |
| 1040 | } |
| 1041 | |
| 1042 | /* |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 1043 | * Send a heartbeat message. |
| 1044 | * Return 0 if the message could not be built modifying the appctx st0 to PEER_SESS_ST_END value. |
| 1045 | * Returns -1 if there was not enough room left to send the message, |
| 1046 | * any other negative returned value must be considered as an error with an appctx st0 |
| 1047 | * returned value equal to PEER_SESS_ST_END. |
| 1048 | */ |
| 1049 | static inline int peer_send_heartbeatmsg(struct appctx *appctx) |
| 1050 | { |
| 1051 | struct peer_prep_params p = { |
| 1052 | .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_HEARTBEAT, }, |
| 1053 | }; |
| 1054 | |
| 1055 | return peer_send_msg(appctx, peer_prepare_control_msg, &p); |
| 1056 | } |
| 1057 | |
| 1058 | /* |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 1059 | * Build a peer protocol error class message. |
| 1060 | * Returns the number of written bytes used to build the message if succeeded, |
| 1061 | * 0 if not. |
| 1062 | */ |
| 1063 | static int peer_prepare_error_msg(char *msg, size_t size, struct peer_prep_params *p) |
| 1064 | { |
| 1065 | if (size < sizeof p->error.head) |
| 1066 | return 0; |
| 1067 | |
| 1068 | msg[0] = p->error.head[0]; |
| 1069 | msg[1] = p->error.head[1]; |
| 1070 | |
| 1071 | return 2; |
| 1072 | } |
| 1073 | |
| 1074 | /* |
| 1075 | * Send a "size limit reached" error message. |
| 1076 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1077 | * Returns -1 if there was not enough room left to send the message, |
| 1078 | * any other negative returned value must be considered as an error with an appctx st0 |
| 1079 | * returned value equal to PEER_SESS_ST_END. |
| 1080 | */ |
| 1081 | static inline int peer_send_error_size_limitmsg(struct appctx *appctx) |
| 1082 | { |
| 1083 | struct peer_prep_params p = { |
| 1084 | .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_SIZELIMIT, }, |
| 1085 | }; |
| 1086 | |
| 1087 | return peer_send_msg(appctx, peer_prepare_error_msg, &p); |
| 1088 | } |
| 1089 | |
| 1090 | /* |
| 1091 | * Send a "peer protocol" error message. |
| 1092 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1093 | * Returns -1 if there was not enough room left to send the message, |
| 1094 | * any other negative returned value must be considered as an error with an appctx st0 |
| 1095 | * returned value equal to PEER_SESS_ST_END. |
| 1096 | */ |
| 1097 | static inline int peer_send_error_protomsg(struct appctx *appctx) |
| 1098 | { |
| 1099 | struct peer_prep_params p = { |
| 1100 | .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_PROTOCOL, }, |
| 1101 | }; |
| 1102 | |
| 1103 | return peer_send_msg(appctx, peer_prepare_error_msg, &p); |
| 1104 | } |
| 1105 | |
| 1106 | /* |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1107 | * Function used to lookup for recent stick-table updates associated with |
| 1108 | * <st> shared stick-table when a lesson must be taught a peer (PEER_F_LEARN_ASSIGN flag set). |
| 1109 | */ |
| 1110 | static inline struct stksess *peer_teach_process_stksess_lookup(struct shared_table *st) |
| 1111 | { |
| 1112 | struct eb32_node *eb; |
| 1113 | |
| 1114 | eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1); |
| 1115 | if (!eb) { |
| 1116 | eb = eb32_first(&st->table->updates); |
| 1117 | if (!eb || ((int)(eb->key - st->last_pushed) <= 0)) { |
| 1118 | st->table->commitupdate = st->last_pushed = st->table->localupdate; |
| 1119 | return NULL; |
| 1120 | } |
| 1121 | } |
| 1122 | |
| 1123 | if ((int)(eb->key - st->table->localupdate) > 0) { |
| 1124 | st->table->commitupdate = st->last_pushed = st->table->localupdate; |
| 1125 | return NULL; |
| 1126 | } |
| 1127 | |
| 1128 | return eb32_entry(eb, struct stksess, upd); |
| 1129 | } |
| 1130 | |
| 1131 | /* |
| 1132 | * Function used to lookup for recent stick-table updates associated with |
| 1133 | * <st> shared stick-table during teach state 1 step. |
| 1134 | */ |
| 1135 | static inline struct stksess *peer_teach_stage1_stksess_lookup(struct shared_table *st) |
| 1136 | { |
| 1137 | struct eb32_node *eb; |
| 1138 | |
| 1139 | eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1); |
| 1140 | if (!eb) { |
| 1141 | st->flags |= SHTABLE_F_TEACH_STAGE1; |
| 1142 | eb = eb32_first(&st->table->updates); |
| 1143 | if (eb) |
| 1144 | st->last_pushed = eb->key - 1; |
| 1145 | return NULL; |
| 1146 | } |
| 1147 | |
| 1148 | return eb32_entry(eb, struct stksess, upd); |
| 1149 | } |
| 1150 | |
| 1151 | /* |
| 1152 | * Function used to lookup for recent stick-table updates associated with |
| 1153 | * <st> shared stick-table during teach state 2 step. |
| 1154 | */ |
| 1155 | static inline struct stksess *peer_teach_stage2_stksess_lookup(struct shared_table *st) |
| 1156 | { |
| 1157 | struct eb32_node *eb; |
| 1158 | |
| 1159 | eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1); |
| 1160 | if (!eb || eb->key > st->teaching_origin) { |
| 1161 | st->flags |= SHTABLE_F_TEACH_STAGE2; |
| 1162 | return NULL; |
| 1163 | } |
| 1164 | |
| 1165 | return eb32_entry(eb, struct stksess, upd); |
| 1166 | } |
| 1167 | |
| 1168 | /* |
| 1169 | * Generic function to emit update messages for <st> stick-table when a lesson must |
| 1170 | * be taught to the peer <p>. |
| 1171 | * <locked> must be set to 1 if the shared table <st> is already locked when entering |
| 1172 | * this function, 0 if not. |
| 1173 | * |
| 1174 | * This function temporary unlock/lock <st> when it sends stick-table updates or |
| 1175 | * when decrementing its refcount in case of any error when it sends this updates. |
| 1176 | * |
| 1177 | * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1178 | * Returns -1 if there was not enough room left to send the message, |
| 1179 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1180 | * returned value equal to PEER_SESS_ST_END. |
| 1181 | * If it returns 0 or -1, this function leave <st> locked if already locked when entering this function |
| 1182 | * unlocked if not already locked when entering this function. |
| 1183 | */ |
| 1184 | static inline int peer_send_teachmsgs(struct appctx *appctx, struct peer *p, |
| 1185 | struct stksess *(*peer_stksess_lookup)(struct shared_table *), |
| 1186 | struct shared_table *st, int locked) |
| 1187 | { |
| 1188 | int ret, new_pushed, use_timed; |
| 1189 | |
| 1190 | ret = 1; |
| 1191 | use_timed = 0; |
| 1192 | if (st != p->last_local_table) { |
| 1193 | ret = peer_send_switchmsg(st, appctx); |
| 1194 | if (ret <= 0) |
| 1195 | return ret; |
| 1196 | |
| 1197 | p->last_local_table = st; |
| 1198 | } |
| 1199 | |
| 1200 | if (peer_stksess_lookup != peer_teach_process_stksess_lookup) |
| 1201 | use_timed = !(p->flags & PEER_F_DWNGRD); |
| 1202 | |
| 1203 | /* We force new pushed to 1 to force identifier in update message */ |
| 1204 | new_pushed = 1; |
| 1205 | |
| 1206 | if (!locked) |
| 1207 | HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock); |
| 1208 | |
| 1209 | while (1) { |
| 1210 | struct stksess *ts; |
| 1211 | unsigned updateid; |
| 1212 | |
| 1213 | /* push local updates */ |
| 1214 | ts = peer_stksess_lookup(st); |
| 1215 | if (!ts) |
| 1216 | break; |
| 1217 | |
| 1218 | updateid = ts->upd.key; |
| 1219 | ts->ref_cnt++; |
| 1220 | HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock); |
| 1221 | |
| 1222 | ret = peer_send_updatemsg(st, appctx, ts, updateid, new_pushed, use_timed); |
| 1223 | if (ret <= 0) { |
| 1224 | HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock); |
| 1225 | ts->ref_cnt--; |
| 1226 | if (!locked) |
| 1227 | HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock); |
| 1228 | return ret; |
| 1229 | } |
| 1230 | |
| 1231 | HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock); |
| 1232 | ts->ref_cnt--; |
| 1233 | st->last_pushed = updateid; |
| 1234 | |
| 1235 | if (peer_stksess_lookup == peer_teach_process_stksess_lookup && |
| 1236 | (int)(st->last_pushed - st->table->commitupdate) > 0) |
| 1237 | st->table->commitupdate = st->last_pushed; |
| 1238 | |
| 1239 | /* identifier may not needed in next update message */ |
| 1240 | new_pushed = 0; |
| 1241 | } |
| 1242 | |
| 1243 | out: |
| 1244 | if (!locked) |
| 1245 | HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock); |
| 1246 | return 1; |
| 1247 | } |
| 1248 | |
| 1249 | /* |
| 1250 | * Function to emit update messages for <st> stick-table when a lesson must |
| 1251 | * be taught to the peer <p> (PEER_F_LEARN_ASSIGN flag set). |
| 1252 | * |
| 1253 | * Note that <st> shared stick-table is locked when calling this function. |
| 1254 | * |
| 1255 | * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1256 | * Returns -1 if there was not enough room left to send the message, |
| 1257 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1258 | * returned value equal to PEER_SESS_ST_END. |
| 1259 | */ |
| 1260 | static inline int peer_send_teach_process_msgs(struct appctx *appctx, struct peer *p, |
| 1261 | struct shared_table *st) |
| 1262 | { |
| 1263 | return peer_send_teachmsgs(appctx, p, peer_teach_process_stksess_lookup, st, 1); |
| 1264 | } |
| 1265 | |
| 1266 | /* |
| 1267 | * Function to emit update messages for <st> stick-table when a lesson must |
| 1268 | * be taught to the peer <p> during teach state 1 step. |
| 1269 | * |
| 1270 | * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1271 | * Returns -1 if there was not enough room left to send the message, |
| 1272 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1273 | * returned value equal to PEER_SESS_ST_END. |
| 1274 | */ |
| 1275 | static inline int peer_send_teach_stage1_msgs(struct appctx *appctx, struct peer *p, |
| 1276 | struct shared_table *st) |
| 1277 | { |
| 1278 | return peer_send_teachmsgs(appctx, p, peer_teach_stage1_stksess_lookup, st, 0); |
| 1279 | } |
| 1280 | |
| 1281 | /* |
| 1282 | * Function to emit update messages for <st> stick-table when a lesson must |
| 1283 | * be taught to the peer <p> during teach state 1 step. |
| 1284 | * |
| 1285 | * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1286 | * Returns -1 if there was not enough room left to send the message, |
| 1287 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1288 | * returned value equal to PEER_SESS_ST_END. |
| 1289 | */ |
| 1290 | static inline int peer_send_teach_stage2_msgs(struct appctx *appctx, struct peer *p, |
| 1291 | struct shared_table *st) |
| 1292 | { |
| 1293 | return peer_send_teachmsgs(appctx, p, peer_teach_stage2_stksess_lookup, st, 0); |
| 1294 | } |
| 1295 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1296 | |
| 1297 | /* |
| 1298 | * Function used to parse a stick-table update message after it has been received |
| 1299 | * by <p> peer with <msg_cur> as address of the pointer to the position in the |
| 1300 | * receipt buffer with <msg_end> being position of the end of the stick-table message. |
| 1301 | * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error |
| 1302 | * was encountered. |
| 1303 | * <exp> must be set if the stick-table entry expires. |
| 1304 | * <updt> must be set for PEER_MSG_STKT_UPDATE or PEER_MSG_STKT_UPDATE_TIMED stick-table |
| 1305 | * messages, in this case the stick-table udpate message is received with a stick-table |
| 1306 | * update ID. |
| 1307 | * <totl> is the length of the stick-table update message computed upon receipt. |
| 1308 | */ |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 1309 | static int peer_treat_updatemsg(struct appctx *appctx, struct peer *p, int updt, int exp, |
| 1310 | char **msg_cur, char *msg_end, int msg_len, int totl) |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1311 | { |
| 1312 | struct stream_interface *si = appctx->owner; |
| 1313 | struct shared_table *st = p->remote_table; |
| 1314 | struct stksess *ts, *newts; |
| 1315 | uint32_t update; |
| 1316 | int expire; |
| 1317 | unsigned int data_type; |
| 1318 | void *data_ptr; |
| 1319 | |
| 1320 | /* Here we have data message */ |
| 1321 | if (!st) |
| 1322 | goto ignore_msg; |
| 1323 | |
| 1324 | expire = MS_TO_TICKS(st->table->expire); |
| 1325 | |
| 1326 | if (updt) { |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1327 | if (msg_len < sizeof(update)) |
| 1328 | goto malformed_exit; |
| 1329 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1330 | memcpy(&update, *msg_cur, sizeof(update)); |
| 1331 | *msg_cur += sizeof(update); |
| 1332 | st->last_get = htonl(update); |
| 1333 | } |
| 1334 | else { |
| 1335 | st->last_get++; |
| 1336 | } |
| 1337 | |
| 1338 | if (exp) { |
| 1339 | size_t expire_sz = sizeof expire; |
| 1340 | |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1341 | if (*msg_cur + expire_sz > msg_end) |
| 1342 | goto malformed_exit; |
| 1343 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1344 | memcpy(&expire, *msg_cur, expire_sz); |
| 1345 | *msg_cur += expire_sz; |
| 1346 | expire = ntohl(expire); |
| 1347 | } |
| 1348 | |
| 1349 | newts = stksess_new(st->table, NULL); |
| 1350 | if (!newts) |
| 1351 | goto ignore_msg; |
| 1352 | |
| 1353 | if (st->table->type == SMP_T_STR) { |
| 1354 | unsigned int to_read, to_store; |
| 1355 | |
| 1356 | to_read = intdecode(msg_cur, msg_end); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1357 | if (!*msg_cur) |
| 1358 | goto malformed_free_newts; |
| 1359 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1360 | to_store = MIN(to_read, st->table->key_size - 1); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1361 | if (*msg_cur + to_store > msg_end) |
| 1362 | goto malformed_free_newts; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1363 | |
| 1364 | memcpy(newts->key.key, *msg_cur, to_store); |
| 1365 | newts->key.key[to_store] = 0; |
| 1366 | *msg_cur += to_read; |
| 1367 | } |
| 1368 | else if (st->table->type == SMP_T_SINT) { |
| 1369 | unsigned int netinteger; |
| 1370 | |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1371 | if (*msg_cur + sizeof(netinteger) > msg_end) |
| 1372 | goto malformed_free_newts; |
| 1373 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1374 | memcpy(&netinteger, *msg_cur, sizeof(netinteger)); |
| 1375 | netinteger = ntohl(netinteger); |
| 1376 | memcpy(newts->key.key, &netinteger, sizeof(netinteger)); |
| 1377 | *msg_cur += sizeof(netinteger); |
| 1378 | } |
| 1379 | else { |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1380 | if (*msg_cur + st->table->key_size > msg_end) |
| 1381 | goto malformed_free_newts; |
| 1382 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1383 | memcpy(newts->key.key, *msg_cur, st->table->key_size); |
| 1384 | *msg_cur += st->table->key_size; |
| 1385 | } |
| 1386 | |
| 1387 | /* lookup for existing entry */ |
| 1388 | ts = stktable_set_entry(st->table, newts); |
| 1389 | if (ts != newts) { |
| 1390 | stksess_free(st->table, newts); |
| 1391 | newts = NULL; |
| 1392 | } |
| 1393 | |
| 1394 | HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock); |
| 1395 | |
| 1396 | for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) { |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1397 | uint64_t decoded_int; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1398 | |
| 1399 | if (!((1 << data_type) & st->remote_data)) |
| 1400 | continue; |
| 1401 | |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1402 | decoded_int = intdecode(msg_cur, msg_end); |
| 1403 | if (!*msg_cur) |
| 1404 | goto malformed_unlock; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1405 | |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1406 | switch (stktable_data_types[data_type].std_type) { |
| 1407 | case STD_T_SINT: |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1408 | data_ptr = stktable_data_ptr(st->table, ts, data_type); |
| 1409 | if (data_ptr) |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1410 | stktable_data_cast(data_ptr, std_t_sint) = decoded_int; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1411 | break; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1412 | |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1413 | case STD_T_UINT: |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1414 | data_ptr = stktable_data_ptr(st->table, ts, data_type); |
| 1415 | if (data_ptr) |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1416 | stktable_data_cast(data_ptr, std_t_uint) = decoded_int; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1417 | break; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1418 | |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1419 | case STD_T_ULL: |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1420 | data_ptr = stktable_data_ptr(st->table, ts, data_type); |
| 1421 | if (data_ptr) |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1422 | stktable_data_cast(data_ptr, std_t_ull) = decoded_int; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1423 | break; |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1424 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1425 | case STD_T_FRQP: { |
| 1426 | struct freq_ctr_period data; |
| 1427 | |
| 1428 | /* First bit is reserved for the freq_ctr_period lock |
| 1429 | Note: here we're still protected by the stksess lock |
| 1430 | so we don't need to update the update the freq_ctr_period |
| 1431 | using its internal lock */ |
| 1432 | |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1433 | data.curr_tick = tick_add(now_ms, -decoded_int) & ~0x1; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1434 | data.curr_ctr = intdecode(msg_cur, msg_end); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1435 | if (!*msg_cur) |
| 1436 | goto malformed_unlock; |
| 1437 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1438 | data.prev_ctr = intdecode(msg_cur, msg_end); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1439 | if (!*msg_cur) |
| 1440 | goto malformed_unlock; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1441 | |
| 1442 | data_ptr = stktable_data_ptr(st->table, ts, data_type); |
| 1443 | if (data_ptr) |
| 1444 | stktable_data_cast(data_ptr, std_t_frqp) = data; |
| 1445 | break; |
| 1446 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1447 | case STD_T_DICT: { |
| 1448 | struct buffer *chunk; |
| 1449 | size_t data_len, value_len; |
| 1450 | unsigned int id; |
| 1451 | struct dict_entry *de; |
| 1452 | struct dcache *dc; |
Frédéric Lécaille | 344e948 | 2019-06-05 10:20:09 +0200 | [diff] [blame] | 1453 | char *end; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1454 | |
Frédéric Lécaille | d9203ca | 2019-11-13 17:50:34 +0100 | [diff] [blame] | 1455 | if (!decoded_int) { |
| 1456 | /* No entry. */ |
| 1457 | break; |
| 1458 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1459 | data_len = decoded_int; |
| 1460 | if (*msg_cur + data_len > msg_end) |
| 1461 | goto malformed_unlock; |
| 1462 | |
Frédéric Lécaille | 344e948 | 2019-06-05 10:20:09 +0200 | [diff] [blame] | 1463 | /* Compute the end of the current data, <msg_end> being at the end of |
| 1464 | * the entire message. |
| 1465 | */ |
| 1466 | end = *msg_cur + data_len; |
| 1467 | id = intdecode(msg_cur, end); |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1468 | if (!*msg_cur || !id) |
| 1469 | goto malformed_unlock; |
| 1470 | |
| 1471 | dc = p->dcache; |
Frédéric Lécaille | 344e948 | 2019-06-05 10:20:09 +0200 | [diff] [blame] | 1472 | if (*msg_cur == end) { |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1473 | /* Dictionary entry key without value. */ |
| 1474 | if (id > dc->max_entries) |
| 1475 | break; |
| 1476 | /* IDs sent over the network are numbered from 1. */ |
| 1477 | de = dc->rx[id - 1].de; |
| 1478 | } |
| 1479 | else { |
| 1480 | chunk = get_trash_chunk(); |
Frédéric Lécaille | 344e948 | 2019-06-05 10:20:09 +0200 | [diff] [blame] | 1481 | value_len = intdecode(msg_cur, end); |
| 1482 | if (!*msg_cur || *msg_cur + value_len > end || |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1483 | unlikely(value_len + 1 >= chunk->size)) |
| 1484 | goto malformed_unlock; |
| 1485 | |
| 1486 | chunk_memcpy(chunk, *msg_cur, value_len); |
| 1487 | chunk->area[chunk->data] = '\0'; |
Frédéric Lécaille | 56aec0d | 2019-06-06 14:14:15 +0200 | [diff] [blame] | 1488 | *msg_cur += value_len; |
| 1489 | |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1490 | de = dict_insert(&server_name_dict, chunk->area); |
| 1491 | dc->rx[id - 1].de = de; |
| 1492 | } |
| 1493 | if (de) { |
| 1494 | data_ptr = stktable_data_ptr(st->table, ts, data_type); |
| 1495 | if (data_ptr) |
| 1496 | stktable_data_cast(data_ptr, std_t_dict) = de; |
| 1497 | } |
| 1498 | break; |
| 1499 | } |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1500 | } |
| 1501 | } |
| 1502 | /* Force new expiration */ |
| 1503 | ts->expire = tick_add(now_ms, expire); |
| 1504 | |
| 1505 | HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock); |
| 1506 | stktable_touch_remote(st->table, ts, 1); |
| 1507 | return 1; |
| 1508 | |
| 1509 | ignore_msg: |
| 1510 | /* skip consumed message */ |
| 1511 | co_skip(si_oc(si), totl); |
| 1512 | return 0; |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1513 | |
| 1514 | malformed_unlock: |
| 1515 | /* malformed message */ |
| 1516 | HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock); |
| 1517 | stktable_touch_remote(st->table, ts, 1); |
| 1518 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
| 1519 | return 0; |
| 1520 | |
| 1521 | malformed_free_newts: |
| 1522 | /* malformed message */ |
| 1523 | stksess_free(st->table, newts); |
| 1524 | malformed_exit: |
| 1525 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
| 1526 | return 0; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1527 | } |
| 1528 | |
Frédéric Lécaille | 87f554c | 2019-01-22 17:26:50 +0100 | [diff] [blame] | 1529 | /* |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 1530 | * Function used to parse a stick-table update acknowledgement message after it |
| 1531 | * has been received by <p> peer with <msg_cur> as address of the pointer to the position in the |
| 1532 | * receipt buffer with <msg_end> being the position of the end of the stick-table message. |
| 1533 | * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error |
| 1534 | * was encountered. |
| 1535 | * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO. |
| 1536 | */ |
| 1537 | static inline int peer_treat_ackmsg(struct appctx *appctx, struct peer *p, |
| 1538 | char **msg_cur, char *msg_end) |
| 1539 | { |
| 1540 | /* ack message */ |
| 1541 | uint32_t table_id ; |
| 1542 | uint32_t update; |
| 1543 | struct shared_table *st; |
| 1544 | |
| 1545 | table_id = intdecode(msg_cur, msg_end); |
| 1546 | if (!*msg_cur || (*msg_cur + sizeof(update) > msg_end)) { |
| 1547 | /* malformed message */ |
| 1548 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
| 1549 | return 0; |
| 1550 | } |
| 1551 | |
| 1552 | memcpy(&update, *msg_cur, sizeof(update)); |
| 1553 | update = ntohl(update); |
| 1554 | |
| 1555 | for (st = p->tables; st; st = st->next) { |
| 1556 | if (st->local_id == table_id) { |
| 1557 | st->update = update; |
| 1558 | break; |
| 1559 | } |
| 1560 | } |
| 1561 | |
| 1562 | return 1; |
| 1563 | } |
| 1564 | |
| 1565 | /* |
| 1566 | * Function used to parse a stick-table switch message after it has been received |
| 1567 | * by <p> peer with <msg_cur> as address of the pointer to the position in the |
| 1568 | * receipt buffer with <msg_end> being the position of the end of the stick-table message. |
| 1569 | * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error |
| 1570 | * was encountered. |
| 1571 | * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO. |
| 1572 | */ |
| 1573 | static inline int peer_treat_switchmsg(struct appctx *appctx, struct peer *p, |
| 1574 | char **msg_cur, char *msg_end) |
| 1575 | { |
| 1576 | struct shared_table *st; |
| 1577 | int table_id; |
| 1578 | |
| 1579 | table_id = intdecode(msg_cur, msg_end); |
| 1580 | if (!*msg_cur) { |
| 1581 | /* malformed message */ |
| 1582 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
| 1583 | return 0; |
| 1584 | } |
| 1585 | |
| 1586 | p->remote_table = NULL; |
| 1587 | for (st = p->tables; st; st = st->next) { |
| 1588 | if (st->remote_id == table_id) { |
| 1589 | p->remote_table = st; |
| 1590 | break; |
| 1591 | } |
| 1592 | } |
| 1593 | |
| 1594 | return 1; |
| 1595 | } |
| 1596 | |
| 1597 | /* |
| 1598 | * Function used to parse a stick-table definition message after it has been received |
| 1599 | * by <p> peer with <msg_cur> as address of the pointer to the position in the |
| 1600 | * receipt buffer with <msg_end> being the position of the end of the stick-table message. |
| 1601 | * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error |
| 1602 | * was encountered. |
| 1603 | * <totl> is the length of the stick-table update message computed upon receipt. |
| 1604 | * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO. |
| 1605 | */ |
| 1606 | static inline int peer_treat_definemsg(struct appctx *appctx, struct peer *p, |
| 1607 | char **msg_cur, char *msg_end, int totl) |
| 1608 | { |
| 1609 | struct stream_interface *si = appctx->owner; |
| 1610 | int table_id_len; |
| 1611 | struct shared_table *st; |
| 1612 | int table_type; |
| 1613 | int table_keylen; |
| 1614 | int table_id; |
| 1615 | uint64_t table_data; |
| 1616 | |
| 1617 | table_id = intdecode(msg_cur, msg_end); |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 1618 | if (!*msg_cur) |
| 1619 | goto malformed_exit; |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 1620 | |
| 1621 | table_id_len = intdecode(msg_cur, msg_end); |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 1622 | if (!*msg_cur) |
| 1623 | goto malformed_exit; |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 1624 | |
| 1625 | p->remote_table = NULL; |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 1626 | if (!table_id_len || (*msg_cur + table_id_len) >= msg_end) |
| 1627 | goto malformed_exit; |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 1628 | |
| 1629 | for (st = p->tables; st; st = st->next) { |
| 1630 | /* Reset IDs */ |
| 1631 | if (st->remote_id == table_id) |
| 1632 | st->remote_id = 0; |
| 1633 | |
Frédéric Lécaille | 7fcc24d | 2019-03-20 15:09:45 +0100 | [diff] [blame] | 1634 | if (!p->remote_table && (table_id_len == strlen(st->table->nid)) && |
| 1635 | (memcmp(st->table->nid, *msg_cur, table_id_len) == 0)) |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 1636 | p->remote_table = st; |
| 1637 | } |
| 1638 | |
| 1639 | if (!p->remote_table) |
| 1640 | goto ignore_msg; |
| 1641 | |
| 1642 | *msg_cur += table_id_len; |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 1643 | if (*msg_cur >= msg_end) |
| 1644 | goto malformed_exit; |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 1645 | |
| 1646 | table_type = intdecode(msg_cur, msg_end); |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 1647 | if (!*msg_cur) |
| 1648 | goto malformed_exit; |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 1649 | |
| 1650 | table_keylen = intdecode(msg_cur, msg_end); |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 1651 | if (!*msg_cur) |
| 1652 | goto malformed_exit; |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 1653 | |
| 1654 | table_data = intdecode(msg_cur, msg_end); |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 1655 | if (!*msg_cur) |
| 1656 | goto malformed_exit; |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 1657 | |
| 1658 | if (p->remote_table->table->type != table_type |
| 1659 | || p->remote_table->table->key_size != table_keylen) { |
| 1660 | p->remote_table = NULL; |
| 1661 | goto ignore_msg; |
| 1662 | } |
| 1663 | |
| 1664 | p->remote_table->remote_data = table_data; |
| 1665 | p->remote_table->remote_id = table_id; |
| 1666 | return 1; |
| 1667 | |
| 1668 | ignore_msg: |
| 1669 | co_skip(si_oc(si), totl); |
| 1670 | return 0; |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 1671 | |
| 1672 | malformed_exit: |
| 1673 | /* malformed message */ |
| 1674 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
| 1675 | return 0; |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 1676 | } |
| 1677 | |
| 1678 | /* |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 1679 | * Receive a stick-table message. |
| 1680 | * Returns 1 if there was no error, if not, returns 0 if not enough data were available, |
| 1681 | * -1 if there was an error updating the appctx state st0 accordingly. |
| 1682 | */ |
| 1683 | static inline int peer_recv_msg(struct appctx *appctx, char *msg_head, size_t msg_head_sz, |
| 1684 | uint32_t *msg_len, int *totl) |
| 1685 | { |
| 1686 | int reql; |
| 1687 | struct stream_interface *si = appctx->owner; |
| 1688 | |
| 1689 | reql = co_getblk(si_oc(si), msg_head, 2 * sizeof(char), *totl); |
| 1690 | if (reql <= 0) /* closed or EOL not found */ |
| 1691 | goto incomplete; |
| 1692 | |
| 1693 | *totl += reql; |
| 1694 | |
Frédéric Lécaille | 36fb77e | 2019-06-04 08:28:19 +0200 | [diff] [blame] | 1695 | if (!(msg_head[1] & PEER_MSG_STKT_BIT_MASK)) |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 1696 | return 1; |
| 1697 | |
| 1698 | /* Read and Decode message length */ |
| 1699 | reql = co_getblk(si_oc(si), &msg_head[2], sizeof(char), *totl); |
| 1700 | if (reql <= 0) /* closed */ |
| 1701 | goto incomplete; |
| 1702 | |
| 1703 | *totl += reql; |
| 1704 | |
Frédéric Lécaille | 32b5573 | 2019-06-03 18:29:51 +0200 | [diff] [blame] | 1705 | if ((unsigned int)msg_head[2] < PEER_ENC_2BYTES_MIN) { |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 1706 | *msg_len = msg_head[2]; |
| 1707 | } |
| 1708 | else { |
| 1709 | int i; |
| 1710 | char *cur; |
| 1711 | char *end; |
| 1712 | |
| 1713 | for (i = 3 ; i < msg_head_sz ; i++) { |
| 1714 | reql = co_getblk(si_oc(si), &msg_head[i], sizeof(char), *totl); |
| 1715 | if (reql <= 0) /* closed */ |
| 1716 | goto incomplete; |
| 1717 | |
| 1718 | *totl += reql; |
| 1719 | |
Frédéric Lécaille | 36fb77e | 2019-06-04 08:28:19 +0200 | [diff] [blame] | 1720 | if (!(msg_head[i] & PEER_MSG_STKT_BIT_MASK)) |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 1721 | break; |
| 1722 | } |
| 1723 | |
| 1724 | if (i == msg_head_sz) { |
| 1725 | /* malformed message */ |
| 1726 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
| 1727 | return -1; |
| 1728 | } |
| 1729 | end = msg_head + msg_head_sz; |
| 1730 | cur = &msg_head[2]; |
| 1731 | *msg_len = intdecode(&cur, end); |
| 1732 | if (!cur) { |
| 1733 | /* malformed message */ |
| 1734 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
| 1735 | return -1; |
| 1736 | } |
| 1737 | } |
| 1738 | |
| 1739 | /* Read message content */ |
| 1740 | if (*msg_len) { |
| 1741 | if (*msg_len > trash.size) { |
| 1742 | /* Status code is not success, abort */ |
| 1743 | appctx->st0 = PEER_SESS_ST_ERRSIZE; |
| 1744 | return -1; |
| 1745 | } |
| 1746 | |
| 1747 | reql = co_getblk(si_oc(si), trash.area, *msg_len, *totl); |
| 1748 | if (reql <= 0) /* closed */ |
| 1749 | goto incomplete; |
| 1750 | *totl += reql; |
| 1751 | } |
| 1752 | |
| 1753 | return 1; |
| 1754 | |
| 1755 | incomplete: |
| 1756 | if (reql < 0) { |
| 1757 | /* there was an error */ |
| 1758 | appctx->st0 = PEER_SESS_ST_END; |
| 1759 | return -1; |
| 1760 | } |
| 1761 | |
| 1762 | return 0; |
| 1763 | } |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 1764 | |
| 1765 | /* |
| 1766 | * Treat the awaited message with <msg_head> as header.* |
| 1767 | * Return 1 if succeeded, 0 if not. |
| 1768 | */ |
| 1769 | static inline int peer_treat_awaited_msg(struct appctx *appctx, struct peer *peer, unsigned char *msg_head, |
| 1770 | char **msg_cur, char *msg_end, int msg_len, int totl) |
| 1771 | { |
| 1772 | struct stream_interface *si = appctx->owner; |
| 1773 | struct stream *s = si_strm(si); |
| 1774 | struct peers *peers = strm_fe(s)->parent; |
| 1775 | |
| 1776 | if (msg_head[0] == PEER_MSG_CLASS_CONTROL) { |
| 1777 | if (msg_head[1] == PEER_MSG_CTRL_RESYNCREQ) { |
| 1778 | struct shared_table *st; |
| 1779 | /* Reset message: remote need resync */ |
| 1780 | |
| 1781 | /* prepare tables fot a global push */ |
| 1782 | for (st = peer->tables; st; st = st->next) { |
| 1783 | st->teaching_origin = st->last_pushed = st->table->update; |
| 1784 | st->flags = 0; |
| 1785 | } |
| 1786 | |
| 1787 | /* reset teaching flags to 0 */ |
| 1788 | peer->flags &= PEER_TEACH_RESET; |
| 1789 | |
| 1790 | /* flag to start to teach lesson */ |
| 1791 | peer->flags |= PEER_F_TEACH_PROCESS; |
| 1792 | } |
| 1793 | else if (msg_head[1] == PEER_MSG_CTRL_RESYNCFINISHED) { |
| 1794 | if (peer->flags & PEER_F_LEARN_ASSIGN) { |
| 1795 | peer->flags &= ~PEER_F_LEARN_ASSIGN; |
| 1796 | peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS); |
| 1797 | peers->flags |= (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE); |
| 1798 | } |
| 1799 | peer->confirm++; |
| 1800 | } |
| 1801 | else if (msg_head[1] == PEER_MSG_CTRL_RESYNCPARTIAL) { |
| 1802 | if (peer->flags & PEER_F_LEARN_ASSIGN) { |
| 1803 | peer->flags &= ~PEER_F_LEARN_ASSIGN; |
| 1804 | peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS); |
| 1805 | |
| 1806 | peer->flags |= PEER_F_LEARN_NOTUP2DATE; |
Frédéric Lécaille | 54bff83 | 2019-03-26 10:25:20 +0100 | [diff] [blame] | 1807 | peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT)); |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 1808 | task_wakeup(peers->sync_task, TASK_WOKEN_MSG); |
| 1809 | } |
| 1810 | peer->confirm++; |
| 1811 | } |
| 1812 | else if (msg_head[1] == PEER_MSG_CTRL_RESYNCCONFIRM) { |
| 1813 | struct shared_table *st; |
| 1814 | |
| 1815 | /* If stopping state */ |
| 1816 | if (stopping) { |
| 1817 | /* Close session, push resync no more needed */ |
| 1818 | peer->flags |= PEER_F_TEACH_COMPLETE; |
| 1819 | appctx->st0 = PEER_SESS_ST_END; |
| 1820 | return 0; |
| 1821 | } |
| 1822 | for (st = peer->tables; st; st = st->next) { |
| 1823 | st->update = st->last_pushed = st->teaching_origin; |
| 1824 | st->flags = 0; |
| 1825 | } |
| 1826 | |
| 1827 | /* reset teaching flags to 0 */ |
| 1828 | peer->flags &= PEER_TEACH_RESET; |
| 1829 | } |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 1830 | else if (msg_head[1] == PEER_MSG_CTRL_HEARTBEAT) { |
Frédéric Lécaille | 54bff83 | 2019-03-26 10:25:20 +0100 | [diff] [blame] | 1831 | peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT)); |
Frédéric Lécaille | 5d07270 | 2019-11-06 11:51:26 +0100 | [diff] [blame] | 1832 | peer->rx_hbt++; |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 1833 | } |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 1834 | } |
| 1835 | else if (msg_head[0] == PEER_MSG_CLASS_STICKTABLE) { |
| 1836 | if (msg_head[1] == PEER_MSG_STKT_DEFINE) { |
| 1837 | if (!peer_treat_definemsg(appctx, peer, msg_cur, msg_end, totl)) |
| 1838 | return 0; |
| 1839 | } |
| 1840 | else if (msg_head[1] == PEER_MSG_STKT_SWITCH) { |
| 1841 | if (!peer_treat_switchmsg(appctx, peer, msg_cur, msg_end)) |
| 1842 | return 0; |
| 1843 | } |
| 1844 | else if (msg_head[1] == PEER_MSG_STKT_UPDATE || |
| 1845 | msg_head[1] == PEER_MSG_STKT_INCUPDATE || |
| 1846 | msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED || |
| 1847 | msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED) { |
| 1848 | int update, expire; |
| 1849 | |
| 1850 | update = msg_head[1] == PEER_MSG_STKT_UPDATE || msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED; |
| 1851 | expire = msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED || msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED; |
| 1852 | if (!peer_treat_updatemsg(appctx, peer, update, expire, |
| 1853 | msg_cur, msg_end, msg_len, totl)) |
| 1854 | return 0; |
| 1855 | |
| 1856 | } |
| 1857 | else if (msg_head[1] == PEER_MSG_STKT_ACK) { |
| 1858 | if (!peer_treat_ackmsg(appctx, peer, msg_cur, msg_end)) |
| 1859 | return 0; |
| 1860 | } |
| 1861 | } |
| 1862 | else if (msg_head[0] == PEER_MSG_CLASS_RESERVED) { |
| 1863 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
| 1864 | return 0; |
| 1865 | } |
| 1866 | |
| 1867 | return 1; |
| 1868 | } |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 1869 | |
| 1870 | |
| 1871 | /* |
| 1872 | * Send any message to <peer> peer. |
| 1873 | * Returns 1 if succeeded, or -1 or 0 if failed. |
| 1874 | * -1 means an internal error occured, 0 is for a peer protocol error leading |
| 1875 | * to a peer state change (from the peer I/O handler point of view). |
| 1876 | */ |
| 1877 | static inline int peer_send_msgs(struct appctx *appctx, struct peer *peer) |
| 1878 | { |
| 1879 | int repl; |
| 1880 | struct stream_interface *si = appctx->owner; |
| 1881 | struct stream *s = si_strm(si); |
| 1882 | struct peers *peers = strm_fe(s)->parent; |
| 1883 | |
| 1884 | /* Need to request a resync */ |
| 1885 | if ((peer->flags & PEER_F_LEARN_ASSIGN) && |
| 1886 | (peers->flags & PEERS_F_RESYNC_ASSIGN) && |
| 1887 | !(peers->flags & PEERS_F_RESYNC_PROCESS)) { |
| 1888 | |
| 1889 | repl = peer_send_resync_reqmsg(appctx); |
| 1890 | if (repl <= 0) |
| 1891 | return repl; |
| 1892 | |
| 1893 | peers->flags |= PEERS_F_RESYNC_PROCESS; |
| 1894 | } |
| 1895 | |
| 1896 | /* Nothing to read, now we start to write */ |
| 1897 | if (peer->tables) { |
| 1898 | struct shared_table *st; |
| 1899 | struct shared_table *last_local_table; |
| 1900 | |
| 1901 | last_local_table = peer->last_local_table; |
| 1902 | if (!last_local_table) |
| 1903 | last_local_table = peer->tables; |
| 1904 | st = last_local_table->next; |
| 1905 | |
| 1906 | while (1) { |
| 1907 | if (!st) |
| 1908 | st = peer->tables; |
| 1909 | |
| 1910 | /* It remains some updates to ack */ |
| 1911 | if (st->last_get != st->last_acked) { |
| 1912 | repl = peer_send_ackmsg(st, appctx); |
| 1913 | if (repl <= 0) |
| 1914 | return repl; |
| 1915 | |
| 1916 | st->last_acked = st->last_get; |
| 1917 | } |
| 1918 | |
| 1919 | if (!(peer->flags & PEER_F_TEACH_PROCESS)) { |
| 1920 | HA_SPIN_LOCK(STK_TABLE_LOCK, &st->table->lock); |
| 1921 | if (!(peer->flags & PEER_F_LEARN_ASSIGN) && |
| 1922 | ((int)(st->last_pushed - st->table->localupdate) < 0)) { |
| 1923 | |
| 1924 | repl = peer_send_teach_process_msgs(appctx, peer, st); |
| 1925 | if (repl <= 0) { |
| 1926 | HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock); |
| 1927 | return repl; |
| 1928 | } |
| 1929 | } |
| 1930 | HA_SPIN_UNLOCK(STK_TABLE_LOCK, &st->table->lock); |
| 1931 | } |
| 1932 | else { |
| 1933 | if (!(st->flags & SHTABLE_F_TEACH_STAGE1)) { |
| 1934 | repl = peer_send_teach_stage1_msgs(appctx, peer, st); |
| 1935 | if (repl <= 0) |
| 1936 | return repl; |
| 1937 | } |
| 1938 | |
| 1939 | if (!(st->flags & SHTABLE_F_TEACH_STAGE2)) { |
| 1940 | repl = peer_send_teach_stage2_msgs(appctx, peer, st); |
| 1941 | if (repl <= 0) |
| 1942 | return repl; |
| 1943 | } |
| 1944 | } |
| 1945 | |
| 1946 | if (st == last_local_table) |
| 1947 | break; |
| 1948 | st = st->next; |
| 1949 | } |
| 1950 | } |
| 1951 | |
| 1952 | if ((peer->flags & PEER_F_TEACH_PROCESS) && !(peer->flags & PEER_F_TEACH_FINISHED)) { |
Emeric Brun | deda2a6 | 2020-03-16 10:51:01 +0100 | [diff] [blame] | 1953 | repl = peer_send_resync_finishedmsg(appctx, peers); |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 1954 | if (repl <= 0) |
| 1955 | return repl; |
| 1956 | |
| 1957 | /* flag finished message sent */ |
| 1958 | peer->flags |= PEER_F_TEACH_FINISHED; |
| 1959 | } |
| 1960 | |
| 1961 | /* Confirm finished or partial messages */ |
| 1962 | while (peer->confirm) { |
| 1963 | repl = peer_send_resync_confirmsg(appctx); |
| 1964 | if (repl <= 0) |
| 1965 | return repl; |
| 1966 | |
| 1967 | peer->confirm--; |
| 1968 | } |
| 1969 | |
| 1970 | return 1; |
| 1971 | } |
| 1972 | |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 1973 | /* |
Frédéric Lécaille | 3f0fb9d | 2019-01-25 08:30:29 +0100 | [diff] [blame] | 1974 | * Read and parse a first line of a "hello" peer protocol message. |
| 1975 | * Returns 0 if could not read a line, -1 if there was a read error or |
| 1976 | * the line is malformed, 1 if succeeded. |
| 1977 | */ |
| 1978 | static inline int peer_getline_version(struct appctx *appctx, |
| 1979 | unsigned int *maj_ver, unsigned int *min_ver) |
| 1980 | { |
| 1981 | int reql; |
| 1982 | |
| 1983 | reql = peer_getline(appctx); |
| 1984 | if (!reql) |
| 1985 | return 0; |
| 1986 | |
| 1987 | if (reql < 0) |
| 1988 | return -1; |
| 1989 | |
| 1990 | /* test protocol */ |
| 1991 | if (strncmp(PEER_SESSION_PROTO_NAME " ", trash.area, proto_len + 1) != 0) { |
| 1992 | appctx->st0 = PEER_SESS_ST_EXIT; |
| 1993 | appctx->st1 = PEER_SESS_SC_ERRPROTO; |
| 1994 | return -1; |
| 1995 | } |
| 1996 | if (peer_get_version(trash.area + proto_len + 1, maj_ver, min_ver) == -1 || |
| 1997 | *maj_ver != PEER_MAJOR_VER || *min_ver > PEER_MINOR_VER) { |
| 1998 | appctx->st0 = PEER_SESS_ST_EXIT; |
| 1999 | appctx->st1 = PEER_SESS_SC_ERRVERSION; |
| 2000 | return -1; |
| 2001 | } |
| 2002 | |
| 2003 | return 1; |
| 2004 | } |
| 2005 | |
| 2006 | /* |
| 2007 | * Read and parse a second line of a "hello" peer protocol message. |
| 2008 | * Returns 0 if could not read a line, -1 if there was a read error or |
| 2009 | * the line is malformed, 1 if succeeded. |
| 2010 | */ |
| 2011 | static inline int peer_getline_host(struct appctx *appctx) |
| 2012 | { |
| 2013 | int reql; |
| 2014 | |
| 2015 | reql = peer_getline(appctx); |
| 2016 | if (!reql) |
| 2017 | return 0; |
| 2018 | |
| 2019 | if (reql < 0) |
| 2020 | return -1; |
| 2021 | |
| 2022 | /* test hostname match */ |
| 2023 | if (strcmp(localpeer, trash.area) != 0) { |
| 2024 | appctx->st0 = PEER_SESS_ST_EXIT; |
| 2025 | appctx->st1 = PEER_SESS_SC_ERRHOST; |
| 2026 | return -1; |
| 2027 | } |
| 2028 | |
| 2029 | return 1; |
| 2030 | } |
| 2031 | |
| 2032 | /* |
| 2033 | * Read and parse a last line of a "hello" peer protocol message. |
| 2034 | * Returns 0 if could not read a character, -1 if there was a read error or |
| 2035 | * the line is malformed, 1 if succeeded. |
| 2036 | * Set <curpeer> accordingly (the remote peer sending the "hello" message). |
| 2037 | */ |
| 2038 | static inline int peer_getline_last(struct appctx *appctx, struct peer **curpeer) |
| 2039 | { |
| 2040 | char *p; |
| 2041 | int reql; |
| 2042 | struct peer *peer; |
| 2043 | struct stream_interface *si = appctx->owner; |
| 2044 | struct stream *s = si_strm(si); |
| 2045 | struct peers *peers = strm_fe(s)->parent; |
| 2046 | |
| 2047 | reql = peer_getline(appctx); |
| 2048 | if (!reql) |
| 2049 | return 0; |
| 2050 | |
| 2051 | if (reql < 0) |
| 2052 | return -1; |
| 2053 | |
| 2054 | /* parse line "<peer name> <pid> <relative_pid>" */ |
| 2055 | p = strchr(trash.area, ' '); |
| 2056 | if (!p) { |
| 2057 | appctx->st0 = PEER_SESS_ST_EXIT; |
| 2058 | appctx->st1 = PEER_SESS_SC_ERRPROTO; |
| 2059 | return -1; |
| 2060 | } |
| 2061 | *p = 0; |
| 2062 | |
| 2063 | /* lookup known peer */ |
| 2064 | for (peer = peers->remote; peer; peer = peer->next) { |
| 2065 | if (strcmp(peer->id, trash.area) == 0) |
| 2066 | break; |
| 2067 | } |
| 2068 | |
| 2069 | /* if unknown peer */ |
| 2070 | if (!peer) { |
| 2071 | appctx->st0 = PEER_SESS_ST_EXIT; |
| 2072 | appctx->st1 = PEER_SESS_SC_ERRPEER; |
| 2073 | return -1; |
| 2074 | } |
| 2075 | *curpeer = peer; |
| 2076 | |
| 2077 | return 1; |
| 2078 | } |
| 2079 | |
| 2080 | /* |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 2081 | * Init <peer> peer after having accepted it at peer protocol level. |
| 2082 | */ |
| 2083 | static inline void init_accepted_peer(struct peer *peer, struct peers *peers) |
| 2084 | { |
| 2085 | struct shared_table *st; |
| 2086 | |
| 2087 | /* Register status code */ |
| 2088 | peer->statuscode = PEER_SESS_SC_SUCCESSCODE; |
| 2089 | |
| 2090 | /* Awake main task */ |
| 2091 | task_wakeup(peers->sync_task, TASK_WOKEN_MSG); |
| 2092 | |
| 2093 | /* Init confirm counter */ |
| 2094 | peer->confirm = 0; |
| 2095 | |
| 2096 | /* Init cursors */ |
| 2097 | for (st = peer->tables; st ; st = st->next) { |
| 2098 | st->last_get = st->last_acked = 0; |
| 2099 | st->teaching_origin = st->last_pushed = st->update; |
| 2100 | } |
| 2101 | |
| 2102 | /* reset teaching and learning flags to 0 */ |
| 2103 | peer->flags &= PEER_TEACH_RESET; |
| 2104 | peer->flags &= PEER_LEARN_RESET; |
| 2105 | |
| 2106 | /* if current peer is local */ |
| 2107 | if (peer->local) { |
| 2108 | /* if current host need resyncfrom local and no process assined */ |
| 2109 | if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL && |
| 2110 | !(peers->flags & PEERS_F_RESYNC_ASSIGN)) { |
| 2111 | /* assign local peer for a lesson, consider lesson already requested */ |
| 2112 | peer->flags |= PEER_F_LEARN_ASSIGN; |
| 2113 | peers->flags |= (PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS); |
| 2114 | } |
| 2115 | |
| 2116 | } |
| 2117 | else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE && |
| 2118 | !(peers->flags & PEERS_F_RESYNC_ASSIGN)) { |
| 2119 | /* assign peer for a lesson */ |
| 2120 | peer->flags |= PEER_F_LEARN_ASSIGN; |
| 2121 | peers->flags |= PEERS_F_RESYNC_ASSIGN; |
| 2122 | } |
| 2123 | } |
| 2124 | |
| 2125 | /* |
| 2126 | * Init <peer> peer after having connected it at peer protocol level. |
| 2127 | */ |
| 2128 | static inline void init_connected_peer(struct peer *peer, struct peers *peers) |
| 2129 | { |
| 2130 | struct shared_table *st; |
| 2131 | |
| 2132 | /* Init cursors */ |
| 2133 | for (st = peer->tables; st ; st = st->next) { |
| 2134 | st->last_get = st->last_acked = 0; |
| 2135 | st->teaching_origin = st->last_pushed = st->update; |
| 2136 | } |
| 2137 | |
| 2138 | /* Init confirm counter */ |
| 2139 | peer->confirm = 0; |
| 2140 | |
| 2141 | /* reset teaching and learning flags to 0 */ |
| 2142 | peer->flags &= PEER_TEACH_RESET; |
| 2143 | peer->flags &= PEER_LEARN_RESET; |
| 2144 | |
| 2145 | /* If current peer is local */ |
| 2146 | if (peer->local) { |
| 2147 | /* flag to start to teach lesson */ |
| 2148 | peer->flags |= PEER_F_TEACH_PROCESS; |
| 2149 | } |
| 2150 | else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE && |
| 2151 | !(peers->flags & PEERS_F_RESYNC_ASSIGN)) { |
| 2152 | /* If peer is remote and resync from remote is needed, |
| 2153 | and no peer currently assigned */ |
| 2154 | |
| 2155 | /* assign peer for a lesson */ |
| 2156 | peer->flags |= PEER_F_LEARN_ASSIGN; |
| 2157 | peers->flags |= PEERS_F_RESYNC_ASSIGN; |
| 2158 | } |
| 2159 | } |
| 2160 | |
| 2161 | /* |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2162 | * IO Handler to handle message exchance with a peer |
| 2163 | */ |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 2164 | static void peer_io_handler(struct appctx *appctx) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2165 | { |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 2166 | struct stream_interface *si = appctx->owner; |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2167 | struct stream *s = si_strm(si); |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 2168 | struct peers *curpeers = strm_fe(s)->parent; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2169 | struct peer *curpeer = NULL; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2170 | int reql = 0; |
| 2171 | int repl = 0; |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 2172 | unsigned int maj_ver, min_ver; |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2173 | int prev_state; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2174 | |
Joseph Herlant | 82b2f54 | 2018-11-15 12:19:14 -0800 | [diff] [blame] | 2175 | /* Check if the input buffer is available. */ |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 2176 | if (si_ic(si)->buf.size == 0) { |
| 2177 | si_rx_room_blk(si); |
| 2178 | goto out; |
| 2179 | } |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 2180 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2181 | while (1) { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2182 | prev_state = appctx->st0; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2183 | switchstate: |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 2184 | maj_ver = min_ver = (unsigned int)-1; |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 2185 | switch(appctx->st0) { |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2186 | case PEER_SESS_ST_ACCEPT: |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2187 | prev_state = appctx->st0; |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 2188 | appctx->ctx.peers.ptr = NULL; |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2189 | appctx->st0 = PEER_SESS_ST_GETVERSION; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2190 | /* fall through */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2191 | case PEER_SESS_ST_GETVERSION: |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2192 | prev_state = appctx->st0; |
Frédéric Lécaille | 3f0fb9d | 2019-01-25 08:30:29 +0100 | [diff] [blame] | 2193 | reql = peer_getline_version(appctx, &maj_ver, &min_ver); |
| 2194 | if (reql <= 0) { |
| 2195 | if (!reql) |
| 2196 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2197 | goto switchstate; |
| 2198 | } |
| 2199 | |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2200 | appctx->st0 = PEER_SESS_ST_GETHOST; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2201 | /* fall through */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2202 | case PEER_SESS_ST_GETHOST: |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2203 | prev_state = appctx->st0; |
Frédéric Lécaille | 3f0fb9d | 2019-01-25 08:30:29 +0100 | [diff] [blame] | 2204 | reql = peer_getline_host(appctx); |
| 2205 | if (reql <= 0) { |
| 2206 | if (!reql) |
| 2207 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2208 | goto switchstate; |
| 2209 | } |
| 2210 | |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2211 | appctx->st0 = PEER_SESS_ST_GETPEER; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2212 | /* fall through */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2213 | case PEER_SESS_ST_GETPEER: { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2214 | prev_state = appctx->st0; |
Frédéric Lécaille | 3f0fb9d | 2019-01-25 08:30:29 +0100 | [diff] [blame] | 2215 | reql = peer_getline_last(appctx, &curpeer); |
| 2216 | if (reql <= 0) { |
| 2217 | if (!reql) |
| 2218 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2219 | goto switchstate; |
| 2220 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2221 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2222 | HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock); |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2223 | if (curpeer->appctx && curpeer->appctx != appctx) { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2224 | if (curpeer->local) { |
| 2225 | /* Local connection, reply a retry */ |
| 2226 | appctx->st0 = PEER_SESS_ST_EXIT; |
| 2227 | appctx->st1 = PEER_SESS_SC_TRYAGAIN; |
| 2228 | goto switchstate; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2229 | } |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2230 | |
| 2231 | /* we're killing a connection, we must apply a random delay before |
| 2232 | * retrying otherwise the other end will do the same and we can loop |
| 2233 | * for a while. |
| 2234 | */ |
Willy Tarreau | 861c4ef | 2020-03-08 00:42:37 +0100 | [diff] [blame] | 2235 | curpeer->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + ha_random() % 2000)); |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 2236 | peer_session_forceshutdown(curpeer); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2237 | } |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 2238 | if (maj_ver != (unsigned int)-1 && min_ver != (unsigned int)-1) { |
| 2239 | if (min_ver == PEER_DWNGRD_MINOR_VER) { |
| 2240 | curpeer->flags |= PEER_F_DWNGRD; |
| 2241 | } |
| 2242 | else { |
| 2243 | curpeer->flags &= ~PEER_F_DWNGRD; |
| 2244 | } |
| 2245 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2246 | curpeer->appctx = appctx; |
| 2247 | appctx->ctx.peers.ptr = curpeer; |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2248 | appctx->st0 = PEER_SESS_ST_SENDSUCCESS; |
Olivier Houchard | ed87989 | 2019-03-08 18:53:43 +0100 | [diff] [blame] | 2249 | _HA_ATOMIC_ADD(&active_peers, 1); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2250 | /* fall through */ |
| 2251 | } |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2252 | case PEER_SESS_ST_SENDSUCCESS: { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2253 | prev_state = appctx->st0; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2254 | if (!curpeer) { |
| 2255 | curpeer = appctx->ctx.peers.ptr; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2256 | HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2257 | if (curpeer->appctx != appctx) { |
| 2258 | appctx->st0 = PEER_SESS_ST_END; |
| 2259 | goto switchstate; |
| 2260 | } |
| 2261 | } |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 2262 | |
| 2263 | repl = peer_send_status_successmsg(appctx); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2264 | if (repl <= 0) { |
| 2265 | if (repl == -1) |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 2266 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2267 | goto switchstate; |
| 2268 | } |
| 2269 | |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 2270 | init_accepted_peer(curpeer, curpeers); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2271 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2272 | /* switch to waiting message state */ |
Olivier Houchard | ed87989 | 2019-03-08 18:53:43 +0100 | [diff] [blame] | 2273 | _HA_ATOMIC_ADD(&connected_peers, 1); |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2274 | appctx->st0 = PEER_SESS_ST_WAITMSG; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2275 | goto switchstate; |
| 2276 | } |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2277 | case PEER_SESS_ST_CONNECT: { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2278 | prev_state = appctx->st0; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2279 | if (!curpeer) { |
| 2280 | curpeer = appctx->ctx.peers.ptr; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2281 | HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2282 | if (curpeer->appctx != appctx) { |
| 2283 | appctx->st0 = PEER_SESS_ST_END; |
| 2284 | goto switchstate; |
| 2285 | } |
| 2286 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2287 | |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 2288 | repl = peer_send_hellomsg(appctx, curpeer); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2289 | if (repl <= 0) { |
| 2290 | if (repl == -1) |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 2291 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2292 | goto switchstate; |
| 2293 | } |
| 2294 | |
| 2295 | /* switch to the waiting statuscode state */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2296 | appctx->st0 = PEER_SESS_ST_GETSTATUS; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2297 | /* fall through */ |
| 2298 | } |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2299 | case PEER_SESS_ST_GETSTATUS: { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2300 | prev_state = appctx->st0; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2301 | if (!curpeer) { |
| 2302 | curpeer = appctx->ctx.peers.ptr; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2303 | HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2304 | if (curpeer->appctx != appctx) { |
| 2305 | appctx->st0 = PEER_SESS_ST_END; |
| 2306 | goto switchstate; |
| 2307 | } |
| 2308 | } |
| 2309 | |
Willy Tarreau | 2bb4a96 | 2014-11-28 11:11:05 +0100 | [diff] [blame] | 2310 | if (si_ic(si)->flags & CF_WRITE_PARTIAL) |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2311 | curpeer->statuscode = PEER_SESS_SC_CONNECTEDCODE; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2312 | |
Frédéric Lécaille | ce02557 | 2019-01-21 13:38:06 +0100 | [diff] [blame] | 2313 | reql = peer_getline(appctx); |
| 2314 | if (!reql) |
| 2315 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2316 | |
Frédéric Lécaille | ce02557 | 2019-01-21 13:38:06 +0100 | [diff] [blame] | 2317 | if (reql < 0) |
| 2318 | goto switchstate; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2319 | |
| 2320 | /* Register status code */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2321 | curpeer->statuscode = atoi(trash.area); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2322 | |
| 2323 | /* Awake main task */ |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 2324 | task_wakeup(curpeers->sync_task, TASK_WOKEN_MSG); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2325 | |
| 2326 | /* If status code is success */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2327 | if (curpeer->statuscode == PEER_SESS_SC_SUCCESSCODE) { |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 2328 | init_connected_peer(curpeer, curpeers); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2329 | } |
| 2330 | else { |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 2331 | if (curpeer->statuscode == PEER_SESS_SC_ERRVERSION) |
| 2332 | curpeer->flags |= PEER_F_DWNGRD; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2333 | /* Status code is not success, abort */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2334 | appctx->st0 = PEER_SESS_ST_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2335 | goto switchstate; |
| 2336 | } |
Olivier Houchard | ed87989 | 2019-03-08 18:53:43 +0100 | [diff] [blame] | 2337 | _HA_ATOMIC_ADD(&connected_peers, 1); |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2338 | appctx->st0 = PEER_SESS_ST_WAITMSG; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2339 | /* fall through */ |
| 2340 | } |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2341 | case PEER_SESS_ST_WAITMSG: { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2342 | uint32_t msg_len = 0; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2343 | char *msg_cur = trash.area; |
| 2344 | char *msg_end = trash.area; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2345 | unsigned char msg_head[7]; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2346 | int totl = 0; |
| 2347 | |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2348 | prev_state = appctx->st0; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2349 | if (!curpeer) { |
| 2350 | curpeer = appctx->ctx.peers.ptr; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2351 | HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2352 | if (curpeer->appctx != appctx) { |
| 2353 | appctx->st0 = PEER_SESS_ST_END; |
| 2354 | goto switchstate; |
| 2355 | } |
| 2356 | } |
| 2357 | |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2358 | reql = peer_recv_msg(appctx, (char *)msg_head, sizeof msg_head, &msg_len, &totl); |
| 2359 | if (reql <= 0) { |
| 2360 | if (reql == -1) |
| 2361 | goto switchstate; |
Frédéric Lécaille | be825e5 | 2019-01-24 18:28:44 +0100 | [diff] [blame] | 2362 | goto send_msgs; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2363 | } |
Willy Tarreau | 86a446e | 2013-11-25 23:02:37 +0100 | [diff] [blame] | 2364 | |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2365 | msg_end += msg_len; |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 2366 | if (!peer_treat_awaited_msg(appctx, curpeer, msg_head, &msg_cur, msg_end, msg_len, totl)) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2367 | goto switchstate; |
Frédéric Lécaille | be825e5 | 2019-01-24 18:28:44 +0100 | [diff] [blame] | 2368 | |
Frédéric Lécaille | 045e0d4 | 2019-03-21 11:12:32 +0100 | [diff] [blame] | 2369 | curpeer->flags |= PEER_F_ALIVE; |
| 2370 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2371 | /* skip consumed message */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2372 | co_skip(si_oc(si), totl); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2373 | /* loop on that state to peek next message */ |
Willy Tarreau | 72d6c16 | 2013-04-11 16:14:13 +0200 | [diff] [blame] | 2374 | goto switchstate; |
| 2375 | |
Frédéric Lécaille | be825e5 | 2019-01-24 18:28:44 +0100 | [diff] [blame] | 2376 | send_msgs: |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 2377 | if (curpeer->flags & PEER_F_HEARTBEAT) { |
| 2378 | curpeer->flags &= ~PEER_F_HEARTBEAT; |
| 2379 | repl = peer_send_heartbeatmsg(appctx); |
| 2380 | if (repl <= 0) { |
| 2381 | if (repl == -1) |
| 2382 | goto out; |
| 2383 | goto switchstate; |
| 2384 | } |
Frédéric Lécaille | 5d07270 | 2019-11-06 11:51:26 +0100 | [diff] [blame] | 2385 | curpeer->tx_hbt++; |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 2386 | } |
Frédéric Lécaille | be825e5 | 2019-01-24 18:28:44 +0100 | [diff] [blame] | 2387 | /* we get here when a peer_recv_msg() returns 0 in reql */ |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2388 | repl = peer_send_msgs(appctx, curpeer); |
| 2389 | if (repl <= 0) { |
| 2390 | if (repl == -1) |
| 2391 | goto out; |
| 2392 | goto switchstate; |
Emeric Brun | 597b26e | 2016-08-12 11:23:31 +0200 | [diff] [blame] | 2393 | } |
| 2394 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2395 | /* noting more to do */ |
| 2396 | goto out; |
| 2397 | } |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2398 | case PEER_SESS_ST_EXIT: |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2399 | if (prev_state == PEER_SESS_ST_WAITMSG) |
Olivier Houchard | ed87989 | 2019-03-08 18:53:43 +0100 | [diff] [blame] | 2400 | _HA_ATOMIC_SUB(&connected_peers, 1); |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2401 | prev_state = appctx->st0; |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 2402 | if (peer_send_status_errormsg(appctx) == -1) |
| 2403 | goto out; |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2404 | appctx->st0 = PEER_SESS_ST_END; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2405 | goto switchstate; |
| 2406 | case PEER_SESS_ST_ERRSIZE: { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2407 | if (prev_state == PEER_SESS_ST_WAITMSG) |
Olivier Houchard | ed87989 | 2019-03-08 18:53:43 +0100 | [diff] [blame] | 2408 | _HA_ATOMIC_SUB(&connected_peers, 1); |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2409 | prev_state = appctx->st0; |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 2410 | if (peer_send_error_size_limitmsg(appctx) == -1) |
| 2411 | goto out; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2412 | appctx->st0 = PEER_SESS_ST_END; |
| 2413 | goto switchstate; |
| 2414 | } |
| 2415 | case PEER_SESS_ST_ERRPROTO: { |
Frédéric Lécaille | 9a88a83 | 2019-11-07 15:22:33 +0100 | [diff] [blame] | 2416 | if (curpeer) |
| 2417 | curpeer->proto_err++; |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2418 | if (prev_state == PEER_SESS_ST_WAITMSG) |
Olivier Houchard | ed87989 | 2019-03-08 18:53:43 +0100 | [diff] [blame] | 2419 | _HA_ATOMIC_SUB(&connected_peers, 1); |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2420 | prev_state = appctx->st0; |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 2421 | if (peer_send_error_protomsg(appctx) == -1) |
| 2422 | goto out; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2423 | appctx->st0 = PEER_SESS_ST_END; |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2424 | prev_state = appctx->st0; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2425 | /* fall through */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2426 | } |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2427 | case PEER_SESS_ST_END: { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2428 | if (prev_state == PEER_SESS_ST_WAITMSG) |
Olivier Houchard | ed87989 | 2019-03-08 18:53:43 +0100 | [diff] [blame] | 2429 | _HA_ATOMIC_SUB(&connected_peers, 1); |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2430 | prev_state = appctx->st0; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2431 | if (curpeer) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2432 | HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2433 | curpeer = NULL; |
| 2434 | } |
Willy Tarreau | 73b013b | 2012-05-21 16:31:45 +0200 | [diff] [blame] | 2435 | si_shutw(si); |
| 2436 | si_shutr(si); |
Willy Tarreau | 2bb4a96 | 2014-11-28 11:11:05 +0100 | [diff] [blame] | 2437 | si_ic(si)->flags |= CF_READ_NULL; |
Willy Tarreau | 828824a | 2015-04-19 17:20:03 +0200 | [diff] [blame] | 2438 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2439 | } |
| 2440 | } |
| 2441 | } |
| 2442 | out: |
Willy Tarreau | 2bb4a96 | 2014-11-28 11:11:05 +0100 | [diff] [blame] | 2443 | si_oc(si)->flags |= CF_READ_DONTWAIT; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2444 | |
| 2445 | if (curpeer) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2446 | HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2447 | return; |
| 2448 | } |
| 2449 | |
Willy Tarreau | 3057645 | 2015-04-13 13:50:30 +0200 | [diff] [blame] | 2450 | static struct applet peer_applet = { |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 2451 | .obj_type = OBJ_TYPE_APPLET, |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 2452 | .name = "<PEER>", /* used for logging */ |
| 2453 | .fct = peer_io_handler, |
Aman Gupta | 9a13e84 | 2012-04-02 18:57:53 -0700 | [diff] [blame] | 2454 | .release = peer_session_release, |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 2455 | }; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2456 | |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 2457 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2458 | /* |
| 2459 | * Use this function to force a close of a peer session |
| 2460 | */ |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 2461 | static void peer_session_forceshutdown(struct peer *peer) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2462 | { |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 2463 | struct appctx *appctx = peer->appctx; |
| 2464 | |
Frédéric Lécaille | 5df1190 | 2017-06-13 16:39:57 +0200 | [diff] [blame] | 2465 | /* Note that the peer sessions which have just been created |
| 2466 | * (->st0 == PEER_SESS_ST_CONNECT) must not |
| 2467 | * be shutdown, if not, the TCP session will never be closed |
| 2468 | * and stay in CLOSE_WAIT state after having been closed by |
| 2469 | * the remote side. |
| 2470 | */ |
| 2471 | if (!appctx || appctx->st0 == PEER_SESS_ST_CONNECT) |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 2472 | return; |
| 2473 | |
Willy Tarreau | 81bc3b0 | 2016-10-31 17:37:39 +0100 | [diff] [blame] | 2474 | if (appctx->applet != &peer_applet) |
| 2475 | return; |
| 2476 | |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 2477 | __peer_session_deinit(peer); |
| 2478 | |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2479 | appctx->st0 = PEER_SESS_ST_END; |
Willy Tarreau | 78c0c50 | 2016-10-31 17:32:20 +0100 | [diff] [blame] | 2480 | appctx_wakeup(appctx); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2481 | } |
| 2482 | |
Willy Tarreau | 91d9628 | 2015-03-13 15:47:26 +0100 | [diff] [blame] | 2483 | /* Pre-configures a peers frontend to accept incoming connections */ |
| 2484 | void peers_setup_frontend(struct proxy *fe) |
| 2485 | { |
| 2486 | fe->last_change = now.tv_sec; |
Frédéric Lécaille | c06b5d4 | 2018-04-26 10:06:41 +0200 | [diff] [blame] | 2487 | fe->cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | 91d9628 | 2015-03-13 15:47:26 +0100 | [diff] [blame] | 2488 | fe->maxconn = 0; |
| 2489 | fe->conn_retries = CONN_RETRIES; |
| 2490 | fe->timeout.client = MS_TO_TICKS(5000); |
Willy Tarreau | d1d48d4 | 2015-03-13 16:15:46 +0100 | [diff] [blame] | 2491 | fe->accept = frontend_accept; |
Willy Tarreau | f87ab94 | 2015-03-13 15:55:16 +0100 | [diff] [blame] | 2492 | fe->default_target = &peer_applet.obj_type; |
Willy Tarreau | 91d9628 | 2015-03-13 15:47:26 +0100 | [diff] [blame] | 2493 | fe->options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC; |
Willy Tarreau | 0fca483 | 2015-05-01 19:12:05 +0200 | [diff] [blame] | 2494 | fe->bind_proc = 0; /* will be filled by users */ |
Willy Tarreau | 91d9628 | 2015-03-13 15:47:26 +0100 | [diff] [blame] | 2495 | } |
| 2496 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2497 | /* |
Willy Tarreau | bd55e31 | 2010-11-11 10:55:09 +0100 | [diff] [blame] | 2498 | * Create a new peer session in assigned state (connect will start automatically) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2499 | */ |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2500 | static struct appctx *peer_session_create(struct peers *peers, struct peer *peer) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2501 | { |
Willy Tarreau | 04b9286 | 2017-09-15 11:01:04 +0200 | [diff] [blame] | 2502 | struct proxy *p = peers->peers_fe; /* attached frontend */ |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 2503 | struct appctx *appctx; |
Willy Tarreau | 15b5e14 | 2015-04-04 14:38:25 +0200 | [diff] [blame] | 2504 | struct session *sess; |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2505 | struct stream *s; |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 2506 | struct connection *conn; |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2507 | struct conn_stream *cs; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2508 | |
Frédéric Lécaille | 54bff83 | 2019-03-26 10:25:20 +0100 | [diff] [blame] | 2509 | peer->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT)); |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 2510 | peer->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT)); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2511 | peer->statuscode = PEER_SESS_SC_CONNECTCODE; |
Willy Tarreau | d990baf | 2015-04-05 00:32:03 +0200 | [diff] [blame] | 2512 | s = NULL; |
| 2513 | |
Emeric Brun | 1138fd0 | 2017-06-19 12:38:55 +0200 | [diff] [blame] | 2514 | appctx = appctx_new(&peer_applet, tid_bit); |
Willy Tarreau | d990baf | 2015-04-05 00:32:03 +0200 | [diff] [blame] | 2515 | if (!appctx) |
| 2516 | goto out_close; |
| 2517 | |
| 2518 | appctx->st0 = PEER_SESS_ST_CONNECT; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2519 | appctx->ctx.peers.ptr = (void *)peer; |
Willy Tarreau | d990baf | 2015-04-05 00:32:03 +0200 | [diff] [blame] | 2520 | |
Willy Tarreau | 04b9286 | 2017-09-15 11:01:04 +0200 | [diff] [blame] | 2521 | sess = session_new(p, NULL, &appctx->obj_type); |
Willy Tarreau | 15b5e14 | 2015-04-04 14:38:25 +0200 | [diff] [blame] | 2522 | if (!sess) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2523 | ha_alert("out of memory in peer_session_create().\n"); |
Willy Tarreau | d990baf | 2015-04-05 00:32:03 +0200 | [diff] [blame] | 2524 | goto out_free_appctx; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2525 | } |
| 2526 | |
Willy Tarreau | 87787ac | 2017-08-28 16:22:54 +0200 | [diff] [blame] | 2527 | if ((s = stream_new(sess, &appctx->obj_type)) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2528 | ha_alert("Failed to initialize stream in peer_session_create().\n"); |
Willy Tarreau | 87787ac | 2017-08-28 16:22:54 +0200 | [diff] [blame] | 2529 | goto out_free_sess; |
Willy Tarreau | 8baf906 | 2015-04-05 00:46:36 +0200 | [diff] [blame] | 2530 | } |
| 2531 | |
Willy Tarreau | 342bfb1 | 2015-04-05 01:35:34 +0200 | [diff] [blame] | 2532 | /* The tasks below are normally what is supposed to be done by |
| 2533 | * fe->accept(). |
| 2534 | */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2535 | s->flags = SF_ASSIGNED|SF_ADDR_SET; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2536 | |
Willy Tarreau | 6e2979c | 2015-04-27 13:21:15 +0200 | [diff] [blame] | 2537 | /* applet is waiting for data */ |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 2538 | si_cant_get(&s->si[0]); |
Willy Tarreau | 6e2979c | 2015-04-27 13:21:15 +0200 | [diff] [blame] | 2539 | appctx_wakeup(appctx); |
| 2540 | |
Willy Tarreau | 3ed35ef | 2013-10-24 11:51:38 +0200 | [diff] [blame] | 2541 | /* initiate an outgoing connection */ |
Willy Tarreau | dbd0267 | 2017-12-06 17:39:53 +0100 | [diff] [blame] | 2542 | s->si[1].flags |= SI_FL_NOLINGER; |
Willy Tarreau | 3ed35ef | 2013-10-24 11:51:38 +0200 | [diff] [blame] | 2543 | si_set_state(&s->si[1], SI_ST_ASS); |
Willy Tarreau | 3ed35ef | 2013-10-24 11:51:38 +0200 | [diff] [blame] | 2544 | |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 2545 | /* automatically prepare the stream interface to connect to the |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 2546 | * pre-initialized connection in si->conn. |
| 2547 | */ |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 2548 | if (unlikely((conn = conn_new()) == NULL)) |
Willy Tarreau | 8baf906 | 2015-04-05 00:46:36 +0200 | [diff] [blame] | 2549 | goto out_free_strm; |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 2550 | |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2551 | if (unlikely((cs = cs_new(conn)) == NULL)) |
| 2552 | goto out_free_conn; |
| 2553 | |
Frédéric Lécaille | 1055e68 | 2018-04-26 14:35:21 +0200 | [diff] [blame] | 2554 | conn->target = s->target = peer_session_target(peer, s); |
Willy Tarreau | be37315 | 2018-09-06 11:45:30 +0200 | [diff] [blame] | 2555 | memcpy(&conn->addr.to, &peer->addr, sizeof(conn->addr.to)); |
| 2556 | |
Frédéric Lécaille | 1055e68 | 2018-04-26 14:35:21 +0200 | [diff] [blame] | 2557 | conn_prepare(conn, peer->proto, peer_xprt(peer)); |
Olivier Houchard | ef60ff3 | 2019-01-29 19:00:33 +0100 | [diff] [blame] | 2558 | if (conn_install_mux(conn, &mux_pt_ops, cs, s->be, NULL) < 0) |
| 2559 | goto out_free_cs; |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2560 | si_attach_cs(&s->si[1], cs); |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 2561 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2562 | s->do_log = NULL; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2563 | s->uniq_id = 0; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2564 | |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 2565 | s->res.flags |= CF_READ_DONTWAIT; |
Willy Tarreau | 696a291 | 2014-11-24 11:36:57 +0100 | [diff] [blame] | 2566 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2567 | peer->appctx = appctx; |
Willy Tarreau | 87787ac | 2017-08-28 16:22:54 +0200 | [diff] [blame] | 2568 | task_wakeup(s->task, TASK_WOKEN_INIT); |
Olivier Houchard | ed87989 | 2019-03-08 18:53:43 +0100 | [diff] [blame] | 2569 | _HA_ATOMIC_ADD(&active_peers, 1); |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2570 | return appctx; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2571 | |
| 2572 | /* Error unrolling */ |
Olivier Houchard | ef60ff3 | 2019-01-29 19:00:33 +0100 | [diff] [blame] | 2573 | out_free_cs: |
| 2574 | cs_free(cs); |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2575 | out_free_conn: |
| 2576 | conn_free(conn); |
Willy Tarreau | 15b5e14 | 2015-04-04 14:38:25 +0200 | [diff] [blame] | 2577 | out_free_strm: |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2578 | LIST_DEL(&s->list); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 2579 | pool_free(pool_head_stream, s); |
Willy Tarreau | 15b5e14 | 2015-04-04 14:38:25 +0200 | [diff] [blame] | 2580 | out_free_sess: |
Willy Tarreau | 11c3624 | 2015-04-04 15:54:03 +0200 | [diff] [blame] | 2581 | session_free(sess); |
Willy Tarreau | d990baf | 2015-04-05 00:32:03 +0200 | [diff] [blame] | 2582 | out_free_appctx: |
| 2583 | appctx_free(appctx); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2584 | out_close: |
Willy Tarreau | b21d08e | 2016-10-31 17:46:57 +0100 | [diff] [blame] | 2585 | return NULL; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2586 | } |
| 2587 | |
| 2588 | /* |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 2589 | * Task processing function to manage re-connect, peer session |
| 2590 | * tasks wakeup on local update and heartbeat. |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2591 | */ |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 2592 | static struct task *process_peer_sync(struct task * task, void *context, unsigned short state) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2593 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 2594 | struct peers *peers = context; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2595 | struct peer *ps; |
| 2596 | struct shared_table *st; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2597 | |
| 2598 | task->expire = TICK_ETERNITY; |
| 2599 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2600 | if (!peers->peers_fe) { |
Willy Tarreau | 46dc1ca | 2015-05-01 18:32:13 +0200 | [diff] [blame] | 2601 | /* this one was never started, kill it */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2602 | signal_unregister_handler(peers->sighandler); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 2603 | task_destroy(peers->sync_task); |
Willy Tarreau | 37bb7be | 2015-09-21 15:24:58 +0200 | [diff] [blame] | 2604 | peers->sync_task = NULL; |
Willy Tarreau | 46dc1ca | 2015-05-01 18:32:13 +0200 | [diff] [blame] | 2605 | return NULL; |
| 2606 | } |
| 2607 | |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2608 | /* Acquire lock for all peers of the section */ |
| 2609 | for (ps = peers->remote; ps; ps = ps->next) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2610 | HA_SPIN_LOCK(PEER_LOCK, &ps->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2611 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2612 | if (!stopping) { |
| 2613 | /* Normal case (not soft stop)*/ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2614 | |
| 2615 | if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL) && |
| 2616 | (!nb_oldpids || tick_is_expired(peers->resync_timeout, now_ms)) && |
| 2617 | !(peers->flags & PEERS_F_RESYNC_ASSIGN)) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2618 | /* Resync from local peer needed |
| 2619 | no peer was assigned for the lesson |
| 2620 | and no old local peer found |
| 2621 | or resync timeout expire */ |
| 2622 | |
| 2623 | /* flag no more resync from local, to try resync from remotes */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2624 | peers->flags |= PEERS_F_RESYNC_LOCAL; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2625 | |
| 2626 | /* reschedule a resync */ |
Frédéric Lécaille | 54bff83 | 2019-03-26 10:25:20 +0100 | [diff] [blame] | 2627 | peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT)); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2628 | } |
| 2629 | |
| 2630 | /* For each session */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2631 | for (ps = peers->remote; ps; ps = ps->next) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2632 | /* For each remote peers */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2633 | if (!ps->local) { |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2634 | if (!ps->appctx) { |
| 2635 | /* no active peer connection */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2636 | if (ps->statuscode == 0 || |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2637 | ((ps->statuscode == PEER_SESS_SC_CONNECTCODE || |
Willy Tarreau | b4e34da | 2015-05-20 10:39:04 +0200 | [diff] [blame] | 2638 | ps->statuscode == PEER_SESS_SC_SUCCESSCODE || |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2639 | ps->statuscode == PEER_SESS_SC_CONNECTEDCODE) && |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2640 | tick_is_expired(ps->reconnect, now_ms))) { |
| 2641 | /* connection never tried |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2642 | * or previous peer connection established with success |
| 2643 | * or previous peer connection failed while connecting |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2644 | * and reconnection timer is expired */ |
| 2645 | |
| 2646 | /* retry a connect */ |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2647 | ps->appctx = peer_session_create(peers, ps); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2648 | } |
Willy Tarreau | b4e34da | 2015-05-20 10:39:04 +0200 | [diff] [blame] | 2649 | else if (!tick_is_expired(ps->reconnect, now_ms)) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2650 | /* If previous session failed during connection |
| 2651 | * but reconnection timer is not expired */ |
| 2652 | |
| 2653 | /* reschedule task for reconnect */ |
| 2654 | task->expire = tick_first(task->expire, ps->reconnect); |
Frédéric Lécaille | 9a88a83 | 2019-11-07 15:22:33 +0100 | [diff] [blame] | 2655 | ps->new_conn++; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2656 | } |
| 2657 | /* else do nothing */ |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2658 | } /* !ps->appctx */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2659 | else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE) { |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2660 | /* current peer connection is active and established */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2661 | if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) && |
| 2662 | !(peers->flags & PEERS_F_RESYNC_ASSIGN) && |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2663 | !(ps->flags & PEER_F_LEARN_NOTUP2DATE)) { |
| 2664 | /* Resync from a remote is needed |
| 2665 | * and no peer was assigned for lesson |
| 2666 | * and current peer may be up2date */ |
| 2667 | |
| 2668 | /* assign peer for the lesson */ |
| 2669 | ps->flags |= PEER_F_LEARN_ASSIGN; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2670 | peers->flags |= PEERS_F_RESYNC_ASSIGN; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2671 | |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2672 | /* wake up peer handler to handle a request of resync */ |
Willy Tarreau | e5843b3 | 2015-04-27 18:40:14 +0200 | [diff] [blame] | 2673 | appctx_wakeup(ps->appctx); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2674 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2675 | else { |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 2676 | int update_to_push = 0; |
| 2677 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2678 | /* Awake session if there is data to push */ |
| 2679 | for (st = ps->tables; st ; st = st->next) { |
| 2680 | if ((int)(st->last_pushed - st->table->localupdate) < 0) { |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2681 | /* wake up the peer handler to push local updates */ |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 2682 | update_to_push = 1; |
Frédéric Lécaille | 045e0d4 | 2019-03-21 11:12:32 +0100 | [diff] [blame] | 2683 | /* There is no need to send a heartbeat message |
| 2684 | * when some updates must be pushed. The remote |
| 2685 | * peer will consider <ps> peer as alive when it will |
| 2686 | * receive these updates. |
| 2687 | */ |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 2688 | ps->flags &= ~PEER_F_HEARTBEAT; |
Frédéric Lécaille | 045e0d4 | 2019-03-21 11:12:32 +0100 | [diff] [blame] | 2689 | /* Re-schedule another one later. */ |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 2690 | ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT)); |
Frédéric Lécaille | 045e0d4 | 2019-03-21 11:12:32 +0100 | [diff] [blame] | 2691 | /* We are going to send updates, let's ensure we will |
| 2692 | * come back to send heartbeat messages or to reconnect. |
| 2693 | */ |
| 2694 | task->expire = tick_first(ps->reconnect, ps->heartbeat); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2695 | appctx_wakeup(ps->appctx); |
| 2696 | break; |
| 2697 | } |
| 2698 | } |
Frédéric Lécaille | 045e0d4 | 2019-03-21 11:12:32 +0100 | [diff] [blame] | 2699 | /* When there are updates to send we do not reconnect |
| 2700 | * and do not send heartbeat message either. |
| 2701 | */ |
| 2702 | if (!update_to_push) { |
| 2703 | if (tick_is_expired(ps->reconnect, now_ms)) { |
| 2704 | if (ps->flags & PEER_F_ALIVE) { |
| 2705 | /* This peer was alive during a 'reconnect' period. |
| 2706 | * Flag it as not alive again for the next period. |
| 2707 | */ |
| 2708 | ps->flags &= ~PEER_F_ALIVE; |
Frédéric Lécaille | 54bff83 | 2019-03-26 10:25:20 +0100 | [diff] [blame] | 2709 | ps->reconnect = tick_add(now_ms, MS_TO_TICKS(PEER_RECONNECT_TIMEOUT)); |
Frédéric Lécaille | 045e0d4 | 2019-03-21 11:12:32 +0100 | [diff] [blame] | 2710 | } |
| 2711 | else { |
Willy Tarreau | 861c4ef | 2020-03-08 00:42:37 +0100 | [diff] [blame] | 2712 | ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + ha_random() % 2000)); |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 2713 | peer_session_forceshutdown(ps); |
Frédéric Lécaille | 9a88a83 | 2019-11-07 15:22:33 +0100 | [diff] [blame] | 2714 | ps->no_hbt++; |
Frédéric Lécaille | 045e0d4 | 2019-03-21 11:12:32 +0100 | [diff] [blame] | 2715 | } |
| 2716 | } |
| 2717 | else if (tick_is_expired(ps->heartbeat, now_ms)) { |
| 2718 | ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT)); |
| 2719 | ps->flags |= PEER_F_HEARTBEAT; |
| 2720 | appctx_wakeup(ps->appctx); |
| 2721 | } |
Frédéric Lécaille | b7405c1 | 2019-03-27 14:32:39 +0100 | [diff] [blame] | 2722 | task->expire = tick_first(ps->reconnect, ps->heartbeat); |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 2723 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2724 | } |
| 2725 | /* else do nothing */ |
| 2726 | } /* SUCCESSCODE */ |
| 2727 | } /* !ps->peer->local */ |
| 2728 | } /* for */ |
| 2729 | |
| 2730 | /* Resync from remotes expired: consider resync is finished */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2731 | if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) && |
| 2732 | !(peers->flags & PEERS_F_RESYNC_ASSIGN) && |
| 2733 | tick_is_expired(peers->resync_timeout, now_ms)) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2734 | /* Resync from remote peer needed |
| 2735 | * no peer was assigned for the lesson |
| 2736 | * and resync timeout expire */ |
| 2737 | |
| 2738 | /* flag no more resync from remote, consider resync is finished */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2739 | peers->flags |= PEERS_F_RESYNC_REMOTE; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2740 | } |
| 2741 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2742 | if ((peers->flags & PEERS_RESYNC_STATEMASK) != PEERS_RESYNC_FINISHED) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2743 | /* Resync not finished*/ |
Frédéric Lécaille | 5d6e5f8 | 2017-05-29 13:47:16 +0200 | [diff] [blame] | 2744 | /* reschedule task to resync timeout if not expired, to ended resync if needed */ |
| 2745 | if (!tick_is_expired(peers->resync_timeout, now_ms)) |
| 2746 | task->expire = tick_first(task->expire, peers->resync_timeout); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2747 | } |
| 2748 | } /* !stopping */ |
| 2749 | else { |
| 2750 | /* soft stop case */ |
Willy Tarreau | 086735a | 2018-11-05 15:09:47 +0100 | [diff] [blame] | 2751 | if (state & TASK_WOKEN_SIGNAL) { |
Joseph Herlant | 82b2f54 | 2018-11-15 12:19:14 -0800 | [diff] [blame] | 2752 | /* We've just received the signal */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2753 | if (!(peers->flags & PEERS_F_DONOTSTOP)) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2754 | /* add DO NOT STOP flag if not present */ |
Olivier Houchard | ed87989 | 2019-03-08 18:53:43 +0100 | [diff] [blame] | 2755 | _HA_ATOMIC_ADD(&jobs, 1); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2756 | peers->flags |= PEERS_F_DONOTSTOP; |
| 2757 | ps = peers->local; |
| 2758 | for (st = ps->tables; st ; st = st->next) |
| 2759 | st->table->syncing++; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2760 | } |
| 2761 | |
| 2762 | /* disconnect all connected peers */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2763 | for (ps = peers->remote; ps; ps = ps->next) { |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2764 | /* we're killing a connection, we must apply a random delay before |
| 2765 | * retrying otherwise the other end will do the same and we can loop |
| 2766 | * for a while. |
| 2767 | */ |
Willy Tarreau | 861c4ef | 2020-03-08 00:42:37 +0100 | [diff] [blame] | 2768 | ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + ha_random() % 2000)); |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2769 | if (ps->appctx) { |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 2770 | peer_session_forceshutdown(ps); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2771 | } |
| 2772 | } |
| 2773 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2774 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2775 | ps = peers->local; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2776 | if (ps->flags & PEER_F_TEACH_COMPLETE) { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2777 | if (peers->flags & PEERS_F_DONOTSTOP) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2778 | /* resync of new process was complete, current process can die now */ |
Olivier Houchard | ed87989 | 2019-03-08 18:53:43 +0100 | [diff] [blame] | 2779 | _HA_ATOMIC_SUB(&jobs, 1); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2780 | peers->flags &= ~PEERS_F_DONOTSTOP; |
| 2781 | for (st = ps->tables; st ; st = st->next) |
| 2782 | st->table->syncing--; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2783 | } |
| 2784 | } |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2785 | else if (!ps->appctx) { |
| 2786 | /* If there's no active peer connection */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2787 | if (ps->statuscode == 0 || |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2788 | ps->statuscode == PEER_SESS_SC_SUCCESSCODE || |
| 2789 | ps->statuscode == PEER_SESS_SC_CONNECTEDCODE || |
| 2790 | ps->statuscode == PEER_SESS_SC_TRYAGAIN) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2791 | /* connection never tried |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2792 | * or previous peer connection was successfully established |
| 2793 | * or previous tcp connect succeeded but init state incomplete |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2794 | * or during previous connect, peer replies a try again statuscode */ |
| 2795 | |
| 2796 | /* connect to the peer */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2797 | peer_session_create(peers, ps); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2798 | } |
| 2799 | else { |
| 2800 | /* Other error cases */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2801 | if (peers->flags & PEERS_F_DONOTSTOP) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2802 | /* unable to resync new process, current process can die now */ |
Olivier Houchard | ed87989 | 2019-03-08 18:53:43 +0100 | [diff] [blame] | 2803 | _HA_ATOMIC_SUB(&jobs, 1); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2804 | peers->flags &= ~PEERS_F_DONOTSTOP; |
| 2805 | for (st = ps->tables; st ; st = st->next) |
| 2806 | st->table->syncing--; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2807 | } |
| 2808 | } |
| 2809 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2810 | else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE ) { |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2811 | /* current peer connection is active and established |
| 2812 | * wake up all peer handlers to push remaining local updates */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2813 | for (st = ps->tables; st ; st = st->next) { |
| 2814 | if ((int)(st->last_pushed - st->table->localupdate) < 0) { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2815 | appctx_wakeup(ps->appctx); |
| 2816 | break; |
| 2817 | } |
| 2818 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2819 | } |
| 2820 | } /* stopping */ |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2821 | |
| 2822 | /* Release lock for all peers of the section */ |
| 2823 | for (ps = peers->remote; ps; ps = ps->next) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2824 | HA_SPIN_UNLOCK(PEER_LOCK, &ps->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2825 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2826 | /* Wakeup for re-connect */ |
| 2827 | return task; |
| 2828 | } |
| 2829 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2830 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2831 | /* |
Willy Tarreau | d944344 | 2018-10-15 11:18:03 +0200 | [diff] [blame] | 2832 | * returns 0 in case of error. |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2833 | */ |
Willy Tarreau | d944344 | 2018-10-15 11:18:03 +0200 | [diff] [blame] | 2834 | int peers_init_sync(struct peers *peers) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2835 | { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2836 | struct peer * curpeer; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2837 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2838 | for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2839 | peers->peers_fe->maxconn += 3; |
| 2840 | } |
| 2841 | |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 2842 | peers->sync_task = task_new(MAX_THREADS_MASK); |
Willy Tarreau | d944344 | 2018-10-15 11:18:03 +0200 | [diff] [blame] | 2843 | if (!peers->sync_task) |
| 2844 | return 0; |
| 2845 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2846 | peers->sync_task->process = process_peer_sync; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2847 | peers->sync_task->context = (void *)peers; |
| 2848 | peers->sighandler = signal_register_task(0, peers->sync_task, 0); |
| 2849 | task_wakeup(peers->sync_task, TASK_WOKEN_INIT); |
Willy Tarreau | d944344 | 2018-10-15 11:18:03 +0200 | [diff] [blame] | 2850 | return 1; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2851 | } |
| 2852 | |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2853 | /* |
| 2854 | * Allocate a cache a dictionary entries used upon transmission. |
| 2855 | */ |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2856 | static struct dcache_tx *new_dcache_tx(size_t max_entries) |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2857 | { |
| 2858 | struct dcache_tx *d; |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2859 | struct ebpt_node *entries; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2860 | |
| 2861 | d = malloc(sizeof *d); |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2862 | entries = calloc(max_entries, sizeof *entries); |
| 2863 | if (!d || !entries) |
| 2864 | goto err; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2865 | |
| 2866 | d->lru_key = 0; |
Frédéric Lécaille | b65717f | 2019-06-07 14:25:25 +0200 | [diff] [blame] | 2867 | d->prev_lookup = NULL; |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2868 | d->cached_entries = EB_ROOT_UNIQUE; |
| 2869 | d->entries = entries; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2870 | |
| 2871 | return d; |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2872 | |
| 2873 | err: |
| 2874 | free(d); |
| 2875 | free(entries); |
| 2876 | return NULL; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2877 | } |
| 2878 | |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2879 | static void free_dcache_tx(struct dcache_tx *dc) |
| 2880 | { |
| 2881 | free(dc->entries); |
| 2882 | dc->entries = NULL; |
| 2883 | free(dc); |
| 2884 | } |
| 2885 | |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2886 | /* |
| 2887 | * Allocate a cache of dictionary entries with <name> as name and <max_entries> |
| 2888 | * as maximum of entries. |
| 2889 | * Return the dictionay cache if succeeded, NULL if not. |
| 2890 | * Must be deallocated calling free_dcache(). |
| 2891 | */ |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2892 | static struct dcache *new_dcache(size_t max_entries) |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2893 | { |
| 2894 | struct dcache_tx *dc_tx; |
| 2895 | struct dcache *dc; |
| 2896 | struct dcache_rx *dc_rx; |
| 2897 | |
| 2898 | dc = calloc(1, sizeof *dc); |
| 2899 | dc_tx = new_dcache_tx(max_entries); |
| 2900 | dc_rx = calloc(max_entries, sizeof *dc_rx); |
| 2901 | if (!dc || !dc_tx || !dc_rx) |
| 2902 | goto err; |
| 2903 | |
| 2904 | dc->tx = dc_tx; |
| 2905 | dc->rx = dc_rx; |
| 2906 | dc->max_entries = max_entries; |
| 2907 | |
| 2908 | return dc; |
| 2909 | |
| 2910 | err: |
| 2911 | free(dc); |
| 2912 | free(dc_tx); |
| 2913 | free(dc_rx); |
| 2914 | return NULL; |
| 2915 | } |
| 2916 | |
| 2917 | /* |
| 2918 | * Deallocate a cache of dictionary entries. |
| 2919 | */ |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2920 | static inline void free_dcache(struct dcache *dc) |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2921 | { |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2922 | free_dcache_tx(dc->tx); |
| 2923 | dc->tx = NULL; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2924 | free(dc->rx); dc->rx = NULL; |
| 2925 | free(dc); |
| 2926 | } |
| 2927 | |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2928 | |
| 2929 | /* |
| 2930 | * Look for the dictionary entry with the value of <i> in <d> cache of dictionary |
| 2931 | * entries used upon transmission. |
| 2932 | * Return the entry if found, NULL if not. |
| 2933 | */ |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2934 | static struct ebpt_node *dcache_tx_lookup_value(struct dcache_tx *d, |
| 2935 | struct dcache_tx_entry *i) |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2936 | { |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2937 | return ebpt_lookup(&d->cached_entries, i->entry.key); |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2938 | } |
| 2939 | |
| 2940 | /* |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2941 | * Flush <dc> cache. |
| 2942 | * Always succeeds. |
| 2943 | */ |
| 2944 | static inline void flush_dcache(struct peer *peer) |
| 2945 | { |
| 2946 | int i; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 2947 | struct dcache *dc = peer->dcache; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2948 | |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2949 | for (i = 0; i < dc->max_entries; i++) |
| 2950 | ebpt_delete(&dc->tx->entries[i]); |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2951 | |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2952 | memset(dc->rx, 0, dc->max_entries * sizeof *dc->rx); |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2953 | } |
| 2954 | |
| 2955 | /* |
| 2956 | * Insert a dictionary entry in <dc> cache part used upon transmission (->tx) |
| 2957 | * with information provided by <i> dictionary cache entry (especially the value |
| 2958 | * to be inserted if not already). Return <i> if already present in the cache |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2959 | * or something different of <i> if not. |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2960 | */ |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2961 | static struct ebpt_node *dcache_tx_insert(struct dcache *dc, struct dcache_tx_entry *i) |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2962 | { |
| 2963 | struct dcache_tx *dc_tx; |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2964 | struct ebpt_node *o; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2965 | |
| 2966 | dc_tx = dc->tx; |
Frédéric Lécaille | b65717f | 2019-06-07 14:25:25 +0200 | [diff] [blame] | 2967 | |
| 2968 | if (dc_tx->prev_lookup && dc_tx->prev_lookup->key == i->entry.key) { |
| 2969 | o = dc_tx->prev_lookup; |
| 2970 | } else { |
| 2971 | o = dcache_tx_lookup_value(dc_tx, i); |
| 2972 | if (o) { |
| 2973 | /* Save it */ |
| 2974 | dc_tx->prev_lookup = o; |
| 2975 | } |
| 2976 | } |
| 2977 | |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2978 | if (o) { |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2979 | /* Copy the ID. */ |
| 2980 | i->id = o - dc->tx->entries; |
| 2981 | return &i->entry; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2982 | } |
| 2983 | |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2984 | /* The new entry to put in cache */ |
Frédéric Lécaille | b65717f | 2019-06-07 14:25:25 +0200 | [diff] [blame] | 2985 | dc_tx->prev_lookup = o = &dc_tx->entries[dc_tx->lru_key]; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2986 | |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2987 | ebpt_delete(o); |
| 2988 | o->key = i->entry.key; |
| 2989 | ebpt_insert(&dc_tx->cached_entries, o); |
| 2990 | i->id = dc_tx->lru_key; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2991 | |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 2992 | /* Update the index for the next entry to put in cache */ |
| 2993 | dc_tx->lru_key = (dc_tx->lru_key + 1) & (dc->max_entries - 1); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2994 | |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 2995 | return o; |
| 2996 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2997 | |
| 2998 | /* |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 2999 | * Allocate a dictionary cache for each peer of <peers> section. |
| 3000 | * Return 1 if succeeded, 0 if not. |
| 3001 | */ |
| 3002 | int peers_alloc_dcache(struct peers *peers) |
| 3003 | { |
| 3004 | struct peer *p; |
| 3005 | |
| 3006 | for (p = peers->remote; p; p = p->next) { |
| 3007 | p->dcache = new_dcache(PEER_STKT_CACHE_MAX_ENTRIES); |
| 3008 | if (!p->dcache) |
| 3009 | return 0; |
| 3010 | } |
| 3011 | |
| 3012 | return 1; |
| 3013 | } |
| 3014 | |
| 3015 | /* |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3016 | * Function used to register a table for sync on a group of peers |
| 3017 | * |
| 3018 | */ |
| 3019 | void peers_register_table(struct peers *peers, struct stktable *table) |
| 3020 | { |
| 3021 | struct shared_table *st; |
| 3022 | struct peer * curpeer; |
| 3023 | int id = 0; |
| 3024 | |
| 3025 | for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 3026 | st = calloc(1,sizeof(*st)); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3027 | st->table = table; |
| 3028 | st->next = curpeer->tables; |
| 3029 | if (curpeer->tables) |
| 3030 | id = curpeer->tables->local_id; |
| 3031 | st->local_id = id + 1; |
| 3032 | |
| 3033 | curpeer->tables = st; |
| 3034 | } |
| 3035 | |
| 3036 | table->sync_task = peers->sync_task; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3037 | } |
| 3038 | |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3039 | /* |
| 3040 | * Parse the "show peers" command arguments. |
| 3041 | * Returns 0 if succeeded, 1 if not with the ->msg of the appctx set as |
| 3042 | * error message. |
| 3043 | */ |
| 3044 | static int cli_parse_show_peers(char **args, char *payload, struct appctx *appctx, void *private) |
| 3045 | { |
| 3046 | appctx->ctx.cfgpeers.target = NULL; |
| 3047 | |
| 3048 | if (*args[2]) { |
| 3049 | struct peers *p; |
| 3050 | |
| 3051 | for (p = cfg_peers; p; p = p->next) { |
| 3052 | if (!strcmp(p->id, args[2])) { |
| 3053 | appctx->ctx.cfgpeers.target = p; |
| 3054 | break; |
| 3055 | } |
| 3056 | } |
| 3057 | |
| 3058 | if (!p) { |
| 3059 | appctx->ctx.cli.severity = LOG_ERR; |
| 3060 | appctx->ctx.cli.msg = "No such peers\n"; |
| 3061 | appctx->st0 = CLI_ST_PRINT; |
| 3062 | return 1; |
| 3063 | } |
| 3064 | } |
| 3065 | |
| 3066 | return 0; |
| 3067 | } |
| 3068 | |
| 3069 | /* |
| 3070 | * This function dumps the peer state information of <peers> "peers" section. |
| 3071 | * Returns 0 if the output buffer is full and needs to be called again, non-zero if not. |
| 3072 | * Dedicated to be called by cli_io_handler_show_peers() cli I/O handler. |
| 3073 | */ |
| 3074 | static int peers_dump_head(struct buffer *msg, struct stream_interface *si, struct peers *peers) |
| 3075 | { |
| 3076 | struct tm tm; |
| 3077 | |
| 3078 | get_localtime(peers->last_change, &tm); |
Emeric Brun | 0bbec0f | 2019-04-18 11:39:43 +0200 | [diff] [blame] | 3079 | chunk_appendf(msg, "%p: [%02d/%s/%04d:%02d:%02d:%02d] id=%s state=%d flags=0x%x resync_timeout=%s task_calls=%u\n", |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3080 | peers, |
| 3081 | tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900, |
| 3082 | tm.tm_hour, tm.tm_min, tm.tm_sec, |
| 3083 | peers->id, peers->state, peers->flags, |
| 3084 | peers->resync_timeout ? |
| 3085 | tick_is_expired(peers->resync_timeout, now_ms) ? "<PAST>" : |
| 3086 | human_time(TICKS_TO_MS(peers->resync_timeout - now_ms), |
Emeric Brun | 0bbec0f | 2019-04-18 11:39:43 +0200 | [diff] [blame] | 3087 | TICKS_TO_MS(1000)) : "<NEVER>", |
| 3088 | peers->sync_task ? peers->sync_task->calls : 0); |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3089 | |
| 3090 | if (ci_putchk(si_ic(si), msg) == -1) { |
| 3091 | si_rx_room_blk(si); |
| 3092 | return 0; |
| 3093 | } |
| 3094 | |
| 3095 | return 1; |
| 3096 | } |
| 3097 | |
| 3098 | /* |
| 3099 | * This function dumps <peer> state information. |
| 3100 | * Returns 0 if the output buffer is full and needs to be called again, non-zero |
| 3101 | * if not. Dedicated to be called by cli_io_handler_show_peers() cli I/O handler. |
| 3102 | */ |
| 3103 | static int peers_dump_peer(struct buffer *msg, struct stream_interface *si, struct peer *peer) |
| 3104 | { |
| 3105 | struct connection *conn; |
| 3106 | char pn[INET6_ADDRSTRLEN]; |
| 3107 | struct stream_interface *peer_si; |
| 3108 | struct stream *peer_s; |
| 3109 | struct appctx *appctx; |
| 3110 | struct shared_table *st; |
| 3111 | |
| 3112 | addr_to_str(&peer->addr, pn, sizeof pn); |
Frédéric Lécaille | 9a88a83 | 2019-11-07 15:22:33 +0100 | [diff] [blame] | 3113 | chunk_appendf(msg, " %p: id=%s(%s) addr=%s:%d status=%s reconnect=%s confirm=%u tx_hbt=%u rx_hbt=%u no_hbt=%u new_conn=%u proto_err=%u\n", |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3114 | peer, peer->id, |
| 3115 | peer->local ? "local" : "remote", |
| 3116 | pn, get_host_port(&peer->addr), |
| 3117 | statuscode_str(peer->statuscode), |
| 3118 | peer->reconnect ? |
| 3119 | tick_is_expired(peer->reconnect, now_ms) ? "<PAST>" : |
| 3120 | human_time(TICKS_TO_MS(peer->reconnect - now_ms), |
| 3121 | TICKS_TO_MS(1000)) : "<NEVER>", |
Frédéric Lécaille | 9a88a83 | 2019-11-07 15:22:33 +0100 | [diff] [blame] | 3122 | peer->confirm, peer->tx_hbt, peer->rx_hbt, |
| 3123 | peer->no_hbt, peer->new_conn, peer->proto_err); |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3124 | |
| 3125 | chunk_appendf(&trash, " flags=0x%x", peer->flags); |
| 3126 | |
| 3127 | appctx = peer->appctx; |
| 3128 | if (!appctx) |
Frédéric Lécaille | 586f9f4 | 2019-11-06 10:41:03 +0100 | [diff] [blame] | 3129 | goto table_info; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3130 | |
Emeric Brun | 0bbec0f | 2019-04-18 11:39:43 +0200 | [diff] [blame] | 3131 | chunk_appendf(&trash, " appctx:%p st0=%d st1=%d task_calls=%u", appctx, appctx->st0, appctx->st1, |
| 3132 | appctx->t ? appctx->t->calls : 0); |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3133 | |
| 3134 | peer_si = peer->appctx->owner; |
| 3135 | if (!peer_si) |
Frédéric Lécaille | 586f9f4 | 2019-11-06 10:41:03 +0100 | [diff] [blame] | 3136 | goto table_info; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3137 | |
| 3138 | peer_s = si_strm(peer_si); |
| 3139 | if (!peer_s) |
Frédéric Lécaille | 586f9f4 | 2019-11-06 10:41:03 +0100 | [diff] [blame] | 3140 | goto table_info; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3141 | |
| 3142 | chunk_appendf(&trash, " state=%s", si_state_str(si_opposite(peer_si)->state)); |
| 3143 | |
| 3144 | conn = objt_conn(strm_orig(peer_s)); |
| 3145 | if (conn) |
| 3146 | chunk_appendf(&trash, "\n xprt=%s", conn_get_xprt_name(conn)); |
| 3147 | |
| 3148 | switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) { |
| 3149 | case AF_INET: |
| 3150 | case AF_INET6: |
| 3151 | chunk_appendf(&trash, " src=%s:%d", pn, get_host_port(&conn->addr.from)); |
| 3152 | break; |
| 3153 | case AF_UNIX: |
| 3154 | chunk_appendf(&trash, " src=unix:%d", strm_li(peer_s)->luid); |
| 3155 | break; |
| 3156 | } |
| 3157 | |
| 3158 | if (conn) |
| 3159 | conn_get_to_addr(conn); |
| 3160 | |
| 3161 | switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) { |
| 3162 | case AF_INET: |
| 3163 | case AF_INET6: |
| 3164 | chunk_appendf(&trash, " addr=%s:%d", pn, get_host_port(&conn->addr.to)); |
| 3165 | break; |
| 3166 | case AF_UNIX: |
| 3167 | chunk_appendf(&trash, " addr=unix:%d", strm_li(peer_s)->luid); |
| 3168 | break; |
| 3169 | } |
| 3170 | |
Frédéric Lécaille | 586f9f4 | 2019-11-06 10:41:03 +0100 | [diff] [blame] | 3171 | table_info: |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3172 | if (peer->remote_table) |
| 3173 | chunk_appendf(&trash, "\n remote_table:%p id=%s local_id=%d remote_id=%d", |
| 3174 | peer->remote_table, |
| 3175 | peer->remote_table->table->id, |
| 3176 | peer->remote_table->local_id, |
| 3177 | peer->remote_table->remote_id); |
| 3178 | |
| 3179 | if (peer->last_local_table) |
| 3180 | chunk_appendf(&trash, "\n last_local_table:%p id=%s local_id=%d remote_id=%d", |
| 3181 | peer->last_local_table, |
| 3182 | peer->last_local_table->table->id, |
| 3183 | peer->last_local_table->local_id, |
| 3184 | peer->last_local_table->remote_id); |
| 3185 | |
| 3186 | if (peer->tables) { |
| 3187 | chunk_appendf(&trash, "\n shared tables:"); |
| 3188 | for (st = peer->tables; st; st = st->next) { |
Frédéric Lécaille | 62b0b0b | 2019-05-29 16:20:41 +0200 | [diff] [blame] | 3189 | int i, count; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3190 | struct stktable *t; |
Frédéric Lécaille | 62b0b0b | 2019-05-29 16:20:41 +0200 | [diff] [blame] | 3191 | struct dcache *dcache; |
| 3192 | |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3193 | t = st->table; |
Frédéric Lécaille | 62b0b0b | 2019-05-29 16:20:41 +0200 | [diff] [blame] | 3194 | dcache = peer->dcache; |
| 3195 | |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3196 | chunk_appendf(&trash, "\n %p local_id=%d remote_id=%d " |
| 3197 | "flags=0x%x remote_data=0x%llx", |
| 3198 | st, st->local_id, st->remote_id, |
| 3199 | st->flags, (unsigned long long)st->remote_data); |
| 3200 | chunk_appendf(&trash, "\n last_acked=%u last_pushed=%u last_get=%u" |
| 3201 | " teaching_origin=%u update=%u", |
| 3202 | st->last_acked, st->last_pushed, st->last_get, |
| 3203 | st->teaching_origin, st->update); |
| 3204 | chunk_appendf(&trash, "\n table:%p id=%s update=%u localupdate=%u" |
| 3205 | " commitupdate=%u syncing=%u", |
| 3206 | t, t->id, t->update, t->localupdate, t->commitupdate, t->syncing); |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3207 | chunk_appendf(&trash, "\n TX dictionary cache:"); |
| 3208 | count = 0; |
| 3209 | for (i = 0; i < dcache->max_entries; i++) { |
| 3210 | struct ebpt_node *node; |
| 3211 | struct dict_entry *de; |
Frédéric Lécaille | 62b0b0b | 2019-05-29 16:20:41 +0200 | [diff] [blame] | 3212 | |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3213 | node = &dcache->tx->entries[i]; |
| 3214 | if (!node->key) |
| 3215 | break; |
| 3216 | |
| 3217 | if (!count++) |
| 3218 | chunk_appendf(&trash, "\n "); |
| 3219 | de = node->key; |
| 3220 | chunk_appendf(&trash, " %3u -> %s", i, (char *)de->value.key); |
| 3221 | count &= 0x3; |
Frédéric Lécaille | 62b0b0b | 2019-05-29 16:20:41 +0200 | [diff] [blame] | 3222 | } |
| 3223 | chunk_appendf(&trash, "\n RX dictionary cache:"); |
| 3224 | count = 0; |
| 3225 | for (i = 0; i < dcache->max_entries; i++) { |
| 3226 | if (!count++) |
| 3227 | chunk_appendf(&trash, "\n "); |
| 3228 | chunk_appendf(&trash, " %3u -> %s", i, |
| 3229 | dcache->rx[i].de ? |
| 3230 | (char *)dcache->rx[i].de->value.key : "-"); |
| 3231 | count &= 0x3; |
| 3232 | } |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3233 | } |
| 3234 | } |
| 3235 | |
| 3236 | end: |
| 3237 | chunk_appendf(&trash, "\n"); |
| 3238 | if (ci_putchk(si_ic(si), msg) == -1) { |
| 3239 | si_rx_room_blk(si); |
| 3240 | return 0; |
| 3241 | } |
| 3242 | |
| 3243 | return 1; |
| 3244 | } |
| 3245 | |
| 3246 | /* |
| 3247 | * This function dumps all the peers of "peers" section. |
| 3248 | * Returns 0 if the output buffer is full and needs to be called |
| 3249 | * again, non-zero if not. It proceeds in an isolated thread, so |
| 3250 | * there is no thread safety issue here. |
| 3251 | */ |
| 3252 | static int cli_io_handler_show_peers(struct appctx *appctx) |
| 3253 | { |
| 3254 | int show_all; |
| 3255 | int ret = 0, first_peers = 1; |
| 3256 | struct stream_interface *si = appctx->owner; |
| 3257 | |
| 3258 | thread_isolate(); |
| 3259 | |
| 3260 | show_all = !appctx->ctx.cfgpeers.target; |
| 3261 | |
| 3262 | chunk_reset(&trash); |
| 3263 | |
| 3264 | while (appctx->st2 != STAT_ST_FIN) { |
| 3265 | switch (appctx->st2) { |
| 3266 | case STAT_ST_INIT: |
| 3267 | if (show_all) |
| 3268 | appctx->ctx.cfgpeers.peers = cfg_peers; |
| 3269 | else |
| 3270 | appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.target; |
| 3271 | |
| 3272 | appctx->st2 = STAT_ST_LIST; |
| 3273 | /* fall through */ |
| 3274 | |
| 3275 | case STAT_ST_LIST: |
| 3276 | if (!appctx->ctx.cfgpeers.peers) { |
| 3277 | /* No more peers list. */ |
| 3278 | appctx->st2 = STAT_ST_END; |
| 3279 | } |
| 3280 | else { |
| 3281 | if (!first_peers) |
| 3282 | chunk_appendf(&trash, "\n"); |
| 3283 | else |
| 3284 | first_peers = 0; |
| 3285 | if (!peers_dump_head(&trash, si, appctx->ctx.cfgpeers.peers)) |
| 3286 | goto out; |
| 3287 | |
| 3288 | appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peers->remote; |
| 3289 | appctx->ctx.cfgpeers.peers = appctx->ctx.cfgpeers.peers->next; |
| 3290 | appctx->st2 = STAT_ST_INFO; |
| 3291 | } |
| 3292 | break; |
| 3293 | |
| 3294 | case STAT_ST_INFO: |
| 3295 | if (!appctx->ctx.cfgpeers.peer) { |
| 3296 | /* End of peer list */ |
| 3297 | if (show_all) |
| 3298 | appctx->st2 = STAT_ST_LIST; |
| 3299 | else |
| 3300 | appctx->st2 = STAT_ST_END; |
| 3301 | } |
| 3302 | else { |
| 3303 | if (!peers_dump_peer(&trash, si, appctx->ctx.cfgpeers.peer)) |
| 3304 | goto out; |
| 3305 | |
| 3306 | appctx->ctx.cfgpeers.peer = appctx->ctx.cfgpeers.peer->next; |
| 3307 | } |
| 3308 | break; |
| 3309 | |
| 3310 | case STAT_ST_END: |
| 3311 | appctx->st2 = STAT_ST_FIN; |
| 3312 | break; |
| 3313 | } |
| 3314 | } |
| 3315 | ret = 1; |
| 3316 | out: |
| 3317 | thread_release(); |
| 3318 | return ret; |
| 3319 | } |
| 3320 | |
| 3321 | /* |
| 3322 | * CLI keywords. |
| 3323 | */ |
| 3324 | static struct cli_kw_list cli_kws = {{ }, { |
| 3325 | { { "show", "peers", NULL }, "show peers [peers section]: dump some information about all the peers or this peers section", cli_parse_show_peers, cli_io_handler_show_peers, }, |
| 3326 | {}, |
| 3327 | }}; |
| 3328 | |
| 3329 | /* Register cli keywords */ |
| 3330 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
| 3331 | |