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