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> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 14 | #include <stdio.h> |
| 15 | #include <stdlib.h> |
| 16 | #include <string.h> |
| 17 | |
| 18 | #include <sys/socket.h> |
| 19 | #include <sys/stat.h> |
| 20 | #include <sys/types.h> |
| 21 | |
Willy Tarreau | 8db34cc | 2021-10-06 17:53:19 +0200 | [diff] [blame] | 22 | #include <import/eb32tree.h> |
| 23 | #include <import/ebmbtree.h> |
| 24 | #include <import/ebpttree.h> |
| 25 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 26 | #include <haproxy/api.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 27 | #include <haproxy/applet.h> |
Willy Tarreau | 8bd146d | 2022-07-19 20:17:38 +0200 | [diff] [blame] | 28 | #include <haproxy/cfgparse.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 29 | #include <haproxy/channel.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 30 | #include <haproxy/cli.h> |
Willy Tarreau | 3afc4c4 | 2020-06-03 18:23:19 +0200 | [diff] [blame] | 31 | #include <haproxy/dict.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 32 | #include <haproxy/errors.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 33 | #include <haproxy/fd.h> |
Willy Tarreau | 762d7a5 | 2020-06-04 11:23:07 +0200 | [diff] [blame] | 34 | #include <haproxy/frontend.h> |
Willy Tarreau | 6131d6a | 2020-06-02 16:48:09 +0200 | [diff] [blame] | 35 | #include <haproxy/net_helper.h> |
Willy Tarreau | 8efbdfb | 2020-06-04 11:29:21 +0200 | [diff] [blame] | 36 | #include <haproxy/obj_type-t.h> |
Willy Tarreau | 3c2a7c2 | 2020-06-04 18:38:21 +0200 | [diff] [blame] | 37 | #include <haproxy/peers.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 38 | #include <haproxy/proxy.h> |
Willy Tarreau | 5edca2f | 2022-05-27 09:25:10 +0200 | [diff] [blame] | 39 | #include <haproxy/sc_strm.h> |
Willy Tarreau | 48d25b3 | 2020-06-04 18:58:52 +0200 | [diff] [blame] | 40 | #include <haproxy/session-t.h> |
Willy Tarreau | 3727a8a | 2020-06-04 17:37:26 +0200 | [diff] [blame] | 41 | #include <haproxy/signal.h> |
Willy Tarreau | 2eec9b5 | 2020-06-04 19:58:55 +0200 | [diff] [blame] | 42 | #include <haproxy/stats-t.h> |
Willy Tarreau | cb086c6 | 2022-05-27 09:47:12 +0200 | [diff] [blame] | 43 | #include <haproxy/stconn.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 44 | #include <haproxy/stick_table.h> |
| 45 | #include <haproxy/stream.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 46 | #include <haproxy/task.h> |
| 47 | #include <haproxy/thread.h> |
Willy Tarreau | 92b4f13 | 2020-06-01 11:05:15 +0200 | [diff] [blame] | 48 | #include <haproxy/time.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 49 | #include <haproxy/tools.h> |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 50 | #include <haproxy/trace.h> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 51 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 52 | |
| 53 | /*******************************/ |
| 54 | /* Current peer learning state */ |
| 55 | /*******************************/ |
| 56 | |
| 57 | /******************************/ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 58 | /* Current peers section resync state */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 59 | /******************************/ |
Emeric Brun | ccdfbae | 2021-04-28 12:59:35 +0200 | [diff] [blame] | 60 | #define PEERS_F_RESYNC_LOCAL 0x00000001 /* Learn from local finished or no more needed */ |
| 61 | #define PEERS_F_RESYNC_REMOTE 0x00000002 /* Learn from remote finished or no more needed */ |
| 62 | #define PEERS_F_RESYNC_ASSIGN 0x00000004 /* A peer was assigned to learn our lesson */ |
| 63 | #define PEERS_F_RESYNC_PROCESS 0x00000008 /* The assigned peer was requested for resync */ |
| 64 | #define PEERS_F_RESYNC_LOCALTIMEOUT 0x00000010 /* Timeout waiting for a full resync from a local node */ |
| 65 | #define PEERS_F_RESYNC_REMOTETIMEOUT 0x00000020 /* Timeout waiting for a full resync from a remote node */ |
| 66 | #define PEERS_F_RESYNC_LOCALABORT 0x00000040 /* Session aborted learning from a local node */ |
| 67 | #define PEERS_F_RESYNC_REMOTEABORT 0x00000080 /* Session aborted learning from a remote node */ |
| 68 | #define PEERS_F_RESYNC_LOCALFINISHED 0x00000100 /* A local node teach us and was fully up to date */ |
| 69 | #define PEERS_F_RESYNC_REMOTEFINISHED 0x00000200 /* A remote node teach us and was fully up to date */ |
| 70 | #define PEERS_F_RESYNC_LOCALPARTIAL 0x00000400 /* A local node teach us but was partially up to date */ |
| 71 | #define PEERS_F_RESYNC_REMOTEPARTIAL 0x00000800 /* A remote node teach us but was partially up to date */ |
| 72 | #define PEERS_F_RESYNC_LOCALASSIGN 0x00001000 /* A local node was assigned for a full resync */ |
| 73 | #define PEERS_F_RESYNC_REMOTEASSIGN 0x00002000 /* A remote node was assigned for a full resync */ |
| 74 | #define PEERS_F_RESYNC_REQUESTED 0x00004000 /* A resync was explicitly requested */ |
| 75 | #define PEERS_F_DONOTSTOP 0x00010000 /* Main table sync task block process during soft stop |
| 76 | to push data to new process */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 77 | |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 78 | #define PEERS_RESYNC_STATEMASK (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE) |
| 79 | #define PEERS_RESYNC_FROMLOCAL 0x00000000 |
| 80 | #define PEERS_RESYNC_FROMREMOTE PEERS_F_RESYNC_LOCAL |
| 81 | #define PEERS_RESYNC_FINISHED (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE) |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 82 | |
| 83 | /***********************************/ |
| 84 | /* Current shared table sync state */ |
| 85 | /***********************************/ |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 86 | #define SHTABLE_F_TEACH_STAGE1 0x00000001 /* Teach state 1 complete */ |
| 87 | #define SHTABLE_F_TEACH_STAGE2 0x00000002 /* Teach state 2 complete */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 88 | |
| 89 | /******************************/ |
| 90 | /* Remote peer teaching state */ |
| 91 | /******************************/ |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 92 | #define PEER_F_TEACH_PROCESS 0x00000001 /* Teach a lesson to current peer */ |
| 93 | #define PEER_F_TEACH_FINISHED 0x00000008 /* Teach conclude, (wait for confirm) */ |
| 94 | #define PEER_F_TEACH_COMPLETE 0x00000010 /* All that we know already taught to current peer, used only for a local peer */ |
| 95 | #define PEER_F_LEARN_ASSIGN 0x00000100 /* Current peer was assigned for a lesson */ |
| 96 | #define PEER_F_LEARN_NOTUP2DATE 0x00000200 /* Learn from peer finished but peer is not up to date */ |
| 97 | #define PEER_F_ALIVE 0x20000000 /* Used to flag a peer a alive. */ |
| 98 | #define PEER_F_HEARTBEAT 0x40000000 /* Heartbeat message to send. */ |
| 99 | #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] | 100 | |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 101 | #define PEER_TEACH_RESET ~(PEER_F_TEACH_PROCESS|PEER_F_TEACH_FINISHED) /* PEER_F_TEACH_COMPLETE should never be reset */ |
| 102 | #define PEER_LEARN_RESET ~(PEER_F_LEARN_ASSIGN|PEER_F_LEARN_NOTUP2DATE) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 103 | |
Frédéric Lécaille | 54bff83 | 2019-03-26 10:25:20 +0100 | [diff] [blame] | 104 | #define PEER_RESYNC_TIMEOUT 5000 /* 5 seconds */ |
| 105 | #define PEER_RECONNECT_TIMEOUT 5000 /* 5 seconds */ |
Christopher Faulet | ab4b094 | 2022-07-26 19:14:36 +0200 | [diff] [blame] | 106 | #define PEER_LOCAL_RECONNECT_TIMEOUT 500 /* 500ms */ |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 107 | #define PEER_HEARTBEAT_TIMEOUT 3000 /* 3 seconds */ |
| 108 | |
Willy Tarreau | 8bd146d | 2022-07-19 20:17:38 +0200 | [diff] [blame] | 109 | /* default maximum of updates sent at once */ |
| 110 | #define PEER_DEF_MAX_UPDATES_AT_ONCE 200 |
| 111 | |
Willy Tarreau | 49962b5 | 2021-02-12 16:56:22 +0100 | [diff] [blame] | 112 | /* flags for "show peers" */ |
| 113 | #define PEERS_SHOW_F_DICT 0x00000001 /* also show the contents of the dictionary */ |
| 114 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 115 | /*****************************/ |
| 116 | /* Sync message class */ |
| 117 | /*****************************/ |
| 118 | enum { |
| 119 | PEER_MSG_CLASS_CONTROL = 0, |
| 120 | PEER_MSG_CLASS_ERROR, |
| 121 | PEER_MSG_CLASS_STICKTABLE = 10, |
| 122 | PEER_MSG_CLASS_RESERVED = 255, |
| 123 | }; |
| 124 | |
| 125 | /*****************************/ |
| 126 | /* control message types */ |
| 127 | /*****************************/ |
| 128 | enum { |
| 129 | PEER_MSG_CTRL_RESYNCREQ = 0, |
| 130 | PEER_MSG_CTRL_RESYNCFINISHED, |
| 131 | PEER_MSG_CTRL_RESYNCPARTIAL, |
| 132 | PEER_MSG_CTRL_RESYNCCONFIRM, |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 133 | PEER_MSG_CTRL_HEARTBEAT, |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 134 | }; |
| 135 | |
| 136 | /*****************************/ |
| 137 | /* error message types */ |
| 138 | /*****************************/ |
| 139 | enum { |
| 140 | PEER_MSG_ERR_PROTOCOL = 0, |
| 141 | PEER_MSG_ERR_SIZELIMIT, |
| 142 | }; |
| 143 | |
Emeric Brun | 530ba38 | 2020-06-02 11:17:42 +0200 | [diff] [blame] | 144 | /* network key types; |
| 145 | * network types were directly and mistakenly |
| 146 | * mapped on sample types, to keep backward |
| 147 | * compatiblitiy we keep those values but |
| 148 | * we now use a internal/network mapping |
| 149 | * to avoid further mistakes adding or |
| 150 | * modifying internals types |
| 151 | */ |
| 152 | enum { |
| 153 | PEER_KT_ANY = 0, /* any type */ |
| 154 | PEER_KT_RESV1, /* UNUSED */ |
| 155 | PEER_KT_SINT, /* signed 64bits integer type */ |
| 156 | PEER_KT_RESV3, /* UNUSED */ |
| 157 | PEER_KT_IPV4, /* ipv4 type */ |
| 158 | PEER_KT_IPV6, /* ipv6 type */ |
| 159 | PEER_KT_STR, /* char string type */ |
| 160 | PEER_KT_BIN, /* buffer type */ |
| 161 | PEER_KT_TYPES /* number of types, must always be last */ |
| 162 | }; |
| 163 | |
| 164 | /* Map used to retrieve network type from internal type |
| 165 | * Note: Undeclared mapping maps entry to PEER_KT_ANY == 0 |
| 166 | */ |
| 167 | static int peer_net_key_type[SMP_TYPES] = { |
| 168 | [SMP_T_SINT] = PEER_KT_SINT, |
| 169 | [SMP_T_IPV4] = PEER_KT_IPV4, |
| 170 | [SMP_T_IPV6] = PEER_KT_IPV6, |
| 171 | [SMP_T_STR] = PEER_KT_STR, |
| 172 | [SMP_T_BIN] = PEER_KT_BIN, |
| 173 | }; |
| 174 | |
| 175 | /* Map used to retrieve internal type from external type |
| 176 | * Note: Undeclared mapping maps entry to SMP_T_ANY == 0 |
| 177 | */ |
| 178 | static int peer_int_key_type[PEER_KT_TYPES] = { |
| 179 | [PEER_KT_SINT] = SMP_T_SINT, |
| 180 | [PEER_KT_IPV4] = SMP_T_IPV4, |
| 181 | [PEER_KT_IPV6] = SMP_T_IPV6, |
| 182 | [PEER_KT_STR] = SMP_T_STR, |
| 183 | [PEER_KT_BIN] = SMP_T_BIN, |
| 184 | }; |
| 185 | |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 186 | /* |
| 187 | * Parameters used by functions to build peer protocol messages. */ |
| 188 | struct peer_prep_params { |
| 189 | struct { |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 190 | struct peer *peer; |
| 191 | } hello; |
| 192 | struct { |
| 193 | unsigned int st1; |
| 194 | } error_status; |
| 195 | struct { |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 196 | struct stksess *stksess; |
| 197 | struct shared_table *shared_table; |
| 198 | unsigned int updateid; |
| 199 | int use_identifier; |
| 200 | int use_timed; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 201 | struct peer *peer; |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 202 | } updt; |
| 203 | struct { |
| 204 | struct shared_table *shared_table; |
| 205 | } swtch; |
| 206 | struct { |
| 207 | struct shared_table *shared_table; |
| 208 | } ack; |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 209 | struct { |
| 210 | unsigned char head[2]; |
| 211 | } control; |
| 212 | struct { |
| 213 | unsigned char head[2]; |
| 214 | } error; |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 215 | }; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 216 | |
| 217 | /*******************************/ |
| 218 | /* stick table sync mesg types */ |
| 219 | /* Note: ids >= 128 contains */ |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 220 | /* id message contains data */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 221 | /*******************************/ |
Olivier Houchard | 3399226 | 2018-10-16 18:49:26 +0200 | [diff] [blame] | 222 | #define PEER_MSG_STKT_UPDATE 0x80 |
| 223 | #define PEER_MSG_STKT_INCUPDATE 0x81 |
| 224 | #define PEER_MSG_STKT_DEFINE 0x82 |
| 225 | #define PEER_MSG_STKT_SWITCH 0x83 |
| 226 | #define PEER_MSG_STKT_ACK 0x84 |
| 227 | #define PEER_MSG_STKT_UPDATE_TIMED 0x85 |
| 228 | #define PEER_MSG_STKT_INCUPDATE_TIMED 0x86 |
Frédéric Lécaille | 36fb77e | 2019-06-04 08:28:19 +0200 | [diff] [blame] | 229 | /* All the stick-table message identifiers abova have the #7 bit set */ |
| 230 | #define PEER_MSG_STKT_BIT 7 |
| 231 | #define PEER_MSG_STKT_BIT_MASK (1 << PEER_MSG_STKT_BIT) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 232 | |
Frédéric Lécaille | 3914334 | 2019-05-24 14:32:27 +0200 | [diff] [blame] | 233 | /* The maximum length of an encoded data length. */ |
| 234 | #define PEER_MSG_ENC_LENGTH_MAXLEN 5 |
| 235 | |
Frédéric Lécaille | 32b5573 | 2019-06-03 18:29:51 +0200 | [diff] [blame] | 236 | /* Minimum 64-bits value encoded with 2 bytes */ |
| 237 | #define PEER_ENC_2BYTES_MIN 0xf0 /* 0xf0 (or 240) */ |
| 238 | /* 3 bytes */ |
| 239 | #define PEER_ENC_3BYTES_MIN ((1ULL << 11) | PEER_ENC_2BYTES_MIN) /* 0x8f0 (or 2288) */ |
| 240 | /* 4 bytes */ |
| 241 | #define PEER_ENC_4BYTES_MIN ((1ULL << 18) | PEER_ENC_3BYTES_MIN) /* 0x408f0 (or 264432) */ |
| 242 | /* 5 bytes */ |
| 243 | #define PEER_ENC_5BYTES_MIN ((1ULL << 25) | PEER_ENC_4BYTES_MIN) /* 0x20408f0 (or 33818864) */ |
| 244 | /* 6 bytes */ |
| 245 | #define PEER_ENC_6BYTES_MIN ((1ULL << 32) | PEER_ENC_5BYTES_MIN) /* 0x1020408f0 (or 4328786160) */ |
| 246 | /* 7 bytes */ |
| 247 | #define PEER_ENC_7BYTES_MIN ((1ULL << 39) | PEER_ENC_6BYTES_MIN) /* 0x81020408f0 (or 554084600048) */ |
| 248 | /* 8 bytes */ |
| 249 | #define PEER_ENC_8BYTES_MIN ((1ULL << 46) | PEER_ENC_7BYTES_MIN) /* 0x4081020408f0 (or 70922828777712) */ |
| 250 | /* 9 bytes */ |
| 251 | #define PEER_ENC_9BYTES_MIN ((1ULL << 53) | PEER_ENC_8BYTES_MIN) /* 0x204081020408f0 (or 9078122083518704) */ |
| 252 | /* 10 bytes */ |
| 253 | #define PEER_ENC_10BYTES_MIN ((1ULL << 60) | PEER_ENC_9BYTES_MIN) /* 0x10204081020408f0 (or 1161999626690365680) */ |
| 254 | |
| 255 | /* #7 bit used to detect the last byte to be encoded */ |
| 256 | #define PEER_ENC_STOP_BIT 7 |
| 257 | /* The byte minimum value with #7 bit set */ |
| 258 | #define PEER_ENC_STOP_BYTE (1 << PEER_ENC_STOP_BIT) |
| 259 | /* The left most number of bits set for PEER_ENC_2BYTES_MIN */ |
| 260 | #define PEER_ENC_2BYTES_MIN_BITS 4 |
| 261 | |
Frédéric Lécaille | 3914334 | 2019-05-24 14:32:27 +0200 | [diff] [blame] | 262 | #define PEER_MSG_HEADER_LEN 2 |
| 263 | |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 264 | #define PEER_STKT_CACHE_MAX_ENTRIES 128 |
| 265 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 266 | /**********************************/ |
| 267 | /* Peer Session IO handler states */ |
| 268 | /**********************************/ |
| 269 | |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 270 | enum { |
| 271 | PEER_SESS_ST_ACCEPT = 0, /* Initial state for session create by an accept, must be zero! */ |
| 272 | PEER_SESS_ST_GETVERSION, /* Validate supported protocol version */ |
| 273 | PEER_SESS_ST_GETHOST, /* Validate host ID correspond to local host id */ |
| 274 | 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] | 275 | /* after this point, data were possibly exchanged */ |
| 276 | PEER_SESS_ST_SENDSUCCESS, /* Send ret code 200 (success) and wait for message */ |
| 277 | PEER_SESS_ST_CONNECT, /* Initial state for session create on a connect, push presentation into buffer */ |
| 278 | PEER_SESS_ST_GETSTATUS, /* Wait for the welcome message */ |
| 279 | PEER_SESS_ST_WAITMSG, /* Wait for data messages */ |
| 280 | PEER_SESS_ST_EXIT, /* Exit with status code */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 281 | PEER_SESS_ST_ERRPROTO, /* Send error proto message before exit */ |
| 282 | PEER_SESS_ST_ERRSIZE, /* Send error size message before exit */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 283 | PEER_SESS_ST_END, /* Killed session */ |
| 284 | }; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 285 | |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 286 | /***************************************************/ |
| 287 | /* Peer Session status code - part of the protocol */ |
| 288 | /***************************************************/ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 289 | |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 290 | #define PEER_SESS_SC_CONNECTCODE 100 /* connect in progress */ |
| 291 | #define PEER_SESS_SC_CONNECTEDCODE 110 /* tcp connect success */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 292 | |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 293 | #define PEER_SESS_SC_SUCCESSCODE 200 /* accept or connect successful */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 294 | |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 295 | #define PEER_SESS_SC_TRYAGAIN 300 /* try again later */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 296 | |
Frédéric Lécaille | aba44a2 | 2019-03-26 10:18:07 +0100 | [diff] [blame] | 297 | #define PEER_SESS_SC_ERRPROTO 501 /* error protocol */ |
| 298 | #define PEER_SESS_SC_ERRVERSION 502 /* unknown protocol version */ |
| 299 | #define PEER_SESS_SC_ERRHOST 503 /* bad host name */ |
| 300 | #define PEER_SESS_SC_ERRPEER 504 /* unknown peer */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 301 | |
| 302 | #define PEER_SESSION_PROTO_NAME "HAProxyS" |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 303 | #define PEER_MAJOR_VER 2 |
| 304 | #define PEER_MINOR_VER 1 |
| 305 | #define PEER_DWNGRD_MINOR_VER 0 |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 306 | |
Willy Tarreau | 6254a92 | 2019-01-29 17:45:23 +0100 | [diff] [blame] | 307 | 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] | 308 | struct peers *cfg_peers = NULL; |
Willy Tarreau | 8bd146d | 2022-07-19 20:17:38 +0200 | [diff] [blame] | 309 | static int peers_max_updates_at_once = PEER_DEF_MAX_UPDATES_AT_ONCE; |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 310 | static void peer_session_forceshutdown(struct peer *peer); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 311 | |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 312 | static struct ebpt_node *dcache_tx_insert(struct dcache *dc, |
| 313 | struct dcache_tx_entry *i); |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 314 | static inline void flush_dcache(struct peer *peer); |
| 315 | |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 316 | /* trace source and events */ |
| 317 | static void peers_trace(enum trace_level level, uint64_t mask, |
| 318 | const struct trace_source *src, |
| 319 | const struct ist where, const struct ist func, |
| 320 | const void *a1, const void *a2, const void *a3, const void *a4); |
| 321 | |
| 322 | static const struct trace_event peers_trace_events[] = { |
| 323 | #define PEERS_EV_UPDTMSG (1 << 0) |
| 324 | { .mask = PEERS_EV_UPDTMSG, .name = "updtmsg", .desc = "update message received" }, |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 325 | #define PEERS_EV_ACKMSG (1 << 1) |
| 326 | { .mask = PEERS_EV_ACKMSG, .name = "ackmsg", .desc = "ack message received" }, |
| 327 | #define PEERS_EV_SWTCMSG (1 << 2) |
| 328 | { .mask = PEERS_EV_SWTCMSG, .name = "swtcmsg", .desc = "switch message received" }, |
| 329 | #define PEERS_EV_DEFMSG (1 << 3) |
| 330 | { .mask = PEERS_EV_DEFMSG, .name = "defmsg", .desc = "definition message received" }, |
| 331 | #define PEERS_EV_CTRLMSG (1 << 4) |
| 332 | { .mask = PEERS_EV_CTRLMSG, .name = "ctrlmsg", .desc = "control message sent/received" }, |
| 333 | #define PEERS_EV_SESSREL (1 << 5) |
| 334 | { .mask = PEERS_EV_SESSREL, .name = "sessrl", .desc = "peer session releasing" }, |
| 335 | #define PEERS_EV_PROTOERR (1 << 6) |
| 336 | { .mask = PEERS_EV_PROTOERR, .name = "protoerr", .desc = "protocol error" }, |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 337 | }; |
| 338 | |
| 339 | static const struct name_desc peers_trace_lockon_args[4] = { |
| 340 | /* arg1 */ { /* already used by the connection */ }, |
| 341 | /* arg2 */ { .name="peers", .desc="Peers protocol" }, |
| 342 | /* arg3 */ { }, |
| 343 | /* arg4 */ { } |
| 344 | }; |
| 345 | |
| 346 | static const struct name_desc peers_trace_decoding[] = { |
| 347 | #define PEERS_VERB_CLEAN 1 |
| 348 | { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" }, |
| 349 | { /* end */ } |
| 350 | }; |
| 351 | |
| 352 | |
| 353 | struct trace_source trace_peers = { |
| 354 | .name = IST("peers"), |
| 355 | .desc = "Peers protocol", |
| 356 | .arg_def = TRC_ARG1_CONN, /* TRACE()'s first argument is always a connection */ |
| 357 | .default_cb = peers_trace, |
| 358 | .known_events = peers_trace_events, |
| 359 | .lockon_args = peers_trace_lockon_args, |
| 360 | .decoding = peers_trace_decoding, |
| 361 | .report_events = ~0, /* report everything by default */ |
| 362 | }; |
| 363 | |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 364 | /* Return peer control message types as strings (only for debugging purpose). */ |
| 365 | static inline char *ctrl_msg_type_str(unsigned int type) |
| 366 | { |
| 367 | switch (type) { |
| 368 | case PEER_MSG_CTRL_RESYNCREQ: |
| 369 | return "RESYNCREQ"; |
| 370 | case PEER_MSG_CTRL_RESYNCFINISHED: |
| 371 | return "RESYNCFINISHED"; |
| 372 | case PEER_MSG_CTRL_RESYNCPARTIAL: |
| 373 | return "RESYNCPARTIAL"; |
| 374 | case PEER_MSG_CTRL_RESYNCCONFIRM: |
| 375 | return "RESYNCCONFIRM"; |
| 376 | case PEER_MSG_CTRL_HEARTBEAT: |
| 377 | return "HEARTBEAT"; |
| 378 | default: |
| 379 | return "???"; |
| 380 | } |
| 381 | } |
| 382 | |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 383 | #define TRACE_SOURCE &trace_peers |
| 384 | INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE); |
| 385 | |
| 386 | static void peers_trace(enum trace_level level, uint64_t mask, |
| 387 | const struct trace_source *src, |
| 388 | const struct ist where, const struct ist func, |
| 389 | const void *a1, const void *a2, const void *a3, const void *a4) |
| 390 | { |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 391 | if (mask & (PEERS_EV_UPDTMSG|PEERS_EV_ACKMSG|PEERS_EV_SWTCMSG)) { |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 392 | if (a2) { |
| 393 | const struct peer *peer = a2; |
| 394 | |
| 395 | chunk_appendf(&trace_buf, " peer=%s", peer->id); |
| 396 | } |
| 397 | if (a3) { |
| 398 | const char *p = a3; |
| 399 | |
| 400 | chunk_appendf(&trace_buf, " @%p", p); |
| 401 | } |
| 402 | if (a4) { |
| 403 | const size_t *val = a4; |
| 404 | |
| 405 | chunk_appendf(&trace_buf, " %llu", (unsigned long long)*val); |
| 406 | } |
| 407 | } |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 408 | |
| 409 | if (mask & PEERS_EV_DEFMSG) { |
| 410 | if (a2) { |
| 411 | const struct peer *peer = a2; |
| 412 | |
| 413 | chunk_appendf(&trace_buf, " peer=%s", peer->id); |
| 414 | } |
| 415 | if (a3) { |
| 416 | const char *p = a3; |
| 417 | |
| 418 | chunk_appendf(&trace_buf, " @%p", p); |
| 419 | } |
| 420 | if (a4) { |
| 421 | const int *val = a4; |
| 422 | |
| 423 | chunk_appendf(&trace_buf, " %d", *val); |
| 424 | } |
| 425 | } |
| 426 | |
| 427 | if (mask & PEERS_EV_CTRLMSG) { |
| 428 | if (a2) { |
| 429 | const unsigned char *ctrl_msg_type = a2; |
| 430 | |
| 431 | chunk_appendf(&trace_buf, " %s", ctrl_msg_type_str(*ctrl_msg_type)); |
| 432 | |
| 433 | } |
| 434 | if (a3) { |
| 435 | const char *local_peer = a3; |
| 436 | |
| 437 | chunk_appendf(&trace_buf, " %s", local_peer); |
| 438 | } |
| 439 | |
| 440 | if (a4) { |
| 441 | const char *remote_peer = a4; |
| 442 | |
| 443 | chunk_appendf(&trace_buf, " -> %s", remote_peer); |
| 444 | } |
| 445 | } |
| 446 | |
| 447 | if (mask & (PEERS_EV_SESSREL|PEERS_EV_PROTOERR)) { |
| 448 | if (a2) { |
| 449 | const struct peer *peer = a2; |
| 450 | struct peers *peers = NULL; |
| 451 | |
Christopher Faulet | 387e797 | 2022-05-12 14:47:52 +0200 | [diff] [blame] | 452 | if (peer->appctx) |
| 453 | peers = peer->peers; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 454 | |
| 455 | if (peers) |
| 456 | chunk_appendf(&trace_buf, " %s", peers->local->id); |
Christopher Faulet | d9e6b35 | 2021-11-15 09:40:57 +0100 | [diff] [blame] | 457 | chunk_appendf(&trace_buf, " -> %s", peer->id); |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | if (a3) { |
| 461 | const int *prev_state = a3; |
| 462 | |
| 463 | chunk_appendf(&trace_buf, " prev_state=%d\n", *prev_state); |
| 464 | } |
| 465 | } |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 466 | } |
| 467 | |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 468 | static const char *statuscode_str(int statuscode) |
| 469 | { |
| 470 | switch (statuscode) { |
| 471 | case PEER_SESS_SC_CONNECTCODE: |
| 472 | return "CONN"; |
| 473 | case PEER_SESS_SC_CONNECTEDCODE: |
| 474 | return "HSHK"; |
| 475 | case PEER_SESS_SC_SUCCESSCODE: |
| 476 | return "ESTA"; |
| 477 | case PEER_SESS_SC_TRYAGAIN: |
| 478 | return "RETR"; |
| 479 | case PEER_SESS_SC_ERRPROTO: |
| 480 | return "PROT"; |
| 481 | case PEER_SESS_SC_ERRVERSION: |
| 482 | return "VERS"; |
| 483 | case PEER_SESS_SC_ERRHOST: |
| 484 | return "NAME"; |
| 485 | case PEER_SESS_SC_ERRPEER: |
| 486 | return "UNKN"; |
| 487 | default: |
| 488 | return "NONE"; |
| 489 | } |
| 490 | } |
| 491 | |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 492 | /* This function encode an uint64 to 'dynamic' length format. |
| 493 | The encoded value is written at address *str, and the |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 494 | caller must assure that size after *str is large enough. |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 495 | At return, the *str is set at the next Byte after then |
| 496 | encoded integer. The function returns then length of the |
| 497 | encoded integer in Bytes */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 498 | int intencode(uint64_t i, char **str) { |
| 499 | int idx = 0; |
| 500 | unsigned char *msg; |
| 501 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 502 | msg = (unsigned char *)*str; |
Frédéric Lécaille | 32b5573 | 2019-06-03 18:29:51 +0200 | [diff] [blame] | 503 | if (i < PEER_ENC_2BYTES_MIN) { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 504 | msg[0] = (unsigned char)i; |
| 505 | *str = (char *)&msg[idx+1]; |
| 506 | return (idx+1); |
| 507 | } |
| 508 | |
Frédéric Lécaille | 32b5573 | 2019-06-03 18:29:51 +0200 | [diff] [blame] | 509 | msg[idx] =(unsigned char)i | PEER_ENC_2BYTES_MIN; |
| 510 | i = (i - PEER_ENC_2BYTES_MIN) >> PEER_ENC_2BYTES_MIN_BITS; |
| 511 | while (i >= PEER_ENC_STOP_BYTE) { |
| 512 | msg[++idx] = (unsigned char)i | PEER_ENC_STOP_BYTE; |
| 513 | i = (i - PEER_ENC_STOP_BYTE) >> PEER_ENC_STOP_BIT; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 514 | } |
| 515 | msg[++idx] = (unsigned char)i; |
| 516 | *str = (char *)&msg[idx+1]; |
| 517 | return (idx+1); |
| 518 | } |
| 519 | |
| 520 | |
Emeric Brun | 5ea07d9 | 2021-06-30 13:21:58 +0200 | [diff] [blame] | 521 | /* This function returns a decoded 64bits unsigned integer |
| 522 | * from a varint |
| 523 | * |
| 524 | * Calling: |
| 525 | * - *str must point on the first byte of the buffer to decode. |
| 526 | * - end must point on the next byte after the end of the buffer |
| 527 | * we are authorized to parse (buf + buflen) |
| 528 | * |
| 529 | * At return: |
| 530 | * |
| 531 | * On success *str will point at the byte following |
| 532 | * the fully decoded integer into the buffer. and |
| 533 | * the decoded value is returned. |
| 534 | * |
| 535 | * If end is reached before the integer was fully decoded, |
| 536 | * *str is set to NULL and the caller have to check this |
| 537 | * to know there is a decoding error. In this case |
| 538 | * the returned integer is also forced to 0 |
| 539 | */ |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 540 | uint64_t intdecode(char **str, char *end) |
| 541 | { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 542 | unsigned char *msg; |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 543 | uint64_t i; |
| 544 | int shift; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 545 | |
| 546 | if (!*str) |
| 547 | return 0; |
| 548 | |
| 549 | msg = (unsigned char *)*str; |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 550 | if (msg >= (unsigned char *)end) |
| 551 | goto fail; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 552 | |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 553 | i = *(msg++); |
Frédéric Lécaille | 32b5573 | 2019-06-03 18:29:51 +0200 | [diff] [blame] | 554 | if (i >= PEER_ENC_2BYTES_MIN) { |
| 555 | shift = PEER_ENC_2BYTES_MIN_BITS; |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 556 | do { |
| 557 | if (msg >= (unsigned char *)end) |
| 558 | goto fail; |
| 559 | i += (uint64_t)*msg << shift; |
Frédéric Lécaille | 32b5573 | 2019-06-03 18:29:51 +0200 | [diff] [blame] | 560 | shift += PEER_ENC_STOP_BIT; |
| 561 | } while (*(msg++) >= PEER_ENC_STOP_BYTE); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 562 | } |
Frédéric Lécaille | a8725ec | 2019-01-22 10:31:39 +0100 | [diff] [blame] | 563 | *str = (char *)msg; |
| 564 | return i; |
Emeric Brun | 18928af | 2017-03-29 16:32:53 +0200 | [diff] [blame] | 565 | |
Frédéric Lécaille | a8725ec | 2019-01-22 10:31:39 +0100 | [diff] [blame] | 566 | fail: |
| 567 | *str = NULL; |
| 568 | return 0; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 569 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 570 | |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 571 | /* |
| 572 | * Build a "hello" peer protocol message. |
| 573 | * Return the number of written bytes written to build this messages if succeeded, |
| 574 | * 0 if not. |
| 575 | */ |
| 576 | static int peer_prepare_hellomsg(char *msg, size_t size, struct peer_prep_params *p) |
| 577 | { |
| 578 | int min_ver, ret; |
| 579 | struct peer *peer; |
| 580 | |
| 581 | peer = p->hello.peer; |
| 582 | min_ver = (peer->flags & PEER_F_DWNGRD) ? PEER_DWNGRD_MINOR_VER : PEER_MINOR_VER; |
| 583 | /* Prepare headers */ |
Willy Tarreau | 2645b34 | 2022-04-12 08:28:18 +0200 | [diff] [blame] | 584 | ret = snprintf(msg, size, PEER_SESSION_PROTO_NAME " %d.%d\n%s\n%s %d %d\n", |
| 585 | (int)PEER_MAJOR_VER, min_ver, peer->id, localpeer, (int)getpid(), (int)1); |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 586 | if (ret >= size) |
| 587 | return 0; |
| 588 | |
| 589 | return ret; |
| 590 | } |
| 591 | |
| 592 | /* |
| 593 | * Build a "handshake succeeded" status message. |
| 594 | * Return the number of written bytes written to build this messages if succeeded, |
| 595 | * 0 if not. |
| 596 | */ |
| 597 | static int peer_prepare_status_successmsg(char *msg, size_t size, struct peer_prep_params *p) |
| 598 | { |
| 599 | int ret; |
| 600 | |
Willy Tarreau | 2645b34 | 2022-04-12 08:28:18 +0200 | [diff] [blame] | 601 | ret = snprintf(msg, size, "%d\n", (int)PEER_SESS_SC_SUCCESSCODE); |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 602 | if (ret >= size) |
| 603 | return 0; |
| 604 | |
| 605 | return ret; |
| 606 | } |
| 607 | |
| 608 | /* |
| 609 | * Build an error status message. |
| 610 | * Return the number of written bytes written to build this messages if succeeded, |
| 611 | * 0 if not. |
| 612 | */ |
| 613 | static int peer_prepare_status_errormsg(char *msg, size_t size, struct peer_prep_params *p) |
| 614 | { |
| 615 | int ret; |
| 616 | unsigned int st1; |
| 617 | |
| 618 | st1 = p->error_status.st1; |
| 619 | ret = snprintf(msg, size, "%d\n", st1); |
| 620 | if (ret >= size) |
| 621 | return 0; |
| 622 | |
| 623 | return ret; |
| 624 | } |
| 625 | |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 626 | /* Set the stick-table UPDATE message type byte at <msg_type> address, |
| 627 | * depending on <use_identifier> and <use_timed> boolean parameters. |
| 628 | * Always successful. |
| 629 | */ |
| 630 | static inline void peer_set_update_msg_type(char *msg_type, int use_identifier, int use_timed) |
| 631 | { |
| 632 | if (use_timed) { |
| 633 | if (use_identifier) |
| 634 | *msg_type = PEER_MSG_STKT_UPDATE_TIMED; |
| 635 | else |
| 636 | *msg_type = PEER_MSG_STKT_INCUPDATE_TIMED; |
| 637 | } |
| 638 | else { |
| 639 | if (use_identifier) |
| 640 | *msg_type = PEER_MSG_STKT_UPDATE; |
| 641 | else |
| 642 | *msg_type = PEER_MSG_STKT_INCUPDATE; |
| 643 | } |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 644 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 645 | /* |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 646 | * This prepare the data update message on the stick session <ts>, <st> is the considered |
| 647 | * stick table. |
Joseph Herlant | 82b2f54 | 2018-11-15 12:19:14 -0800 | [diff] [blame] | 648 | * <msg> is a buffer of <size> to receive data message content |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 649 | * If function returns 0, the caller should consider we were unable to encode this message (TODO: |
| 650 | * check size) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 651 | */ |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 652 | 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] | 653 | { |
| 654 | uint32_t netinteger; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 655 | unsigned short datalen; |
| 656 | char *cursor, *datamsg; |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 657 | unsigned int data_type; |
| 658 | void *data_ptr; |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 659 | struct stksess *ts; |
| 660 | struct shared_table *st; |
| 661 | unsigned int updateid; |
| 662 | int use_identifier; |
| 663 | int use_timed; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 664 | struct peer *peer; |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 665 | |
| 666 | ts = p->updt.stksess; |
| 667 | st = p->updt.shared_table; |
| 668 | updateid = p->updt.updateid; |
| 669 | use_identifier = p->updt.use_identifier; |
| 670 | use_timed = p->updt.use_timed; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 671 | peer = p->updt.peer; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 672 | |
Frédéric Lécaille | 0e8db97 | 2019-05-24 14:34:34 +0200 | [diff] [blame] | 673 | cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 674 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 675 | /* construct message */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 676 | |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 677 | /* check if we need to send the update identifier */ |
Emeric Brun | 819fc6f | 2017-06-13 19:37:32 +0200 | [diff] [blame] | 678 | 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] | 679 | use_identifier = 1; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 680 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 681 | |
| 682 | /* encode update identifier if needed */ |
| 683 | if (use_identifier) { |
Emeric Brun | 819fc6f | 2017-06-13 19:37:32 +0200 | [diff] [blame] | 684 | netinteger = htonl(updateid); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 685 | memcpy(cursor, &netinteger, sizeof(netinteger)); |
| 686 | cursor += sizeof(netinteger); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 687 | } |
| 688 | |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 689 | if (use_timed) { |
| 690 | netinteger = htonl(tick_remain(now_ms, ts->expire)); |
| 691 | memcpy(cursor, &netinteger, sizeof(netinteger)); |
| 692 | cursor += sizeof(netinteger); |
| 693 | } |
| 694 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 695 | /* encode the key */ |
Thierry FOURNIER | 5d24ebc | 2015-07-24 08:46:42 +0200 | [diff] [blame] | 696 | if (st->table->type == SMP_T_STR) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 697 | int stlen = strlen((char *)ts->key.key); |
| 698 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 699 | intencode(stlen, &cursor); |
| 700 | memcpy(cursor, ts->key.key, stlen); |
| 701 | cursor += stlen; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 702 | } |
Thierry FOURNIER | 5d24ebc | 2015-07-24 08:46:42 +0200 | [diff] [blame] | 703 | else if (st->table->type == SMP_T_SINT) { |
Willy Tarreau | 6cde5d8 | 2020-02-25 09:41:22 +0100 | [diff] [blame] | 704 | netinteger = htonl(read_u32(ts->key.key)); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 705 | memcpy(cursor, &netinteger, sizeof(netinteger)); |
| 706 | cursor += sizeof(netinteger); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 707 | } |
| 708 | else { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 709 | memcpy(cursor, ts->key.key, st->table->key_size); |
| 710 | cursor += st->table->key_size; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 711 | } |
| 712 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 713 | HA_RWLOCK_RDLOCK(STK_SESS_LOCK, &ts->lock); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 714 | /* encode values */ |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 715 | for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 716 | |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 717 | data_ptr = stktable_data_ptr(st->table, ts, data_type); |
| 718 | if (data_ptr) { |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 719 | /* in case of array all elements use |
| 720 | * the same std_type and they are linearly |
| 721 | * encoded. |
| 722 | */ |
| 723 | if (stktable_data_types[data_type].is_array) { |
| 724 | unsigned int idx = 0; |
| 725 | |
| 726 | switch (stktable_data_types[data_type].std_type) { |
| 727 | case STD_T_SINT: { |
| 728 | int data; |
| 729 | |
| 730 | do { |
| 731 | data = stktable_data_cast(data_ptr, std_t_sint); |
| 732 | intencode(data, &cursor); |
| 733 | |
| 734 | data_ptr = stktable_data_ptr_idx(st->table, ts, data_type, ++idx); |
| 735 | } while(data_ptr); |
| 736 | break; |
| 737 | } |
| 738 | case STD_T_UINT: { |
| 739 | unsigned int data; |
| 740 | |
| 741 | do { |
| 742 | data = stktable_data_cast(data_ptr, std_t_uint); |
| 743 | intencode(data, &cursor); |
| 744 | |
| 745 | data_ptr = stktable_data_ptr_idx(st->table, ts, data_type, ++idx); |
| 746 | } while(data_ptr); |
| 747 | break; |
| 748 | } |
| 749 | case STD_T_ULL: { |
| 750 | unsigned long long data; |
| 751 | |
| 752 | do { |
| 753 | data = stktable_data_cast(data_ptr, std_t_ull); |
| 754 | intencode(data, &cursor); |
| 755 | |
| 756 | data_ptr = stktable_data_ptr_idx(st->table, ts, data_type, ++idx); |
| 757 | } while(data_ptr); |
| 758 | break; |
| 759 | } |
| 760 | case STD_T_FRQP: { |
| 761 | struct freq_ctr *frqp; |
| 762 | |
| 763 | do { |
| 764 | frqp = &stktable_data_cast(data_ptr, std_t_frqp); |
| 765 | intencode((unsigned int)(now_ms - frqp->curr_tick), &cursor); |
| 766 | intencode(frqp->curr_ctr, &cursor); |
| 767 | intencode(frqp->prev_ctr, &cursor); |
| 768 | |
| 769 | data_ptr = stktable_data_ptr_idx(st->table, ts, data_type, ++idx); |
| 770 | } while(data_ptr); |
| 771 | break; |
| 772 | } |
| 773 | } |
| 774 | |
| 775 | /* array elements fully encoded |
| 776 | * proceed next data_type. |
| 777 | */ |
| 778 | continue; |
| 779 | } |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 780 | switch (stktable_data_types[data_type].std_type) { |
| 781 | case STD_T_SINT: { |
| 782 | int data; |
| 783 | |
| 784 | data = stktable_data_cast(data_ptr, std_t_sint); |
| 785 | intencode(data, &cursor); |
| 786 | break; |
| 787 | } |
| 788 | case STD_T_UINT: { |
| 789 | unsigned int data; |
| 790 | |
| 791 | data = stktable_data_cast(data_ptr, std_t_uint); |
| 792 | intencode(data, &cursor); |
| 793 | break; |
| 794 | } |
| 795 | case STD_T_ULL: { |
| 796 | unsigned long long data; |
| 797 | |
| 798 | data = stktable_data_cast(data_ptr, std_t_ull); |
| 799 | intencode(data, &cursor); |
| 800 | break; |
| 801 | } |
| 802 | case STD_T_FRQP: { |
Willy Tarreau | fa1258f | 2021-04-10 23:00:53 +0200 | [diff] [blame] | 803 | struct freq_ctr *frqp; |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 804 | |
| 805 | frqp = &stktable_data_cast(data_ptr, std_t_frqp); |
| 806 | intencode((unsigned int)(now_ms - frqp->curr_tick), &cursor); |
| 807 | intencode(frqp->curr_ctr, &cursor); |
| 808 | intencode(frqp->prev_ctr, &cursor); |
| 809 | break; |
| 810 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 811 | case STD_T_DICT: { |
| 812 | struct dict_entry *de; |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 813 | struct ebpt_node *cached_de; |
Willy Tarreau | 237f8ae | 2019-06-06 16:40:43 +0200 | [diff] [blame] | 814 | struct dcache_tx_entry cde = { }; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 815 | char *beg, *end; |
| 816 | size_t value_len, data_len; |
| 817 | struct dcache *dc; |
| 818 | |
| 819 | de = stktable_data_cast(data_ptr, std_t_dict); |
Frédéric Lécaille | af9990f | 2019-11-13 17:50:34 +0100 | [diff] [blame] | 820 | if (!de) { |
| 821 | /* No entry */ |
| 822 | intencode(0, &cursor); |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 823 | break; |
Frédéric Lécaille | af9990f | 2019-11-13 17:50:34 +0100 | [diff] [blame] | 824 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 825 | |
| 826 | dc = peer->dcache; |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 827 | cde.entry.key = de; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 828 | cached_de = dcache_tx_insert(dc, &cde); |
Frédéric Lécaille | fd82793 | 2019-06-07 10:34:04 +0200 | [diff] [blame] | 829 | if (cached_de == &cde.entry) { |
| 830 | if (cde.id + 1 >= PEER_ENC_2BYTES_MIN) |
| 831 | break; |
| 832 | /* Encode the length of the remaining data -> 1 */ |
| 833 | intencode(1, &cursor); |
| 834 | /* Encode the cache entry ID */ |
| 835 | intencode(cde.id + 1, &cursor); |
| 836 | } |
| 837 | else { |
| 838 | /* Leave enough room to encode the remaining data length. */ |
| 839 | end = beg = cursor + PEER_MSG_ENC_LENGTH_MAXLEN; |
| 840 | /* Encode the dictionary entry key */ |
| 841 | intencode(cde.id + 1, &end); |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 842 | /* Encode the length of the dictionary entry data */ |
Frédéric Lécaille | fd82793 | 2019-06-07 10:34:04 +0200 | [diff] [blame] | 843 | value_len = de->len; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 844 | intencode(value_len, &end); |
| 845 | /* Copy the data */ |
| 846 | memcpy(end, de->value.key, value_len); |
| 847 | end += value_len; |
Frédéric Lécaille | fd82793 | 2019-06-07 10:34:04 +0200 | [diff] [blame] | 848 | /* Encode the length of the data */ |
| 849 | data_len = end - beg; |
| 850 | intencode(data_len, &cursor); |
| 851 | memmove(cursor, beg, data_len); |
| 852 | cursor += data_len; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 853 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 854 | break; |
| 855 | } |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 856 | } |
| 857 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 858 | } |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 859 | HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 860 | |
| 861 | /* Compute datalen */ |
| 862 | datalen = (cursor - datamsg); |
| 863 | |
| 864 | /* prepare message header */ |
| 865 | msg[0] = PEER_MSG_CLASS_STICKTABLE; |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 866 | peer_set_update_msg_type(&msg[1], use_identifier, use_timed); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 867 | cursor = &msg[2]; |
| 868 | intencode(datalen, &cursor); |
| 869 | |
| 870 | /* move data after header */ |
| 871 | memmove(cursor, datamsg, datalen); |
| 872 | |
| 873 | /* return header size + data_len */ |
| 874 | return (cursor - msg) + datalen; |
| 875 | } |
| 876 | |
| 877 | /* |
| 878 | * This prepare the switch table message to targeted share table <st>. |
Joseph Herlant | 82b2f54 | 2018-11-15 12:19:14 -0800 | [diff] [blame] | 879 | * <msg> is a buffer of <size> to receive data message content |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 880 | * If function returns 0, the caller should consider we were unable to encode this message (TODO: |
| 881 | * check size) |
| 882 | */ |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 883 | 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] | 884 | { |
| 885 | int len; |
| 886 | unsigned short datalen; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 887 | struct buffer *chunk; |
Frédéric Lécaille | 37a7254 | 2017-07-06 15:02:16 +0200 | [diff] [blame] | 888 | char *cursor, *datamsg, *chunkp, *chunkq; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 889 | uint64_t data = 0; |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 890 | unsigned int data_type; |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 891 | struct shared_table *st; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 892 | |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 893 | st = params->swtch.shared_table; |
Frédéric Lécaille | 3914334 | 2019-05-24 14:32:27 +0200 | [diff] [blame] | 894 | cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 895 | |
| 896 | /* Encode data */ |
| 897 | |
| 898 | /* encode local id */ |
| 899 | intencode(st->local_id, &cursor); |
| 900 | |
| 901 | /* encode table name */ |
Frédéric Lécaille | 7fcc24d | 2019-03-20 15:09:45 +0100 | [diff] [blame] | 902 | len = strlen(st->table->nid); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 903 | intencode(len, &cursor); |
Frédéric Lécaille | 7fcc24d | 2019-03-20 15:09:45 +0100 | [diff] [blame] | 904 | memcpy(cursor, st->table->nid, len); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 905 | cursor += len; |
| 906 | |
| 907 | /* encode table type */ |
| 908 | |
Emeric Brun | 530ba38 | 2020-06-02 11:17:42 +0200 | [diff] [blame] | 909 | intencode(peer_net_key_type[st->table->type], &cursor); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 910 | |
| 911 | /* encode table key size */ |
| 912 | intencode(st->table->key_size, &cursor); |
| 913 | |
Frédéric Lécaille | 37a7254 | 2017-07-06 15:02:16 +0200 | [diff] [blame] | 914 | chunk = get_trash_chunk(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 915 | chunkp = chunkq = chunk->area; |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 916 | /* encode available known data types in table */ |
| 917 | for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) { |
| 918 | if (st->table->data_ofs[data_type]) { |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 919 | /* stored data types parameters are all linearly encoded |
| 920 | * at the end of the 'table definition' message. |
| 921 | * |
| 922 | * Currently only array data_types and and data_types |
| 923 | * using freq_counter base type have parameters: |
| 924 | * |
| 925 | * - array has always at least one parameter set to the |
| 926 | * number of elements. |
| 927 | * |
| 928 | * - array of base-type freq_counters has an additional |
| 929 | * parameter set to the period used to compute those |
| 930 | * freq_counters. |
| 931 | * |
| 932 | * - simple freq counter has a parameter set to the period |
| 933 | * used to compute |
| 934 | * |
| 935 | * A set of parameter for a datatype MUST BE prefixed |
| 936 | * by the data-type id itself: |
| 937 | * This is useless because the data_types are ordered and |
| 938 | * the data_type bitfield already gives the information of |
| 939 | * stored types, but it was designed this way when the |
| 940 | * push of period parameter was added for freq counters |
| 941 | * and we don't want to break the compatibility. |
| 942 | * |
| 943 | */ |
| 944 | if (stktable_data_types[data_type].is_array) { |
| 945 | /* This is an array type so we first encode |
| 946 | * the data_type itself to prefix parameters |
| 947 | */ |
| 948 | intencode(data_type, &chunkq); |
| 949 | |
| 950 | /* We encode the first parameter which is |
| 951 | * the number of elements of this array |
| 952 | */ |
| 953 | intencode(st->table->data_nbelem[data_type], &chunkq); |
| 954 | |
Ilya Shipitsin | 0188108 | 2021-08-07 14:41:56 +0500 | [diff] [blame] | 955 | /* for array of freq counters, there is an additional |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 956 | * period parameter to encode |
| 957 | */ |
| 958 | if (stktable_data_types[data_type].std_type == STD_T_FRQP) |
Frédéric Lécaille | 37a7254 | 2017-07-06 15:02:16 +0200 | [diff] [blame] | 959 | intencode(st->table->data_arg[data_type].u, &chunkq); |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 960 | } |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 961 | else if (stktable_data_types[data_type].std_type == STD_T_FRQP) { |
| 962 | /* this datatype is a simple freq counter not part |
| 963 | * of an array. We encode the data_type itself |
| 964 | * to prefix the 'period' parameter |
| 965 | */ |
| 966 | intencode(data_type, &chunkq); |
| 967 | intencode(st->table->data_arg[data_type].u, &chunkq); |
| 968 | } |
| 969 | /* set the bit corresponding to stored data type */ |
| 970 | data |= 1ULL << data_type; |
Emeric Brun | 9490095 | 2015-06-11 18:25:54 +0200 | [diff] [blame] | 971 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 972 | } |
| 973 | intencode(data, &cursor); |
| 974 | |
Frédéric Lécaille | 37a7254 | 2017-07-06 15:02:16 +0200 | [diff] [blame] | 975 | /* Encode stick-table entries duration. */ |
| 976 | intencode(st->table->expire, &cursor); |
| 977 | |
| 978 | if (chunkq > chunkp) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 979 | chunk->data = chunkq - chunkp; |
| 980 | memcpy(cursor, chunk->area, chunk->data); |
| 981 | cursor += chunk->data; |
Frédéric Lécaille | 37a7254 | 2017-07-06 15:02:16 +0200 | [diff] [blame] | 982 | } |
| 983 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 984 | /* Compute datalen */ |
| 985 | datalen = (cursor - datamsg); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 986 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 987 | /* prepare message header */ |
| 988 | msg[0] = PEER_MSG_CLASS_STICKTABLE; |
| 989 | msg[1] = PEER_MSG_STKT_DEFINE; |
| 990 | cursor = &msg[2]; |
| 991 | intencode(datalen, &cursor); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 992 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 993 | /* move data after header */ |
| 994 | memmove(cursor, datamsg, datalen); |
| 995 | |
| 996 | /* return header size + data_len */ |
| 997 | return (cursor - msg) + datalen; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 998 | } |
| 999 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 1000 | /* |
| 1001 | * This prepare the acknowledge message on the stick session <ts>, <st> is the considered |
| 1002 | * stick table. |
Joseph Herlant | 82b2f54 | 2018-11-15 12:19:14 -0800 | [diff] [blame] | 1003 | * <msg> is a buffer of <size> to receive data message content |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 1004 | * If function returns 0, the caller should consider we were unable to encode this message (TODO: |
| 1005 | * check size) |
| 1006 | */ |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 1007 | 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] | 1008 | { |
| 1009 | unsigned short datalen; |
| 1010 | char *cursor, *datamsg; |
| 1011 | uint32_t netinteger; |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 1012 | struct shared_table *st; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 1013 | |
Frédéric Lécaille | 3914334 | 2019-05-24 14:32:27 +0200 | [diff] [blame] | 1014 | cursor = datamsg = msg + PEER_MSG_HEADER_LEN + PEER_MSG_ENC_LENGTH_MAXLEN; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 1015 | |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 1016 | st = p->ack.shared_table; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 1017 | intencode(st->remote_id, &cursor); |
| 1018 | netinteger = htonl(st->last_get); |
| 1019 | memcpy(cursor, &netinteger, sizeof(netinteger)); |
| 1020 | cursor += sizeof(netinteger); |
| 1021 | |
| 1022 | /* Compute datalen */ |
| 1023 | datalen = (cursor - datamsg); |
| 1024 | |
| 1025 | /* prepare message header */ |
| 1026 | msg[0] = PEER_MSG_CLASS_STICKTABLE; |
Emeric Brun | e1ab808 | 2015-08-21 11:48:54 +0200 | [diff] [blame] | 1027 | msg[1] = PEER_MSG_STKT_ACK; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 1028 | cursor = &msg[2]; |
| 1029 | intencode(datalen, &cursor); |
| 1030 | |
| 1031 | /* move data after header */ |
| 1032 | memmove(cursor, datamsg, datalen); |
| 1033 | |
| 1034 | /* return header size + data_len */ |
| 1035 | return (cursor - msg) + datalen; |
| 1036 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1037 | |
| 1038 | /* |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 1039 | * Function to deinit connected peer |
| 1040 | */ |
| 1041 | void __peer_session_deinit(struct peer *peer) |
| 1042 | { |
Christopher Faulet | 387e797 | 2022-05-12 14:47:52 +0200 | [diff] [blame] | 1043 | struct peers *peers = peer->peers; |
Maciej Zdeb | d01be2a | 2022-05-16 17:26:20 +0200 | [diff] [blame] | 1044 | int thr; |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 1045 | |
Christopher Faulet | 387e797 | 2022-05-12 14:47:52 +0200 | [diff] [blame] | 1046 | if (!peers || !peer->appctx) |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 1047 | return; |
| 1048 | |
Willy Tarreau | 29ffe26 | 2022-06-15 14:31:38 +0200 | [diff] [blame] | 1049 | thr = peer->appctx->t->tid; |
Maciej Zdeb | d01be2a | 2022-05-16 17:26:20 +0200 | [diff] [blame] | 1050 | HA_ATOMIC_DEC(&peers->applet_count[thr]); |
| 1051 | |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 1052 | if (peer->appctx->st0 == PEER_SESS_ST_WAITMSG) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1053 | HA_ATOMIC_DEC(&connected_peers); |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 1054 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1055 | HA_ATOMIC_DEC(&active_peers); |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 1056 | |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1057 | flush_dcache(peer); |
| 1058 | |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 1059 | /* Re-init current table pointers to force announcement on re-connect */ |
| 1060 | peer->remote_table = peer->last_local_table = NULL; |
| 1061 | peer->appctx = NULL; |
| 1062 | if (peer->flags & PEER_F_LEARN_ASSIGN) { |
| 1063 | /* unassign current peer for learning */ |
| 1064 | peer->flags &= ~(PEER_F_LEARN_ASSIGN); |
| 1065 | peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS); |
| 1066 | |
Emeric Brun | ccdfbae | 2021-04-28 12:59:35 +0200 | [diff] [blame] | 1067 | if (peer->local) |
| 1068 | peers->flags |= PEERS_F_RESYNC_LOCALABORT; |
| 1069 | else |
| 1070 | peers->flags |= PEERS_F_RESYNC_REMOTEABORT; |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 1071 | /* reschedule a resync */ |
| 1072 | peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000)); |
| 1073 | } |
| 1074 | /* reset teaching and learning flags to 0 */ |
| 1075 | peer->flags &= PEER_TEACH_RESET; |
| 1076 | peer->flags &= PEER_LEARN_RESET; |
| 1077 | task_wakeup(peers->sync_task, TASK_WOKEN_MSG); |
| 1078 | } |
| 1079 | |
Christopher Faulet | 6712dc6 | 2022-05-12 15:36:11 +0200 | [diff] [blame] | 1080 | static int peer_session_init(struct appctx *appctx) |
| 1081 | { |
| 1082 | struct peer *peer = appctx->svcctx; |
| 1083 | struct stream *s; |
| 1084 | struct sockaddr_storage *addr = NULL; |
| 1085 | |
| 1086 | if (!sockaddr_alloc(&addr, &peer->addr, sizeof(peer->addr))) |
| 1087 | goto out_error; |
| 1088 | |
| 1089 | if (appctx_finalize_startup(appctx, peer->peers->peers_fe, &BUF_NULL) == -1) |
| 1090 | goto out_free_addr; |
| 1091 | |
| 1092 | s = appctx_strm(appctx); |
| 1093 | /* applet is waiting for data */ |
Willy Tarreau | 90e8b45 | 2022-05-25 18:21:43 +0200 | [diff] [blame] | 1094 | applet_need_more_data(appctx); |
Christopher Faulet | 6712dc6 | 2022-05-12 15:36:11 +0200 | [diff] [blame] | 1095 | appctx_wakeup(appctx); |
| 1096 | |
| 1097 | /* initiate an outgoing connection */ |
Willy Tarreau | 7cb9e6c | 2022-05-17 19:40:40 +0200 | [diff] [blame] | 1098 | s->scb->dst = addr; |
Willy Tarreau | cb04166 | 2022-05-17 19:44:42 +0200 | [diff] [blame] | 1099 | s->scb->flags |= SC_FL_NOLINGER; |
Christopher Faulet | 6712dc6 | 2022-05-12 15:36:11 +0200 | [diff] [blame] | 1100 | s->flags = SF_ASSIGNED; |
| 1101 | s->target = peer_session_target(peer, s); |
| 1102 | |
| 1103 | s->do_log = NULL; |
| 1104 | s->uniq_id = 0; |
| 1105 | |
| 1106 | s->res.flags |= CF_READ_DONTWAIT; |
| 1107 | |
| 1108 | _HA_ATOMIC_INC(&active_peers); |
| 1109 | return 0; |
| 1110 | |
| 1111 | out_free_addr: |
| 1112 | sockaddr_free(&addr); |
| 1113 | out_error: |
| 1114 | return -1; |
| 1115 | } |
| 1116 | |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 1117 | /* |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1118 | * Callback to release a session with a peer |
| 1119 | */ |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 1120 | static void peer_session_release(struct appctx *appctx) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1121 | { |
Willy Tarreau | 455caef | 2022-05-05 20:16:16 +0200 | [diff] [blame] | 1122 | struct peer *peer = appctx->svcctx; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1123 | |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 1124 | TRACE_PROTO("releasing peer session", PEERS_EV_SESSREL, NULL, peer); |
Willy Tarreau | 455caef | 2022-05-05 20:16:16 +0200 | [diff] [blame] | 1125 | /* appctx->svcctx is not a peer session */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 1126 | if (appctx->st0 < PEER_SESS_ST_SENDSUCCESS) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1127 | return; |
| 1128 | |
| 1129 | /* peer session identified */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 1130 | if (peer) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1131 | HA_SPIN_LOCK(PEER_LOCK, &peer->lock); |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 1132 | if (peer->appctx == appctx) |
| 1133 | __peer_session_deinit(peer); |
Frédéric Lécaille | baeb919 | 2020-10-14 11:50:26 +0200 | [diff] [blame] | 1134 | peer->flags &= ~PEER_F_ALIVE; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1135 | HA_SPIN_UNLOCK(PEER_LOCK, &peer->lock); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1136 | } |
| 1137 | } |
| 1138 | |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 1139 | /* Retrieve the major and minor versions of peers protocol |
| 1140 | * announced by a remote peer. <str> is a null-terminated |
| 1141 | * string with the following format: "<maj_ver>.<min_ver>". |
| 1142 | */ |
| 1143 | static int peer_get_version(const char *str, |
| 1144 | unsigned int *maj_ver, unsigned int *min_ver) |
| 1145 | { |
| 1146 | unsigned int majv, minv; |
| 1147 | const char *pos, *saved; |
| 1148 | const char *end; |
| 1149 | |
| 1150 | saved = pos = str; |
| 1151 | end = str + strlen(str); |
| 1152 | |
| 1153 | majv = read_uint(&pos, end); |
| 1154 | if (saved == pos || *pos++ != '.') |
| 1155 | return -1; |
| 1156 | |
| 1157 | saved = pos; |
| 1158 | minv = read_uint(&pos, end); |
| 1159 | if (saved == pos || pos != end) |
| 1160 | return -1; |
| 1161 | |
| 1162 | *maj_ver = majv; |
| 1163 | *min_ver = minv; |
| 1164 | |
| 1165 | return 0; |
| 1166 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1167 | |
| 1168 | /* |
Frédéric Lécaille | ce02557 | 2019-01-21 13:38:06 +0100 | [diff] [blame] | 1169 | * Parse a line terminated by an optional '\r' character, followed by a mandatory |
| 1170 | * '\n' character. |
| 1171 | * Returns 1 if succeeded or 0 if a '\n' character could not be found, and -1 if |
| 1172 | * a line could not be read because the communication channel is closed. |
| 1173 | */ |
| 1174 | static inline int peer_getline(struct appctx *appctx) |
| 1175 | { |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 1176 | struct stconn *sc = appctx_sc(appctx); |
Frédéric Lécaille | ce02557 | 2019-01-21 13:38:06 +0100 | [diff] [blame] | 1177 | int n; |
Frédéric Lécaille | ce02557 | 2019-01-21 13:38:06 +0100 | [diff] [blame] | 1178 | |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 1179 | n = co_getline(sc_oc(sc), trash.area, trash.size); |
Frédéric Lécaille | ce02557 | 2019-01-21 13:38:06 +0100 | [diff] [blame] | 1180 | if (!n) |
| 1181 | return 0; |
| 1182 | |
| 1183 | if (n < 0 || trash.area[n - 1] != '\n') { |
| 1184 | appctx->st0 = PEER_SESS_ST_END; |
| 1185 | return -1; |
| 1186 | } |
| 1187 | |
| 1188 | if (n > 1 && (trash.area[n - 2] == '\r')) |
| 1189 | trash.area[n - 2] = 0; |
| 1190 | else |
| 1191 | trash.area[n - 1] = 0; |
| 1192 | |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 1193 | co_skip(sc_oc(sc), n); |
Frédéric Lécaille | ce02557 | 2019-01-21 13:38:06 +0100 | [diff] [blame] | 1194 | |
| 1195 | return n; |
| 1196 | } |
| 1197 | |
| 1198 | /* |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 1199 | * Send a message after having called <peer_prepare_msg> to build it. |
| 1200 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1201 | * Returns -1 if there was not enough room left to send the message, |
| 1202 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1203 | * returned value equal to PEER_SESS_ST_END. |
| 1204 | */ |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 1205 | static inline int peer_send_msg(struct appctx *appctx, |
| 1206 | int (*peer_prepare_msg)(char *, size_t, struct peer_prep_params *), |
| 1207 | struct peer_prep_params *params) |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 1208 | { |
| 1209 | int ret, msglen; |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 1210 | struct stconn *sc = appctx_sc(appctx); |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 1211 | |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 1212 | msglen = peer_prepare_msg(trash.area, trash.size, params); |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 1213 | if (!msglen) { |
| 1214 | /* internal error: message does not fit in trash */ |
| 1215 | appctx->st0 = PEER_SESS_ST_END; |
| 1216 | return 0; |
| 1217 | } |
| 1218 | |
| 1219 | /* message to buffer */ |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 1220 | ret = ci_putblk(sc_ic(sc), trash.area, msglen); |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 1221 | if (ret <= 0) { |
| 1222 | if (ret == -1) { |
| 1223 | /* No more write possible */ |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 1224 | sc_need_room(sc); |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 1225 | return -1; |
| 1226 | } |
| 1227 | appctx->st0 = PEER_SESS_ST_END; |
| 1228 | } |
| 1229 | |
| 1230 | return ret; |
| 1231 | } |
| 1232 | |
| 1233 | /* |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 1234 | * Send a hello message. |
| 1235 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1236 | * Returns -1 if there was not enough room left to send the message, |
| 1237 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1238 | * returned value equal to PEER_SESS_ST_END. |
| 1239 | */ |
| 1240 | static inline int peer_send_hellomsg(struct appctx *appctx, struct peer *peer) |
| 1241 | { |
| 1242 | struct peer_prep_params p = { |
| 1243 | .hello.peer = peer, |
| 1244 | }; |
| 1245 | |
| 1246 | return peer_send_msg(appctx, peer_prepare_hellomsg, &p); |
| 1247 | } |
| 1248 | |
| 1249 | /* |
| 1250 | * Send a success peer handshake status message. |
| 1251 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1252 | * Returns -1 if there was not enough room left to send the message, |
| 1253 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1254 | * returned value equal to PEER_SESS_ST_END. |
| 1255 | */ |
| 1256 | static inline int peer_send_status_successmsg(struct appctx *appctx) |
| 1257 | { |
| 1258 | return peer_send_msg(appctx, peer_prepare_status_successmsg, NULL); |
| 1259 | } |
| 1260 | |
| 1261 | /* |
| 1262 | * Send a peer handshake status error message. |
| 1263 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1264 | * Returns -1 if there was not enough room left to send the message, |
| 1265 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1266 | * returned value equal to PEER_SESS_ST_END. |
| 1267 | */ |
| 1268 | static inline int peer_send_status_errormsg(struct appctx *appctx) |
| 1269 | { |
| 1270 | struct peer_prep_params p = { |
| 1271 | .error_status.st1 = appctx->st1, |
| 1272 | }; |
| 1273 | |
| 1274 | return peer_send_msg(appctx, peer_prepare_status_errormsg, &p); |
| 1275 | } |
| 1276 | |
| 1277 | /* |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 1278 | * Send a stick-table switch message. |
| 1279 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1280 | * Returns -1 if there was not enough room left to send the message, |
| 1281 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1282 | * returned value equal to PEER_SESS_ST_END. |
| 1283 | */ |
| 1284 | static inline int peer_send_switchmsg(struct shared_table *st, struct appctx *appctx) |
| 1285 | { |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 1286 | struct peer_prep_params p = { |
| 1287 | .swtch.shared_table = st, |
| 1288 | }; |
| 1289 | |
| 1290 | return peer_send_msg(appctx, peer_prepare_switchmsg, &p); |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 1291 | } |
| 1292 | |
| 1293 | /* |
| 1294 | * Send a stick-table update acknowledgement message. |
| 1295 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1296 | * Returns -1 if there was not enough room left to send the message, |
| 1297 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1298 | * returned value equal to PEER_SESS_ST_END. |
| 1299 | */ |
| 1300 | static inline int peer_send_ackmsg(struct shared_table *st, struct appctx *appctx) |
| 1301 | { |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 1302 | struct peer_prep_params p = { |
| 1303 | .ack.shared_table = st, |
| 1304 | }; |
| 1305 | |
| 1306 | return peer_send_msg(appctx, peer_prepare_ackmsg, &p); |
Frédéric Lécaille | ec44ea8 | 2019-01-22 15:54:53 +0100 | [diff] [blame] | 1307 | } |
| 1308 | |
| 1309 | /* |
Frédéric Lécaille | 87f554c | 2019-01-22 17:26:50 +0100 | [diff] [blame] | 1310 | * Send a stick-table update message. |
| 1311 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1312 | * Returns -1 if there was not enough room left to send the message, |
| 1313 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1314 | * returned value equal to PEER_SESS_ST_END. |
| 1315 | */ |
| 1316 | static inline int peer_send_updatemsg(struct shared_table *st, struct appctx *appctx, struct stksess *ts, |
| 1317 | unsigned int updateid, int use_identifier, int use_timed) |
| 1318 | { |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 1319 | struct peer_prep_params p = { |
Willy Tarreau | a898f0c | 2020-07-03 19:09:29 +0200 | [diff] [blame] | 1320 | .updt = { |
| 1321 | .stksess = ts, |
| 1322 | .shared_table = st, |
| 1323 | .updateid = updateid, |
| 1324 | .use_identifier = use_identifier, |
| 1325 | .use_timed = use_timed, |
Willy Tarreau | 455caef | 2022-05-05 20:16:16 +0200 | [diff] [blame] | 1326 | .peer = appctx->svcctx, |
Willy Tarreau | a898f0c | 2020-07-03 19:09:29 +0200 | [diff] [blame] | 1327 | }, |
Frédéric Lécaille | d5fe14b | 2019-01-24 10:33:40 +0100 | [diff] [blame] | 1328 | }; |
| 1329 | |
| 1330 | return peer_send_msg(appctx, peer_prepare_updatemsg, &p); |
Frédéric Lécaille | 87f554c | 2019-01-22 17:26:50 +0100 | [diff] [blame] | 1331 | } |
| 1332 | |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 1333 | /* |
| 1334 | * Build a peer protocol control class message. |
| 1335 | * Returns the number of written bytes used to build the message if succeeded, |
| 1336 | * 0 if not. |
| 1337 | */ |
| 1338 | static int peer_prepare_control_msg(char *msg, size_t size, struct peer_prep_params *p) |
| 1339 | { |
| 1340 | if (size < sizeof p->control.head) |
| 1341 | return 0; |
| 1342 | |
| 1343 | msg[0] = p->control.head[0]; |
| 1344 | msg[1] = p->control.head[1]; |
| 1345 | |
| 1346 | return 2; |
| 1347 | } |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1348 | |
| 1349 | /* |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 1350 | * Send a stick-table synchronization request message. |
| 1351 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1352 | * Returns -1 if there was not enough room left to send the message, |
| 1353 | * any other negative returned value must be considered as an error with an appctx st0 |
| 1354 | * returned value equal to PEER_SESS_ST_END. |
| 1355 | */ |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 1356 | static inline int peer_send_resync_reqmsg(struct appctx *appctx, |
| 1357 | struct peer *peer, struct peers *peers) |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 1358 | { |
| 1359 | struct peer_prep_params p = { |
| 1360 | .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCREQ, }, |
| 1361 | }; |
| 1362 | |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 1363 | TRACE_PROTO("send control message", PEERS_EV_CTRLMSG, |
| 1364 | NULL, &p.control.head[1], peers->local->id, peer->id); |
| 1365 | |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 1366 | return peer_send_msg(appctx, peer_prepare_control_msg, &p); |
| 1367 | } |
| 1368 | |
| 1369 | /* |
| 1370 | * Send a stick-table synchronization confirmation message. |
| 1371 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1372 | * Returns -1 if there was not enough room left to send the message, |
| 1373 | * any other negative returned value must be considered as an error with an appctx st0 |
| 1374 | * returned value equal to PEER_SESS_ST_END. |
| 1375 | */ |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 1376 | static inline int peer_send_resync_confirmsg(struct appctx *appctx, |
| 1377 | struct peer *peer, struct peers *peers) |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 1378 | { |
| 1379 | struct peer_prep_params p = { |
| 1380 | .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_RESYNCCONFIRM, }, |
| 1381 | }; |
| 1382 | |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 1383 | TRACE_PROTO("send control message", PEERS_EV_CTRLMSG, |
| 1384 | NULL, &p.control.head[1], peers->local->id, peer->id); |
| 1385 | |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 1386 | return peer_send_msg(appctx, peer_prepare_control_msg, &p); |
| 1387 | } |
| 1388 | |
| 1389 | /* |
| 1390 | * Send a stick-table synchronization finished message. |
| 1391 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1392 | * Returns -1 if there was not enough room left to send the message, |
| 1393 | * any other negative returned value must be considered as an error with an appctx st0 |
| 1394 | * returned value equal to PEER_SESS_ST_END. |
| 1395 | */ |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 1396 | static inline int peer_send_resync_finishedmsg(struct appctx *appctx, |
| 1397 | struct peer *peer, struct peers *peers) |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 1398 | { |
| 1399 | struct peer_prep_params p = { |
| 1400 | .control.head = { PEER_MSG_CLASS_CONTROL, }, |
| 1401 | }; |
| 1402 | |
Emeric Brun | 70de43b | 2020-03-16 10:51:01 +0100 | [diff] [blame] | 1403 | 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] | 1404 | PEER_MSG_CTRL_RESYNCFINISHED : PEER_MSG_CTRL_RESYNCPARTIAL; |
| 1405 | |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 1406 | TRACE_PROTO("send control message", PEERS_EV_CTRLMSG, |
| 1407 | NULL, &p.control.head[1], peers->local->id, peer->id); |
| 1408 | |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 1409 | return peer_send_msg(appctx, peer_prepare_control_msg, &p); |
| 1410 | } |
| 1411 | |
| 1412 | /* |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 1413 | * Send a heartbeat message. |
| 1414 | * Return 0 if the message could not be built modifying the appctx st0 to PEER_SESS_ST_END value. |
| 1415 | * Returns -1 if there was not enough room left to send the message, |
| 1416 | * any other negative returned value must be considered as an error with an appctx st0 |
| 1417 | * returned value equal to PEER_SESS_ST_END. |
| 1418 | */ |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 1419 | static inline int peer_send_heartbeatmsg(struct appctx *appctx, |
| 1420 | struct peer *peer, struct peers *peers) |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 1421 | { |
| 1422 | struct peer_prep_params p = { |
| 1423 | .control.head = { PEER_MSG_CLASS_CONTROL, PEER_MSG_CTRL_HEARTBEAT, }, |
| 1424 | }; |
| 1425 | |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 1426 | TRACE_PROTO("send control message", PEERS_EV_CTRLMSG, |
| 1427 | NULL, &p.control.head[1], peers->local->id, peer->id); |
| 1428 | |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 1429 | return peer_send_msg(appctx, peer_prepare_control_msg, &p); |
| 1430 | } |
| 1431 | |
| 1432 | /* |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 1433 | * Build a peer protocol error class message. |
| 1434 | * Returns the number of written bytes used to build the message if succeeded, |
| 1435 | * 0 if not. |
| 1436 | */ |
| 1437 | static int peer_prepare_error_msg(char *msg, size_t size, struct peer_prep_params *p) |
| 1438 | { |
| 1439 | if (size < sizeof p->error.head) |
| 1440 | return 0; |
| 1441 | |
| 1442 | msg[0] = p->error.head[0]; |
| 1443 | msg[1] = p->error.head[1]; |
| 1444 | |
| 1445 | return 2; |
| 1446 | } |
| 1447 | |
| 1448 | /* |
| 1449 | * Send a "size limit reached" error message. |
| 1450 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1451 | * Returns -1 if there was not enough room left to send the message, |
| 1452 | * any other negative returned value must be considered as an error with an appctx st0 |
| 1453 | * returned value equal to PEER_SESS_ST_END. |
| 1454 | */ |
| 1455 | static inline int peer_send_error_size_limitmsg(struct appctx *appctx) |
| 1456 | { |
| 1457 | struct peer_prep_params p = { |
| 1458 | .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_SIZELIMIT, }, |
| 1459 | }; |
| 1460 | |
| 1461 | return peer_send_msg(appctx, peer_prepare_error_msg, &p); |
| 1462 | } |
| 1463 | |
| 1464 | /* |
| 1465 | * Send a "peer protocol" error message. |
| 1466 | * Return 0 if the message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1467 | * Returns -1 if there was not enough room left to send the message, |
| 1468 | * any other negative returned value must be considered as an error with an appctx st0 |
| 1469 | * returned value equal to PEER_SESS_ST_END. |
| 1470 | */ |
| 1471 | static inline int peer_send_error_protomsg(struct appctx *appctx) |
| 1472 | { |
| 1473 | struct peer_prep_params p = { |
| 1474 | .error.head = { PEER_MSG_CLASS_ERROR, PEER_MSG_ERR_PROTOCOL, }, |
| 1475 | }; |
| 1476 | |
| 1477 | return peer_send_msg(appctx, peer_prepare_error_msg, &p); |
| 1478 | } |
| 1479 | |
| 1480 | /* |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1481 | * Function used to lookup for recent stick-table updates associated with |
| 1482 | * <st> shared stick-table when a lesson must be taught a peer (PEER_F_LEARN_ASSIGN flag set). |
| 1483 | */ |
| 1484 | static inline struct stksess *peer_teach_process_stksess_lookup(struct shared_table *st) |
| 1485 | { |
| 1486 | struct eb32_node *eb; |
| 1487 | |
| 1488 | eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1); |
| 1489 | if (!eb) { |
| 1490 | eb = eb32_first(&st->table->updates); |
Emeric Brun | 8e7a13e | 2021-04-28 11:48:15 +0200 | [diff] [blame] | 1491 | if (!eb || (eb->key == st->last_pushed)) { |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1492 | st->table->commitupdate = st->last_pushed = st->table->localupdate; |
| 1493 | return NULL; |
| 1494 | } |
| 1495 | } |
| 1496 | |
Emeric Brun | 8e7a13e | 2021-04-28 11:48:15 +0200 | [diff] [blame] | 1497 | /* if distance between the last pushed and the retrieved key |
| 1498 | * is greater than the distance last_pushed and the local_update |
| 1499 | * this means we are beyond localupdate. |
| 1500 | */ |
| 1501 | if ((eb->key - st->last_pushed) > (st->table->localupdate - st->last_pushed)) { |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1502 | st->table->commitupdate = st->last_pushed = st->table->localupdate; |
| 1503 | return NULL; |
| 1504 | } |
| 1505 | |
| 1506 | return eb32_entry(eb, struct stksess, upd); |
| 1507 | } |
| 1508 | |
| 1509 | /* |
| 1510 | * Function used to lookup for recent stick-table updates associated with |
| 1511 | * <st> shared stick-table during teach state 1 step. |
| 1512 | */ |
| 1513 | static inline struct stksess *peer_teach_stage1_stksess_lookup(struct shared_table *st) |
| 1514 | { |
| 1515 | struct eb32_node *eb; |
| 1516 | |
| 1517 | eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1); |
| 1518 | if (!eb) { |
| 1519 | st->flags |= SHTABLE_F_TEACH_STAGE1; |
| 1520 | eb = eb32_first(&st->table->updates); |
| 1521 | if (eb) |
| 1522 | st->last_pushed = eb->key - 1; |
| 1523 | return NULL; |
| 1524 | } |
| 1525 | |
| 1526 | return eb32_entry(eb, struct stksess, upd); |
| 1527 | } |
| 1528 | |
| 1529 | /* |
| 1530 | * Function used to lookup for recent stick-table updates associated with |
| 1531 | * <st> shared stick-table during teach state 2 step. |
| 1532 | */ |
| 1533 | static inline struct stksess *peer_teach_stage2_stksess_lookup(struct shared_table *st) |
| 1534 | { |
| 1535 | struct eb32_node *eb; |
| 1536 | |
| 1537 | eb = eb32_lookup_ge(&st->table->updates, st->last_pushed+1); |
| 1538 | if (!eb || eb->key > st->teaching_origin) { |
| 1539 | st->flags |= SHTABLE_F_TEACH_STAGE2; |
| 1540 | return NULL; |
| 1541 | } |
| 1542 | |
| 1543 | return eb32_entry(eb, struct stksess, upd); |
| 1544 | } |
| 1545 | |
| 1546 | /* |
| 1547 | * Generic function to emit update messages for <st> stick-table when a lesson must |
| 1548 | * be taught to the peer <p>. |
| 1549 | * <locked> must be set to 1 if the shared table <st> is already locked when entering |
| 1550 | * this function, 0 if not. |
| 1551 | * |
| 1552 | * This function temporary unlock/lock <st> when it sends stick-table updates or |
| 1553 | * when decrementing its refcount in case of any error when it sends this updates. |
| 1554 | * |
| 1555 | * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1556 | * Returns -1 if there was not enough room left to send the message, |
| 1557 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1558 | * returned value equal to PEER_SESS_ST_END. |
| 1559 | * If it returns 0 or -1, this function leave <st> locked if already locked when entering this function |
| 1560 | * unlocked if not already locked when entering this function. |
| 1561 | */ |
| 1562 | static inline int peer_send_teachmsgs(struct appctx *appctx, struct peer *p, |
| 1563 | struct stksess *(*peer_stksess_lookup)(struct shared_table *), |
| 1564 | struct shared_table *st, int locked) |
| 1565 | { |
| 1566 | int ret, new_pushed, use_timed; |
Willy Tarreau | 8bd146d | 2022-07-19 20:17:38 +0200 | [diff] [blame] | 1567 | int updates_sent = 0; |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1568 | |
| 1569 | ret = 1; |
| 1570 | use_timed = 0; |
| 1571 | if (st != p->last_local_table) { |
| 1572 | ret = peer_send_switchmsg(st, appctx); |
| 1573 | if (ret <= 0) |
| 1574 | return ret; |
| 1575 | |
| 1576 | p->last_local_table = st; |
| 1577 | } |
| 1578 | |
| 1579 | if (peer_stksess_lookup != peer_teach_process_stksess_lookup) |
| 1580 | use_timed = !(p->flags & PEER_F_DWNGRD); |
| 1581 | |
| 1582 | /* We force new pushed to 1 to force identifier in update message */ |
| 1583 | new_pushed = 1; |
| 1584 | |
| 1585 | if (!locked) |
Willy Tarreau | 7664222 | 2022-10-11 12:02:50 +0200 | [diff] [blame] | 1586 | HA_RWLOCK_WRLOCK(STK_TABLE_LOCK, &st->table->lock); |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1587 | |
| 1588 | while (1) { |
| 1589 | struct stksess *ts; |
| 1590 | unsigned updateid; |
| 1591 | |
| 1592 | /* push local updates */ |
| 1593 | ts = peer_stksess_lookup(st); |
Willy Tarreau | 8bd146d | 2022-07-19 20:17:38 +0200 | [diff] [blame] | 1594 | if (!ts) { |
| 1595 | ret = 1; // done |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1596 | break; |
Willy Tarreau | 8bd146d | 2022-07-19 20:17:38 +0200 | [diff] [blame] | 1597 | } |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1598 | |
| 1599 | updateid = ts->upd.key; |
Frédéric Lécaille | 36d1565 | 2022-10-17 14:58:19 +0200 | [diff] [blame] | 1600 | if (p->srv->shard && ts->shard != p->srv->shard) { |
| 1601 | /* Skip this entry */ |
| 1602 | st->last_pushed = updateid; |
| 1603 | new_pushed = 1; |
| 1604 | continue; |
| 1605 | } |
| 1606 | |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1607 | ts->ref_cnt++; |
Willy Tarreau | 7664222 | 2022-10-11 12:02:50 +0200 | [diff] [blame] | 1608 | HA_RWLOCK_WRUNLOCK(STK_TABLE_LOCK, &st->table->lock); |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1609 | |
| 1610 | ret = peer_send_updatemsg(st, appctx, ts, updateid, new_pushed, use_timed); |
| 1611 | if (ret <= 0) { |
Willy Tarreau | 7664222 | 2022-10-11 12:02:50 +0200 | [diff] [blame] | 1612 | HA_RWLOCK_WRLOCK(STK_TABLE_LOCK, &st->table->lock); |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1613 | ts->ref_cnt--; |
Willy Tarreau | 8bd146d | 2022-07-19 20:17:38 +0200 | [diff] [blame] | 1614 | break; |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1615 | } |
| 1616 | |
Willy Tarreau | 7664222 | 2022-10-11 12:02:50 +0200 | [diff] [blame] | 1617 | HA_RWLOCK_WRLOCK(STK_TABLE_LOCK, &st->table->lock); |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1618 | ts->ref_cnt--; |
| 1619 | st->last_pushed = updateid; |
| 1620 | |
| 1621 | if (peer_stksess_lookup == peer_teach_process_stksess_lookup && |
| 1622 | (int)(st->last_pushed - st->table->commitupdate) > 0) |
| 1623 | st->table->commitupdate = st->last_pushed; |
| 1624 | |
| 1625 | /* identifier may not needed in next update message */ |
| 1626 | new_pushed = 0; |
Willy Tarreau | 8bd146d | 2022-07-19 20:17:38 +0200 | [diff] [blame] | 1627 | |
| 1628 | updates_sent++; |
| 1629 | if (updates_sent >= peers_max_updates_at_once) { |
| 1630 | /* pretend we're full so that we get back ASAP */ |
| 1631 | struct stconn *sc = appctx_sc(appctx); |
| 1632 | |
| 1633 | sc_need_room(sc); |
| 1634 | ret = -1; |
| 1635 | break; |
| 1636 | } |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1637 | } |
| 1638 | |
| 1639 | out: |
| 1640 | if (!locked) |
Willy Tarreau | 7664222 | 2022-10-11 12:02:50 +0200 | [diff] [blame] | 1641 | HA_RWLOCK_WRUNLOCK(STK_TABLE_LOCK, &st->table->lock); |
Willy Tarreau | 8bd146d | 2022-07-19 20:17:38 +0200 | [diff] [blame] | 1642 | return ret; |
Frédéric Lécaille | 6a8303d | 2019-01-22 22:25:17 +0100 | [diff] [blame] | 1643 | } |
| 1644 | |
| 1645 | /* |
| 1646 | * Function to emit update messages for <st> stick-table when a lesson must |
| 1647 | * be taught to the peer <p> (PEER_F_LEARN_ASSIGN flag set). |
| 1648 | * |
| 1649 | * Note that <st> shared stick-table is locked when calling this function. |
| 1650 | * |
| 1651 | * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1652 | * Returns -1 if there was not enough room left to send the message, |
| 1653 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1654 | * returned value equal to PEER_SESS_ST_END. |
| 1655 | */ |
| 1656 | static inline int peer_send_teach_process_msgs(struct appctx *appctx, struct peer *p, |
| 1657 | struct shared_table *st) |
| 1658 | { |
| 1659 | return peer_send_teachmsgs(appctx, p, peer_teach_process_stksess_lookup, st, 1); |
| 1660 | } |
| 1661 | |
| 1662 | /* |
| 1663 | * Function to emit update messages for <st> stick-table when a lesson must |
| 1664 | * be taught to the peer <p> during teach state 1 step. |
| 1665 | * |
| 1666 | * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1667 | * Returns -1 if there was not enough room left to send the message, |
| 1668 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1669 | * returned value equal to PEER_SESS_ST_END. |
| 1670 | */ |
| 1671 | static inline int peer_send_teach_stage1_msgs(struct appctx *appctx, struct peer *p, |
| 1672 | struct shared_table *st) |
| 1673 | { |
| 1674 | return peer_send_teachmsgs(appctx, p, peer_teach_stage1_stksess_lookup, st, 0); |
| 1675 | } |
| 1676 | |
| 1677 | /* |
| 1678 | * Function to emit update messages for <st> stick-table when a lesson must |
| 1679 | * be taught to the peer <p> during teach state 1 step. |
| 1680 | * |
| 1681 | * Return 0 if any message could not be built modifying the appcxt st0 to PEER_SESS_ST_END value. |
| 1682 | * Returns -1 if there was not enough room left to send the message, |
| 1683 | * any other negative returned value must be considered as an error with an appcxt st0 |
| 1684 | * returned value equal to PEER_SESS_ST_END. |
| 1685 | */ |
| 1686 | static inline int peer_send_teach_stage2_msgs(struct appctx *appctx, struct peer *p, |
| 1687 | struct shared_table *st) |
| 1688 | { |
| 1689 | return peer_send_teachmsgs(appctx, p, peer_teach_stage2_stksess_lookup, st, 0); |
| 1690 | } |
| 1691 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1692 | |
| 1693 | /* |
| 1694 | * Function used to parse a stick-table update message after it has been received |
| 1695 | * by <p> peer with <msg_cur> as address of the pointer to the position in the |
| 1696 | * receipt buffer with <msg_end> being position of the end of the stick-table message. |
| 1697 | * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error |
| 1698 | * was encountered. |
| 1699 | * <exp> must be set if the stick-table entry expires. |
| 1700 | * <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] | 1701 | * 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] | 1702 | * update ID. |
| 1703 | * <totl> is the length of the stick-table update message computed upon receipt. |
| 1704 | */ |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 1705 | static int peer_treat_updatemsg(struct appctx *appctx, struct peer *p, int updt, int exp, |
| 1706 | 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] | 1707 | { |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 1708 | struct stconn *sc = appctx_sc(appctx); |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1709 | struct shared_table *st = p->remote_table; |
| 1710 | struct stksess *ts, *newts; |
| 1711 | uint32_t update; |
| 1712 | int expire; |
| 1713 | unsigned int data_type; |
| 1714 | void *data_ptr; |
| 1715 | |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1716 | TRACE_ENTER(PEERS_EV_UPDTMSG, NULL, p); |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1717 | /* Here we have data message */ |
| 1718 | if (!st) |
| 1719 | goto ignore_msg; |
| 1720 | |
| 1721 | expire = MS_TO_TICKS(st->table->expire); |
| 1722 | |
| 1723 | if (updt) { |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1724 | if (msg_len < sizeof(update)) { |
| 1725 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1726 | goto malformed_exit; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1727 | } |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1728 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1729 | memcpy(&update, *msg_cur, sizeof(update)); |
| 1730 | *msg_cur += sizeof(update); |
| 1731 | st->last_get = htonl(update); |
| 1732 | } |
| 1733 | else { |
| 1734 | st->last_get++; |
| 1735 | } |
| 1736 | |
| 1737 | if (exp) { |
| 1738 | size_t expire_sz = sizeof expire; |
| 1739 | |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1740 | if (*msg_cur + expire_sz > msg_end) { |
| 1741 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 1742 | NULL, p, *msg_cur); |
| 1743 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 1744 | NULL, p, msg_end, &expire_sz); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1745 | goto malformed_exit; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1746 | } |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1747 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1748 | memcpy(&expire, *msg_cur, expire_sz); |
| 1749 | *msg_cur += expire_sz; |
| 1750 | expire = ntohl(expire); |
| 1751 | } |
| 1752 | |
| 1753 | newts = stksess_new(st->table, NULL); |
| 1754 | if (!newts) |
| 1755 | goto ignore_msg; |
| 1756 | |
| 1757 | if (st->table->type == SMP_T_STR) { |
| 1758 | unsigned int to_read, to_store; |
| 1759 | |
| 1760 | to_read = intdecode(msg_cur, msg_end); |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1761 | if (!*msg_cur) { |
| 1762 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1763 | goto malformed_free_newts; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1764 | } |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1765 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1766 | to_store = MIN(to_read, st->table->key_size - 1); |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1767 | if (*msg_cur + to_store > msg_end) { |
| 1768 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 1769 | NULL, p, *msg_cur); |
| 1770 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 1771 | NULL, p, msg_end, &to_store); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1772 | goto malformed_free_newts; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1773 | } |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1774 | |
| 1775 | memcpy(newts->key.key, *msg_cur, to_store); |
| 1776 | newts->key.key[to_store] = 0; |
| 1777 | *msg_cur += to_read; |
| 1778 | } |
| 1779 | else if (st->table->type == SMP_T_SINT) { |
| 1780 | unsigned int netinteger; |
| 1781 | |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1782 | if (*msg_cur + sizeof(netinteger) > msg_end) { |
| 1783 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 1784 | NULL, p, *msg_cur); |
| 1785 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 1786 | NULL, p, msg_end); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1787 | goto malformed_free_newts; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1788 | } |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1789 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1790 | memcpy(&netinteger, *msg_cur, sizeof(netinteger)); |
| 1791 | netinteger = ntohl(netinteger); |
| 1792 | memcpy(newts->key.key, &netinteger, sizeof(netinteger)); |
| 1793 | *msg_cur += sizeof(netinteger); |
| 1794 | } |
| 1795 | else { |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1796 | if (*msg_cur + st->table->key_size > msg_end) { |
| 1797 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 1798 | NULL, p, *msg_cur); |
| 1799 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 1800 | NULL, p, msg_end, &st->table->key_size); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1801 | goto malformed_free_newts; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1802 | } |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1803 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1804 | memcpy(newts->key.key, *msg_cur, st->table->key_size); |
| 1805 | *msg_cur += st->table->key_size; |
| 1806 | } |
| 1807 | |
| 1808 | /* lookup for existing entry */ |
| 1809 | ts = stktable_set_entry(st->table, newts); |
| 1810 | if (ts != newts) { |
| 1811 | stksess_free(st->table, newts); |
| 1812 | newts = NULL; |
| 1813 | } |
| 1814 | |
| 1815 | HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock); |
| 1816 | |
| 1817 | for (data_type = 0 ; data_type < STKTABLE_DATA_TYPES ; data_type++) { |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1818 | uint64_t decoded_int; |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 1819 | unsigned int idx; |
Willy Tarreau | b4ff6f4 | 2021-12-24 13:38:49 +0100 | [diff] [blame] | 1820 | int ignore; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1821 | |
Emeric Brun | 08b0f67 | 2021-07-01 18:54:05 +0200 | [diff] [blame] | 1822 | if (!((1ULL << data_type) & st->remote_data)) |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1823 | continue; |
Willy Tarreau | db2ab82 | 2021-10-08 17:53:12 +0200 | [diff] [blame] | 1824 | |
Willy Tarreau | b4ff6f4 | 2021-12-24 13:38:49 +0100 | [diff] [blame] | 1825 | ignore = stktable_data_types[data_type].is_local; |
Willy Tarreau | db2ab82 | 2021-10-08 17:53:12 +0200 | [diff] [blame] | 1826 | |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 1827 | if (stktable_data_types[data_type].is_array) { |
| 1828 | /* in case of array all elements |
| 1829 | * use the same std_type and they |
| 1830 | * are linearly encoded. |
| 1831 | * The number of elements was provided |
| 1832 | * by table definition message |
| 1833 | */ |
| 1834 | switch (stktable_data_types[data_type].std_type) { |
| 1835 | case STD_T_SINT: |
| 1836 | for (idx = 0; idx < st->remote_data_nbelem[data_type]; idx++) { |
| 1837 | decoded_int = intdecode(msg_cur, msg_end); |
| 1838 | if (!*msg_cur) { |
| 1839 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p); |
| 1840 | goto malformed_unlock; |
| 1841 | } |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1842 | |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 1843 | data_ptr = stktable_data_ptr_idx(st->table, ts, data_type, idx); |
Willy Tarreau | b4ff6f4 | 2021-12-24 13:38:49 +0100 | [diff] [blame] | 1844 | if (data_ptr && !ignore) |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 1845 | stktable_data_cast(data_ptr, std_t_sint) = decoded_int; |
| 1846 | } |
| 1847 | break; |
| 1848 | case STD_T_UINT: |
| 1849 | for (idx = 0; idx < st->remote_data_nbelem[data_type]; idx++) { |
| 1850 | decoded_int = intdecode(msg_cur, msg_end); |
| 1851 | if (!*msg_cur) { |
| 1852 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p); |
| 1853 | goto malformed_unlock; |
| 1854 | } |
| 1855 | |
| 1856 | data_ptr = stktable_data_ptr_idx(st->table, ts, data_type, idx); |
Willy Tarreau | b4ff6f4 | 2021-12-24 13:38:49 +0100 | [diff] [blame] | 1857 | if (data_ptr && !ignore) |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 1858 | stktable_data_cast(data_ptr, std_t_uint) = decoded_int; |
| 1859 | } |
| 1860 | break; |
| 1861 | case STD_T_ULL: |
| 1862 | for (idx = 0; idx < st->remote_data_nbelem[data_type]; idx++) { |
| 1863 | decoded_int = intdecode(msg_cur, msg_end); |
| 1864 | if (!*msg_cur) { |
| 1865 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p); |
| 1866 | goto malformed_unlock; |
| 1867 | } |
| 1868 | |
| 1869 | data_ptr = stktable_data_ptr_idx(st->table, ts, data_type, idx); |
Willy Tarreau | b4ff6f4 | 2021-12-24 13:38:49 +0100 | [diff] [blame] | 1870 | if (data_ptr && !ignore) |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 1871 | stktable_data_cast(data_ptr, std_t_ull) = decoded_int; |
| 1872 | } |
| 1873 | break; |
| 1874 | case STD_T_FRQP: |
| 1875 | for (idx = 0; idx < st->remote_data_nbelem[data_type]; idx++) { |
| 1876 | struct freq_ctr data; |
| 1877 | |
| 1878 | /* First bit is reserved for the freq_ctr lock |
| 1879 | * Note: here we're still protected by the stksess lock |
| 1880 | * so we don't need to update the update the freq_ctr |
| 1881 | * using its internal lock. |
| 1882 | */ |
| 1883 | |
| 1884 | decoded_int = intdecode(msg_cur, msg_end); |
| 1885 | if (!*msg_cur) { |
| 1886 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p); |
| 1887 | goto malformed_unlock; |
| 1888 | } |
| 1889 | |
| 1890 | data.curr_tick = tick_add(now_ms, -decoded_int) & ~0x1; |
| 1891 | data.curr_ctr = intdecode(msg_cur, msg_end); |
| 1892 | if (!*msg_cur) { |
| 1893 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p); |
| 1894 | goto malformed_unlock; |
| 1895 | } |
| 1896 | |
| 1897 | data.prev_ctr = intdecode(msg_cur, msg_end); |
| 1898 | if (!*msg_cur) { |
| 1899 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p); |
| 1900 | goto malformed_unlock; |
| 1901 | } |
| 1902 | |
| 1903 | data_ptr = stktable_data_ptr_idx(st->table, ts, data_type, idx); |
Willy Tarreau | b4ff6f4 | 2021-12-24 13:38:49 +0100 | [diff] [blame] | 1904 | if (data_ptr && !ignore) |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 1905 | stktable_data_cast(data_ptr, std_t_frqp) = data; |
| 1906 | } |
| 1907 | break; |
| 1908 | } |
| 1909 | |
| 1910 | /* array is fully decoded |
| 1911 | * proceed next data_type. |
| 1912 | */ |
| 1913 | continue; |
| 1914 | } |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1915 | decoded_int = intdecode(msg_cur, msg_end); |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1916 | if (!*msg_cur) { |
| 1917 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1918 | goto malformed_unlock; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1919 | } |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1920 | |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1921 | switch (stktable_data_types[data_type].std_type) { |
| 1922 | case STD_T_SINT: |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1923 | data_ptr = stktable_data_ptr(st->table, ts, data_type); |
Willy Tarreau | b4ff6f4 | 2021-12-24 13:38:49 +0100 | [diff] [blame] | 1924 | if (data_ptr && !ignore) |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1925 | 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] | 1926 | break; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1927 | |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1928 | case STD_T_UINT: |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1929 | data_ptr = stktable_data_ptr(st->table, ts, data_type); |
Willy Tarreau | b4ff6f4 | 2021-12-24 13:38:49 +0100 | [diff] [blame] | 1930 | if (data_ptr && !ignore) |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1931 | 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] | 1932 | break; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1933 | |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1934 | case STD_T_ULL: |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1935 | data_ptr = stktable_data_ptr(st->table, ts, data_type); |
Willy Tarreau | b4ff6f4 | 2021-12-24 13:38:49 +0100 | [diff] [blame] | 1936 | if (data_ptr && !ignore) |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1937 | 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] | 1938 | break; |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1939 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1940 | case STD_T_FRQP: { |
Willy Tarreau | fa1258f | 2021-04-10 23:00:53 +0200 | [diff] [blame] | 1941 | struct freq_ctr data; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1942 | |
Willy Tarreau | fa1258f | 2021-04-10 23:00:53 +0200 | [diff] [blame] | 1943 | /* First bit is reserved for the freq_ctr lock |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1944 | Note: here we're still protected by the stksess lock |
Willy Tarreau | fa1258f | 2021-04-10 23:00:53 +0200 | [diff] [blame] | 1945 | so we don't need to update the update the freq_ctr |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 1946 | using its internal lock. |
| 1947 | */ |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1948 | |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1949 | 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] | 1950 | data.curr_ctr = intdecode(msg_cur, msg_end); |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1951 | if (!*msg_cur) { |
| 1952 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1953 | goto malformed_unlock; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1954 | } |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1955 | |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1956 | data.prev_ctr = intdecode(msg_cur, msg_end); |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1957 | if (!*msg_cur) { |
| 1958 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, NULL, p); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 1959 | goto malformed_unlock; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1960 | } |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1961 | |
| 1962 | data_ptr = stktable_data_ptr(st->table, ts, data_type); |
Willy Tarreau | b4ff6f4 | 2021-12-24 13:38:49 +0100 | [diff] [blame] | 1963 | if (data_ptr && !ignore) |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 1964 | stktable_data_cast(data_ptr, std_t_frqp) = data; |
| 1965 | break; |
| 1966 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1967 | case STD_T_DICT: { |
| 1968 | struct buffer *chunk; |
| 1969 | size_t data_len, value_len; |
| 1970 | unsigned int id; |
| 1971 | struct dict_entry *de; |
| 1972 | struct dcache *dc; |
Frédéric Lécaille | 344e948 | 2019-06-05 10:20:09 +0200 | [diff] [blame] | 1973 | char *end; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1974 | |
Frédéric Lécaille | af9990f | 2019-11-13 17:50:34 +0100 | [diff] [blame] | 1975 | if (!decoded_int) { |
| 1976 | /* No entry. */ |
| 1977 | break; |
| 1978 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1979 | data_len = decoded_int; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1980 | if (*msg_cur + data_len > msg_end) { |
| 1981 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 1982 | NULL, p, *msg_cur); |
| 1983 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 1984 | NULL, p, msg_end, &data_len); |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1985 | goto malformed_unlock; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1986 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1987 | |
Frédéric Lécaille | 344e948 | 2019-06-05 10:20:09 +0200 | [diff] [blame] | 1988 | /* Compute the end of the current data, <msg_end> being at the end of |
| 1989 | * the entire message. |
| 1990 | */ |
| 1991 | end = *msg_cur + data_len; |
| 1992 | id = intdecode(msg_cur, end); |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1993 | if (!*msg_cur || !id) { |
| 1994 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 1995 | NULL, p, *msg_cur, &id); |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1996 | goto malformed_unlock; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 1997 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 1998 | |
| 1999 | dc = p->dcache; |
Frédéric Lécaille | 344e948 | 2019-06-05 10:20:09 +0200 | [diff] [blame] | 2000 | if (*msg_cur == end) { |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 2001 | /* Dictionary entry key without value. */ |
Frédéric Lécaille | f9e51be | 2020-11-12 19:53:11 +0100 | [diff] [blame] | 2002 | if (id > dc->max_entries) { |
| 2003 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 2004 | NULL, p, NULL, &id); |
| 2005 | goto malformed_unlock; |
| 2006 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 2007 | /* IDs sent over the network are numbered from 1. */ |
| 2008 | de = dc->rx[id - 1].de; |
| 2009 | } |
| 2010 | else { |
| 2011 | chunk = get_trash_chunk(); |
Frédéric Lécaille | 344e948 | 2019-06-05 10:20:09 +0200 | [diff] [blame] | 2012 | value_len = intdecode(msg_cur, end); |
| 2013 | if (!*msg_cur || *msg_cur + value_len > end || |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 2014 | unlikely(value_len + 1 >= chunk->size)) { |
| 2015 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 2016 | NULL, p, *msg_cur, &value_len); |
| 2017 | TRACE_PROTO("malformed message", PEERS_EV_UPDTMSG, |
| 2018 | NULL, p, end, &chunk->size); |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 2019 | goto malformed_unlock; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 2020 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 2021 | |
| 2022 | chunk_memcpy(chunk, *msg_cur, value_len); |
| 2023 | chunk->area[chunk->data] = '\0'; |
Frédéric Lécaille | 56aec0d | 2019-06-06 14:14:15 +0200 | [diff] [blame] | 2024 | *msg_cur += value_len; |
| 2025 | |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 2026 | de = dict_insert(&server_key_dict, chunk->area); |
| 2027 | dict_entry_unref(&server_key_dict, dc->rx[id - 1].de); |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 2028 | dc->rx[id - 1].de = de; |
| 2029 | } |
| 2030 | if (de) { |
| 2031 | data_ptr = stktable_data_ptr(st->table, ts, data_type); |
Willy Tarreau | b4ff6f4 | 2021-12-24 13:38:49 +0100 | [diff] [blame] | 2032 | if (data_ptr && !ignore) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2033 | HA_ATOMIC_INC(&de->refcount); |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 2034 | stktable_data_cast(data_ptr, std_t_dict) = de; |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 2035 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 2036 | } |
| 2037 | break; |
| 2038 | } |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 2039 | } |
| 2040 | } |
| 2041 | /* Force new expiration */ |
| 2042 | ts->expire = tick_add(now_ms, expire); |
| 2043 | |
| 2044 | HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock); |
| 2045 | stktable_touch_remote(st->table, ts, 1); |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 2046 | TRACE_LEAVE(PEERS_EV_UPDTMSG, NULL, p); |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 2047 | return 1; |
| 2048 | |
| 2049 | ignore_msg: |
| 2050 | /* skip consumed message */ |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 2051 | co_skip(sc_oc(sc), totl); |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 2052 | TRACE_DEVEL("leaving in error", PEERS_EV_UPDTMSG); |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 2053 | return 0; |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 2054 | |
| 2055 | malformed_unlock: |
| 2056 | /* malformed message */ |
| 2057 | HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock); |
| 2058 | stktable_touch_remote(st->table, ts, 1); |
| 2059 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 2060 | TRACE_DEVEL("leaving in error", PEERS_EV_UPDTMSG); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 2061 | return 0; |
| 2062 | |
| 2063 | malformed_free_newts: |
| 2064 | /* malformed message */ |
| 2065 | stksess_free(st->table, newts); |
| 2066 | malformed_exit: |
| 2067 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
Frédéric Lécaille | d865935 | 2020-11-10 16:18:03 +0100 | [diff] [blame] | 2068 | TRACE_DEVEL("leaving in error", PEERS_EV_UPDTMSG); |
Willy Tarreau | 1e82a14 | 2019-01-29 11:08:06 +0100 | [diff] [blame] | 2069 | return 0; |
Frédéric Lécaille | 168a34b | 2019-01-23 11:16:57 +0100 | [diff] [blame] | 2070 | } |
| 2071 | |
Frédéric Lécaille | 87f554c | 2019-01-22 17:26:50 +0100 | [diff] [blame] | 2072 | /* |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2073 | * Function used to parse a stick-table update acknowledgement message after it |
| 2074 | * has been received by <p> peer with <msg_cur> as address of the pointer to the position in the |
| 2075 | * receipt buffer with <msg_end> being the position of the end of the stick-table message. |
| 2076 | * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error |
| 2077 | * was encountered. |
| 2078 | * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO. |
| 2079 | */ |
| 2080 | static inline int peer_treat_ackmsg(struct appctx *appctx, struct peer *p, |
| 2081 | char **msg_cur, char *msg_end) |
| 2082 | { |
| 2083 | /* ack message */ |
| 2084 | uint32_t table_id ; |
| 2085 | uint32_t update; |
| 2086 | struct shared_table *st; |
| 2087 | |
Emeric Brun | b0d60be | 2021-03-04 10:27:10 +0100 | [diff] [blame] | 2088 | /* ignore ack during teaching process */ |
| 2089 | if (p->flags & PEER_F_TEACH_PROCESS) |
| 2090 | return 1; |
| 2091 | |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2092 | table_id = intdecode(msg_cur, msg_end); |
| 2093 | if (!*msg_cur || (*msg_cur + sizeof(update) > msg_end)) { |
| 2094 | /* malformed message */ |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2095 | |
| 2096 | TRACE_PROTO("malformed message", PEERS_EV_ACKMSG, |
| 2097 | NULL, p, *msg_cur); |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2098 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
| 2099 | return 0; |
| 2100 | } |
| 2101 | |
| 2102 | memcpy(&update, *msg_cur, sizeof(update)); |
| 2103 | update = ntohl(update); |
| 2104 | |
| 2105 | for (st = p->tables; st; st = st->next) { |
| 2106 | if (st->local_id == table_id) { |
| 2107 | st->update = update; |
| 2108 | break; |
| 2109 | } |
| 2110 | } |
| 2111 | |
| 2112 | return 1; |
| 2113 | } |
| 2114 | |
| 2115 | /* |
| 2116 | * Function used to parse a stick-table switch message after it has been received |
| 2117 | * by <p> peer with <msg_cur> as address of the pointer to the position in the |
| 2118 | * receipt buffer with <msg_end> being the position of the end of the stick-table message. |
| 2119 | * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error |
| 2120 | * was encountered. |
| 2121 | * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO. |
| 2122 | */ |
| 2123 | static inline int peer_treat_switchmsg(struct appctx *appctx, struct peer *p, |
| 2124 | char **msg_cur, char *msg_end) |
| 2125 | { |
| 2126 | struct shared_table *st; |
| 2127 | int table_id; |
| 2128 | |
| 2129 | table_id = intdecode(msg_cur, msg_end); |
| 2130 | if (!*msg_cur) { |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2131 | TRACE_PROTO("malformed message", PEERS_EV_SWTCMSG, NULL, p); |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2132 | /* malformed message */ |
| 2133 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
| 2134 | return 0; |
| 2135 | } |
| 2136 | |
| 2137 | p->remote_table = NULL; |
| 2138 | for (st = p->tables; st; st = st->next) { |
| 2139 | if (st->remote_id == table_id) { |
| 2140 | p->remote_table = st; |
| 2141 | break; |
| 2142 | } |
| 2143 | } |
| 2144 | |
| 2145 | return 1; |
| 2146 | } |
| 2147 | |
| 2148 | /* |
| 2149 | * Function used to parse a stick-table definition message after it has been received |
| 2150 | * by <p> peer with <msg_cur> as address of the pointer to the position in the |
| 2151 | * receipt buffer with <msg_end> being the position of the end of the stick-table message. |
| 2152 | * Update <msg_curr> accordingly to the peer protocol specs if no peer protocol error |
| 2153 | * was encountered. |
| 2154 | * <totl> is the length of the stick-table update message computed upon receipt. |
| 2155 | * Return 1 if succeeded, 0 if not with the appctx state st0 set to PEER_SESS_ST_ERRPROTO. |
| 2156 | */ |
| 2157 | static inline int peer_treat_definemsg(struct appctx *appctx, struct peer *p, |
| 2158 | char **msg_cur, char *msg_end, int totl) |
| 2159 | { |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 2160 | struct stconn *sc = appctx_sc(appctx); |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2161 | int table_id_len; |
| 2162 | struct shared_table *st; |
| 2163 | int table_type; |
| 2164 | int table_keylen; |
| 2165 | int table_id; |
| 2166 | uint64_t table_data; |
| 2167 | |
| 2168 | table_id = intdecode(msg_cur, msg_end); |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2169 | if (!*msg_cur) { |
| 2170 | TRACE_PROTO("malformed message", PEERS_EV_DEFMSG, NULL, p); |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 2171 | goto malformed_exit; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2172 | } |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2173 | |
| 2174 | table_id_len = intdecode(msg_cur, msg_end); |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2175 | if (!*msg_cur) { |
| 2176 | TRACE_PROTO("malformed message", PEERS_EV_DEFMSG, NULL, p, *msg_cur); |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 2177 | goto malformed_exit; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2178 | } |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2179 | |
| 2180 | p->remote_table = NULL; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2181 | if (!table_id_len || (*msg_cur + table_id_len) >= msg_end) { |
| 2182 | TRACE_PROTO("malformed message", PEERS_EV_DEFMSG, NULL, p, *msg_cur, &table_id_len); |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 2183 | goto malformed_exit; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2184 | } |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2185 | |
| 2186 | for (st = p->tables; st; st = st->next) { |
| 2187 | /* Reset IDs */ |
| 2188 | if (st->remote_id == table_id) |
| 2189 | st->remote_id = 0; |
| 2190 | |
Frédéric Lécaille | 7fcc24d | 2019-03-20 15:09:45 +0100 | [diff] [blame] | 2191 | if (!p->remote_table && (table_id_len == strlen(st->table->nid)) && |
| 2192 | (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] | 2193 | p->remote_table = st; |
| 2194 | } |
| 2195 | |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2196 | if (!p->remote_table) { |
| 2197 | TRACE_PROTO("ignored message", PEERS_EV_DEFMSG, NULL, p); |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2198 | goto ignore_msg; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2199 | } |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2200 | |
| 2201 | *msg_cur += table_id_len; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2202 | if (*msg_cur >= msg_end) { |
| 2203 | TRACE_PROTO("malformed message", PEERS_EV_DEFMSG, NULL, p); |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 2204 | goto malformed_exit; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2205 | } |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2206 | |
| 2207 | table_type = intdecode(msg_cur, msg_end); |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2208 | if (!*msg_cur) { |
| 2209 | TRACE_PROTO("malformed message", PEERS_EV_DEFMSG, NULL, p); |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 2210 | goto malformed_exit; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2211 | } |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2212 | |
| 2213 | table_keylen = intdecode(msg_cur, msg_end); |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2214 | if (!*msg_cur) { |
| 2215 | TRACE_PROTO("malformed message", PEERS_EV_DEFMSG, NULL, p); |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 2216 | goto malformed_exit; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2217 | } |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2218 | |
| 2219 | table_data = intdecode(msg_cur, msg_end); |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2220 | if (!*msg_cur) { |
| 2221 | TRACE_PROTO("malformed message", PEERS_EV_DEFMSG, NULL, p); |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 2222 | goto malformed_exit; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2223 | } |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2224 | |
Emeric Brun | 530ba38 | 2020-06-02 11:17:42 +0200 | [diff] [blame] | 2225 | 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] | 2226 | || p->remote_table->table->key_size != table_keylen) { |
| 2227 | p->remote_table = NULL; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2228 | TRACE_PROTO("ignored message", PEERS_EV_DEFMSG, NULL, p); |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2229 | goto ignore_msg; |
| 2230 | } |
| 2231 | |
Ilya Shipitsin | 0188108 | 2021-08-07 14:41:56 +0500 | [diff] [blame] | 2232 | /* Check if there there is the additional expire data */ |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 2233 | intdecode(msg_cur, msg_end); |
| 2234 | if (*msg_cur) { |
| 2235 | uint64_t data_type; |
| 2236 | uint64_t type; |
| 2237 | |
| 2238 | /* This define contains the expire data so we consider |
| 2239 | * it also contain all data_types parameters. |
| 2240 | */ |
| 2241 | for (data_type = 0; data_type < STKTABLE_DATA_TYPES; data_type++) { |
| 2242 | if (table_data & (1ULL << data_type)) { |
| 2243 | if (stktable_data_types[data_type].is_array) { |
| 2244 | /* This should be an array |
| 2245 | * so we parse the data_type prefix |
| 2246 | * because we must have parameters. |
| 2247 | */ |
| 2248 | type = intdecode(msg_cur, msg_end); |
| 2249 | if (!*msg_cur) { |
| 2250 | p->remote_table = NULL; |
| 2251 | TRACE_PROTO("missing meta data for array", PEERS_EV_DEFMSG, NULL, p); |
| 2252 | goto ignore_msg; |
| 2253 | } |
| 2254 | |
| 2255 | /* check if the data_type match the current from the bitfield */ |
| 2256 | if (type != data_type) { |
| 2257 | p->remote_table = NULL; |
Ilya Shipitsin | 0188108 | 2021-08-07 14:41:56 +0500 | [diff] [blame] | 2258 | TRACE_PROTO("meta data mismatch type", PEERS_EV_DEFMSG, NULL, p); |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 2259 | goto ignore_msg; |
| 2260 | } |
| 2261 | |
| 2262 | /* decode the nbelem of the array */ |
| 2263 | p->remote_table->remote_data_nbelem[type] = intdecode(msg_cur, msg_end); |
| 2264 | if (!*msg_cur) { |
| 2265 | p->remote_table = NULL; |
| 2266 | TRACE_PROTO("missing array size meta data for array", PEERS_EV_DEFMSG, NULL, p); |
| 2267 | goto ignore_msg; |
| 2268 | } |
| 2269 | |
| 2270 | /* if it is an array of frqp, we must also have the period to decode */ |
| 2271 | if (stktable_data_types[data_type].std_type == STD_T_FRQP) { |
| 2272 | intdecode(msg_cur, msg_end); |
| 2273 | if (!*msg_cur) { |
| 2274 | p->remote_table = NULL; |
| 2275 | TRACE_PROTO("missing period for frqp", PEERS_EV_DEFMSG, NULL, p); |
| 2276 | goto ignore_msg; |
| 2277 | } |
| 2278 | } |
| 2279 | } |
| 2280 | else if (stktable_data_types[data_type].std_type == STD_T_FRQP) { |
| 2281 | /* This should be a std freq counter data_type |
| 2282 | * so we parse the data_type prefix |
| 2283 | * because we must have parameters. |
| 2284 | */ |
| 2285 | type = intdecode(msg_cur, msg_end); |
| 2286 | if (!*msg_cur) { |
| 2287 | p->remote_table = NULL; |
| 2288 | TRACE_PROTO("missing meta data for frqp", PEERS_EV_DEFMSG, NULL, p); |
| 2289 | goto ignore_msg; |
| 2290 | } |
| 2291 | |
| 2292 | /* check if the data_type match the current from the bitfield */ |
| 2293 | if (type != data_type) { |
| 2294 | p->remote_table = NULL; |
Ilya Shipitsin | 0188108 | 2021-08-07 14:41:56 +0500 | [diff] [blame] | 2295 | TRACE_PROTO("meta data mismatch type", PEERS_EV_DEFMSG, NULL, p); |
Emeric Brun | 90a9b67 | 2021-06-22 16:09:55 +0200 | [diff] [blame] | 2296 | goto ignore_msg; |
| 2297 | } |
| 2298 | |
| 2299 | /* decode the period */ |
| 2300 | intdecode(msg_cur, msg_end); |
| 2301 | if (!*msg_cur) { |
| 2302 | p->remote_table = NULL; |
| 2303 | TRACE_PROTO("missing period for frqp", PEERS_EV_DEFMSG, NULL, p); |
| 2304 | goto ignore_msg; |
| 2305 | } |
| 2306 | } |
| 2307 | } |
| 2308 | } |
| 2309 | } |
| 2310 | else { |
| 2311 | uint64_t data_type; |
| 2312 | |
| 2313 | /* There is not additional data but |
| 2314 | * array size parameter is mandatory to parse array |
| 2315 | * so we consider an error if an array data_type is define |
| 2316 | * but there is no additional data. |
| 2317 | */ |
| 2318 | for (data_type = 0; data_type < STKTABLE_DATA_TYPES; data_type++) { |
| 2319 | if (table_data & (1ULL << data_type)) { |
| 2320 | if (stktable_data_types[data_type].is_array) { |
| 2321 | p->remote_table = NULL; |
| 2322 | TRACE_PROTO("missing array size meta data for array", PEERS_EV_DEFMSG, NULL, p); |
| 2323 | goto ignore_msg; |
| 2324 | } |
| 2325 | } |
| 2326 | } |
| 2327 | } |
| 2328 | |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2329 | p->remote_table->remote_data = table_data; |
| 2330 | p->remote_table->remote_id = table_id; |
| 2331 | return 1; |
| 2332 | |
| 2333 | ignore_msg: |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 2334 | co_skip(sc_oc(sc), totl); |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2335 | return 0; |
Willy Tarreau | 6f731f3 | 2019-01-29 11:11:23 +0100 | [diff] [blame] | 2336 | |
| 2337 | malformed_exit: |
| 2338 | /* malformed message */ |
| 2339 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
| 2340 | return 0; |
Frédéric Lécaille | d27b094 | 2019-01-23 17:31:37 +0100 | [diff] [blame] | 2341 | } |
| 2342 | |
| 2343 | /* |
Willy Tarreau | 1dfd4f1 | 2020-11-13 14:10:20 +0100 | [diff] [blame] | 2344 | * Receive a stick-table message or pre-parse any other message. |
| 2345 | * The message's header will be sent into <msg_head> which must be at least |
| 2346 | * <msg_head_sz> bytes long (at least 7 to store 32-bit variable lengths). |
| 2347 | * The first two bytes are always read, and the rest is only read if the |
| 2348 | * first bytes indicate a stick-table message. If the message is a stick-table |
| 2349 | * message, the varint is decoded and the equivalent number of bytes will be |
| 2350 | * copied into the trash at trash.area. <totl> is incremented by the number of |
| 2351 | * bytes read EVEN IN CASE OF INCOMPLETE MESSAGES. |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2352 | * Returns 1 if there was no error, if not, returns 0 if not enough data were available, |
| 2353 | * -1 if there was an error updating the appctx state st0 accordingly. |
| 2354 | */ |
| 2355 | static inline int peer_recv_msg(struct appctx *appctx, char *msg_head, size_t msg_head_sz, |
| 2356 | uint32_t *msg_len, int *totl) |
| 2357 | { |
| 2358 | int reql; |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 2359 | struct stconn *sc = appctx_sc(appctx); |
Willy Tarreau | 1dfd4f1 | 2020-11-13 14:10:20 +0100 | [diff] [blame] | 2360 | char *cur; |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2361 | |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 2362 | reql = co_getblk(sc_oc(sc), msg_head, 2 * sizeof(char), *totl); |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2363 | if (reql <= 0) /* closed or EOL not found */ |
| 2364 | goto incomplete; |
| 2365 | |
| 2366 | *totl += reql; |
| 2367 | |
Frédéric Lécaille | 36fb77e | 2019-06-04 08:28:19 +0200 | [diff] [blame] | 2368 | if (!(msg_head[1] & PEER_MSG_STKT_BIT_MASK)) |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2369 | return 1; |
| 2370 | |
Willy Tarreau | 1dfd4f1 | 2020-11-13 14:10:20 +0100 | [diff] [blame] | 2371 | /* This is a stick-table message, let's go on */ |
| 2372 | |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2373 | /* Read and Decode message length */ |
Willy Tarreau | 1dfd4f1 | 2020-11-13 14:10:20 +0100 | [diff] [blame] | 2374 | msg_head += *totl; |
| 2375 | msg_head_sz -= *totl; |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 2376 | reql = co_data(sc_oc(sc)) - *totl; |
Willy Tarreau | 1dfd4f1 | 2020-11-13 14:10:20 +0100 | [diff] [blame] | 2377 | if (reql > msg_head_sz) |
| 2378 | reql = msg_head_sz; |
| 2379 | |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 2380 | reql = co_getblk(sc_oc(sc), msg_head, reql, *totl); |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2381 | if (reql <= 0) /* closed */ |
| 2382 | goto incomplete; |
| 2383 | |
Willy Tarreau | 1dfd4f1 | 2020-11-13 14:10:20 +0100 | [diff] [blame] | 2384 | cur = msg_head; |
| 2385 | *msg_len = intdecode(&cur, cur + reql); |
| 2386 | if (!cur) { |
| 2387 | /* the number is truncated, did we read enough ? */ |
| 2388 | if (reql < msg_head_sz) |
| 2389 | goto incomplete; |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2390 | |
Willy Tarreau | 1dfd4f1 | 2020-11-13 14:10:20 +0100 | [diff] [blame] | 2391 | /* malformed message */ |
| 2392 | TRACE_PROTO("malformed message: too large length encoding", PEERS_EV_UPDTMSG); |
| 2393 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
| 2394 | return -1; |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2395 | } |
Willy Tarreau | 1dfd4f1 | 2020-11-13 14:10:20 +0100 | [diff] [blame] | 2396 | *totl += cur - msg_head; |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2397 | |
| 2398 | /* Read message content */ |
| 2399 | if (*msg_len) { |
| 2400 | if (*msg_len > trash.size) { |
| 2401 | /* Status code is not success, abort */ |
| 2402 | appctx->st0 = PEER_SESS_ST_ERRSIZE; |
| 2403 | return -1; |
| 2404 | } |
| 2405 | |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 2406 | reql = co_getblk(sc_oc(sc), trash.area, *msg_len, *totl); |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2407 | if (reql <= 0) /* closed */ |
| 2408 | goto incomplete; |
| 2409 | *totl += reql; |
| 2410 | } |
| 2411 | |
| 2412 | return 1; |
| 2413 | |
| 2414 | incomplete: |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 2415 | if (reql < 0 || (sc_oc(sc)->flags & (CF_SHUTW|CF_SHUTW_NOW))) { |
Willy Tarreau | 345ebcf | 2020-11-26 17:06:04 +0100 | [diff] [blame] | 2416 | /* there was an error or the message was truncated */ |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2417 | appctx->st0 = PEER_SESS_ST_END; |
| 2418 | return -1; |
| 2419 | } |
| 2420 | |
| 2421 | return 0; |
| 2422 | } |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 2423 | |
| 2424 | /* |
| 2425 | * Treat the awaited message with <msg_head> as header.* |
| 2426 | * Return 1 if succeeded, 0 if not. |
| 2427 | */ |
| 2428 | static inline int peer_treat_awaited_msg(struct appctx *appctx, struct peer *peer, unsigned char *msg_head, |
| 2429 | char **msg_cur, char *msg_end, int msg_len, int totl) |
| 2430 | { |
Christopher Faulet | 387e797 | 2022-05-12 14:47:52 +0200 | [diff] [blame] | 2431 | struct peers *peers = peer->peers; |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 2432 | |
| 2433 | if (msg_head[0] == PEER_MSG_CLASS_CONTROL) { |
| 2434 | if (msg_head[1] == PEER_MSG_CTRL_RESYNCREQ) { |
| 2435 | struct shared_table *st; |
| 2436 | /* Reset message: remote need resync */ |
| 2437 | |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2438 | TRACE_PROTO("received control message", PEERS_EV_CTRLMSG, |
| 2439 | NULL, &msg_head[1], peers->local->id, peer->id); |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 2440 | /* prepare tables for a global push */ |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 2441 | for (st = peer->tables; st; st = st->next) { |
Emeric Brun | 437e48a | 2021-04-28 09:49:33 +0200 | [diff] [blame] | 2442 | st->teaching_origin = st->last_pushed = st->update; |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 2443 | st->flags = 0; |
| 2444 | } |
| 2445 | |
| 2446 | /* reset teaching flags to 0 */ |
| 2447 | peer->flags &= PEER_TEACH_RESET; |
| 2448 | |
| 2449 | /* flag to start to teach lesson */ |
| 2450 | peer->flags |= PEER_F_TEACH_PROCESS; |
Emeric Brun | ccdfbae | 2021-04-28 12:59:35 +0200 | [diff] [blame] | 2451 | peers->flags |= PEERS_F_RESYNC_REQUESTED; |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 2452 | } |
| 2453 | else if (msg_head[1] == PEER_MSG_CTRL_RESYNCFINISHED) { |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2454 | TRACE_PROTO("received control message", PEERS_EV_CTRLMSG, |
| 2455 | NULL, &msg_head[1], peers->local->id, peer->id); |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 2456 | if (peer->flags & PEER_F_LEARN_ASSIGN) { |
Emeric Brun | ac55608 | 2022-10-24 10:04:59 +0200 | [diff] [blame] | 2457 | int commit_a_finish = 1; |
| 2458 | |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 2459 | peer->flags &= ~PEER_F_LEARN_ASSIGN; |
| 2460 | peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS); |
Emeric Brun | ac55608 | 2022-10-24 10:04:59 +0200 | [diff] [blame] | 2461 | if (peer->srv->shard) { |
| 2462 | struct peer *ps; |
| 2463 | |
| 2464 | peers->flags |= PEERS_F_RESYNC_REMOTEPARTIAL; |
| 2465 | peer->flags |= PEER_F_LEARN_NOTUP2DATE; |
| 2466 | for (ps = peers->remote; ps; ps = ps->next) { |
| 2467 | if (ps->srv->shard == peer->srv->shard) { |
| 2468 | /* flag all peers from same shard |
| 2469 | * notup2date to disable request |
| 2470 | * of a resync frm them |
| 2471 | */ |
| 2472 | ps->flags |= PEER_F_LEARN_NOTUP2DATE; |
| 2473 | } |
| 2474 | else if (ps->srv->shard && !(ps->flags & PEER_F_LEARN_NOTUP2DATE)) { |
| 2475 | /* it remains some other shards not requested |
| 2476 | * we don't commit a resync finish to request |
| 2477 | * the other shards |
| 2478 | */ |
| 2479 | commit_a_finish = 0; |
| 2480 | } |
| 2481 | } |
| 2482 | |
| 2483 | if (!commit_a_finish) { |
| 2484 | /* it remains some shard to request, we schedule a new request |
| 2485 | */ |
| 2486 | peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT)); |
| 2487 | task_wakeup(peers->sync_task, TASK_WOKEN_MSG); |
| 2488 | } |
| 2489 | } |
| 2490 | |
| 2491 | if (commit_a_finish) { |
| 2492 | peers->flags |= (PEERS_F_RESYNC_LOCAL|PEERS_F_RESYNC_REMOTE); |
| 2493 | if (peer->local) |
| 2494 | peers->flags |= PEERS_F_RESYNC_LOCALFINISHED; |
| 2495 | else |
| 2496 | peers->flags |= PEERS_F_RESYNC_REMOTEFINISHED; |
| 2497 | } |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 2498 | } |
| 2499 | peer->confirm++; |
| 2500 | } |
| 2501 | else if (msg_head[1] == PEER_MSG_CTRL_RESYNCPARTIAL) { |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2502 | TRACE_PROTO("received control message", PEERS_EV_CTRLMSG, |
| 2503 | NULL, &msg_head[1], peers->local->id, peer->id); |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 2504 | if (peer->flags & PEER_F_LEARN_ASSIGN) { |
| 2505 | peer->flags &= ~PEER_F_LEARN_ASSIGN; |
| 2506 | peers->flags &= ~(PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS); |
| 2507 | |
Emeric Brun | ccdfbae | 2021-04-28 12:59:35 +0200 | [diff] [blame] | 2508 | if (peer->local) |
| 2509 | peers->flags |= PEERS_F_RESYNC_LOCALPARTIAL; |
| 2510 | else |
| 2511 | peers->flags |= PEERS_F_RESYNC_REMOTEPARTIAL; |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 2512 | peer->flags |= PEER_F_LEARN_NOTUP2DATE; |
Frédéric Lécaille | 54bff83 | 2019-03-26 10:25:20 +0100 | [diff] [blame] | 2513 | 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] | 2514 | task_wakeup(peers->sync_task, TASK_WOKEN_MSG); |
| 2515 | } |
| 2516 | peer->confirm++; |
| 2517 | } |
| 2518 | else if (msg_head[1] == PEER_MSG_CTRL_RESYNCCONFIRM) { |
| 2519 | struct shared_table *st; |
| 2520 | |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2521 | TRACE_PROTO("received control message", PEERS_EV_CTRLMSG, |
| 2522 | NULL, &msg_head[1], peers->local->id, peer->id); |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 2523 | /* If stopping state */ |
| 2524 | if (stopping) { |
| 2525 | /* Close session, push resync no more needed */ |
| 2526 | peer->flags |= PEER_F_TEACH_COMPLETE; |
| 2527 | appctx->st0 = PEER_SESS_ST_END; |
| 2528 | return 0; |
| 2529 | } |
| 2530 | for (st = peer->tables; st; st = st->next) { |
| 2531 | st->update = st->last_pushed = st->teaching_origin; |
| 2532 | st->flags = 0; |
| 2533 | } |
| 2534 | |
| 2535 | /* reset teaching flags to 0 */ |
| 2536 | peer->flags &= PEER_TEACH_RESET; |
| 2537 | } |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 2538 | else if (msg_head[1] == PEER_MSG_CTRL_HEARTBEAT) { |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2539 | TRACE_PROTO("received control message", PEERS_EV_CTRLMSG, |
| 2540 | NULL, &msg_head[1], peers->local->id, peer->id); |
Frédéric Lécaille | 54bff83 | 2019-03-26 10:25:20 +0100 | [diff] [blame] | 2541 | 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] | 2542 | peer->rx_hbt++; |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 2543 | } |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 2544 | } |
| 2545 | else if (msg_head[0] == PEER_MSG_CLASS_STICKTABLE) { |
| 2546 | if (msg_head[1] == PEER_MSG_STKT_DEFINE) { |
| 2547 | if (!peer_treat_definemsg(appctx, peer, msg_cur, msg_end, totl)) |
| 2548 | return 0; |
| 2549 | } |
| 2550 | else if (msg_head[1] == PEER_MSG_STKT_SWITCH) { |
| 2551 | if (!peer_treat_switchmsg(appctx, peer, msg_cur, msg_end)) |
| 2552 | return 0; |
| 2553 | } |
| 2554 | else if (msg_head[1] == PEER_MSG_STKT_UPDATE || |
| 2555 | msg_head[1] == PEER_MSG_STKT_INCUPDATE || |
| 2556 | msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED || |
| 2557 | msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED) { |
| 2558 | int update, expire; |
| 2559 | |
| 2560 | update = msg_head[1] == PEER_MSG_STKT_UPDATE || msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED; |
| 2561 | expire = msg_head[1] == PEER_MSG_STKT_UPDATE_TIMED || msg_head[1] == PEER_MSG_STKT_INCUPDATE_TIMED; |
| 2562 | if (!peer_treat_updatemsg(appctx, peer, update, expire, |
| 2563 | msg_cur, msg_end, msg_len, totl)) |
| 2564 | return 0; |
| 2565 | |
| 2566 | } |
| 2567 | else if (msg_head[1] == PEER_MSG_STKT_ACK) { |
| 2568 | if (!peer_treat_ackmsg(appctx, peer, msg_cur, msg_end)) |
| 2569 | return 0; |
| 2570 | } |
| 2571 | } |
| 2572 | else if (msg_head[0] == PEER_MSG_CLASS_RESERVED) { |
| 2573 | appctx->st0 = PEER_SESS_ST_ERRPROTO; |
| 2574 | return 0; |
| 2575 | } |
| 2576 | |
| 2577 | return 1; |
| 2578 | } |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2579 | |
| 2580 | |
| 2581 | /* |
| 2582 | * Send any message to <peer> peer. |
| 2583 | * Returns 1 if succeeded, or -1 or 0 if failed. |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 2584 | * -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] | 2585 | * to a peer state change (from the peer I/O handler point of view). |
| 2586 | */ |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2587 | static inline int peer_send_msgs(struct appctx *appctx, |
| 2588 | struct peer *peer, struct peers *peers) |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2589 | { |
| 2590 | int repl; |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2591 | |
| 2592 | /* Need to request a resync */ |
| 2593 | if ((peer->flags & PEER_F_LEARN_ASSIGN) && |
| 2594 | (peers->flags & PEERS_F_RESYNC_ASSIGN) && |
| 2595 | !(peers->flags & PEERS_F_RESYNC_PROCESS)) { |
| 2596 | |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2597 | repl = peer_send_resync_reqmsg(appctx, peer, peers); |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2598 | if (repl <= 0) |
| 2599 | return repl; |
| 2600 | |
| 2601 | peers->flags |= PEERS_F_RESYNC_PROCESS; |
| 2602 | } |
| 2603 | |
| 2604 | /* Nothing to read, now we start to write */ |
| 2605 | if (peer->tables) { |
| 2606 | struct shared_table *st; |
| 2607 | struct shared_table *last_local_table; |
Willy Tarreau | 8bd146d | 2022-07-19 20:17:38 +0200 | [diff] [blame] | 2608 | int updates_sent = 0; |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2609 | |
| 2610 | last_local_table = peer->last_local_table; |
| 2611 | if (!last_local_table) |
| 2612 | last_local_table = peer->tables; |
| 2613 | st = last_local_table->next; |
| 2614 | |
| 2615 | while (1) { |
| 2616 | if (!st) |
| 2617 | st = peer->tables; |
| 2618 | |
| 2619 | /* It remains some updates to ack */ |
| 2620 | if (st->last_get != st->last_acked) { |
| 2621 | repl = peer_send_ackmsg(st, appctx); |
| 2622 | if (repl <= 0) |
| 2623 | return repl; |
| 2624 | |
| 2625 | st->last_acked = st->last_get; |
| 2626 | } |
| 2627 | |
| 2628 | if (!(peer->flags & PEER_F_TEACH_PROCESS)) { |
Willy Tarreau | 7664222 | 2022-10-11 12:02:50 +0200 | [diff] [blame] | 2629 | HA_RWLOCK_WRLOCK(STK_TABLE_LOCK, &st->table->lock); |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2630 | if (!(peer->flags & PEER_F_LEARN_ASSIGN) && |
Emeric Brun | 8e7a13e | 2021-04-28 11:48:15 +0200 | [diff] [blame] | 2631 | (st->last_pushed != st->table->localupdate)) { |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2632 | |
| 2633 | repl = peer_send_teach_process_msgs(appctx, peer, st); |
| 2634 | if (repl <= 0) { |
Willy Tarreau | 7664222 | 2022-10-11 12:02:50 +0200 | [diff] [blame] | 2635 | HA_RWLOCK_WRUNLOCK(STK_TABLE_LOCK, &st->table->lock); |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2636 | return repl; |
| 2637 | } |
| 2638 | } |
Willy Tarreau | 7664222 | 2022-10-11 12:02:50 +0200 | [diff] [blame] | 2639 | HA_RWLOCK_WRUNLOCK(STK_TABLE_LOCK, &st->table->lock); |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2640 | } |
Emeric Brun | 1675ada | 2021-04-22 18:13:13 +0200 | [diff] [blame] | 2641 | else if (!(peer->flags & PEER_F_TEACH_FINISHED)) { |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2642 | if (!(st->flags & SHTABLE_F_TEACH_STAGE1)) { |
| 2643 | repl = peer_send_teach_stage1_msgs(appctx, peer, st); |
| 2644 | if (repl <= 0) |
| 2645 | return repl; |
| 2646 | } |
| 2647 | |
| 2648 | if (!(st->flags & SHTABLE_F_TEACH_STAGE2)) { |
| 2649 | repl = peer_send_teach_stage2_msgs(appctx, peer, st); |
| 2650 | if (repl <= 0) |
| 2651 | return repl; |
| 2652 | } |
| 2653 | } |
| 2654 | |
| 2655 | if (st == last_local_table) |
| 2656 | break; |
| 2657 | st = st->next; |
Willy Tarreau | 8bd146d | 2022-07-19 20:17:38 +0200 | [diff] [blame] | 2658 | |
| 2659 | updates_sent++; |
| 2660 | if (updates_sent >= peers_max_updates_at_once) { |
| 2661 | /* pretend we're full so that we get back ASAP */ |
| 2662 | struct stconn *sc = appctx_sc(appctx); |
| 2663 | |
| 2664 | sc_need_room(sc); |
| 2665 | return -1; |
| 2666 | } |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2667 | } |
| 2668 | } |
| 2669 | |
| 2670 | if ((peer->flags & PEER_F_TEACH_PROCESS) && !(peer->flags & PEER_F_TEACH_FINISHED)) { |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2671 | repl = peer_send_resync_finishedmsg(appctx, peer, peers); |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2672 | if (repl <= 0) |
| 2673 | return repl; |
| 2674 | |
| 2675 | /* flag finished message sent */ |
| 2676 | peer->flags |= PEER_F_TEACH_FINISHED; |
| 2677 | } |
| 2678 | |
| 2679 | /* Confirm finished or partial messages */ |
| 2680 | while (peer->confirm) { |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 2681 | repl = peer_send_resync_confirmsg(appctx, peer, peers); |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 2682 | if (repl <= 0) |
| 2683 | return repl; |
| 2684 | |
| 2685 | peer->confirm--; |
| 2686 | } |
| 2687 | |
| 2688 | return 1; |
| 2689 | } |
| 2690 | |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 2691 | /* |
Frédéric Lécaille | 3f0fb9d | 2019-01-25 08:30:29 +0100 | [diff] [blame] | 2692 | * Read and parse a first line of a "hello" peer protocol message. |
| 2693 | * Returns 0 if could not read a line, -1 if there was a read error or |
| 2694 | * the line is malformed, 1 if succeeded. |
| 2695 | */ |
| 2696 | static inline int peer_getline_version(struct appctx *appctx, |
| 2697 | unsigned int *maj_ver, unsigned int *min_ver) |
| 2698 | { |
| 2699 | int reql; |
| 2700 | |
| 2701 | reql = peer_getline(appctx); |
| 2702 | if (!reql) |
| 2703 | return 0; |
| 2704 | |
| 2705 | if (reql < 0) |
| 2706 | return -1; |
| 2707 | |
| 2708 | /* test protocol */ |
| 2709 | if (strncmp(PEER_SESSION_PROTO_NAME " ", trash.area, proto_len + 1) != 0) { |
| 2710 | appctx->st0 = PEER_SESS_ST_EXIT; |
| 2711 | appctx->st1 = PEER_SESS_SC_ERRPROTO; |
| 2712 | return -1; |
| 2713 | } |
| 2714 | if (peer_get_version(trash.area + proto_len + 1, maj_ver, min_ver) == -1 || |
| 2715 | *maj_ver != PEER_MAJOR_VER || *min_ver > PEER_MINOR_VER) { |
| 2716 | appctx->st0 = PEER_SESS_ST_EXIT; |
| 2717 | appctx->st1 = PEER_SESS_SC_ERRVERSION; |
| 2718 | return -1; |
| 2719 | } |
| 2720 | |
| 2721 | return 1; |
| 2722 | } |
| 2723 | |
| 2724 | /* |
| 2725 | * Read and parse a second line of a "hello" peer protocol message. |
| 2726 | * Returns 0 if could not read a line, -1 if there was a read error or |
| 2727 | * the line is malformed, 1 if succeeded. |
| 2728 | */ |
| 2729 | static inline int peer_getline_host(struct appctx *appctx) |
| 2730 | { |
| 2731 | int reql; |
| 2732 | |
| 2733 | reql = peer_getline(appctx); |
| 2734 | if (!reql) |
| 2735 | return 0; |
| 2736 | |
| 2737 | if (reql < 0) |
| 2738 | return -1; |
| 2739 | |
| 2740 | /* test hostname match */ |
| 2741 | if (strcmp(localpeer, trash.area) != 0) { |
| 2742 | appctx->st0 = PEER_SESS_ST_EXIT; |
| 2743 | appctx->st1 = PEER_SESS_SC_ERRHOST; |
| 2744 | return -1; |
| 2745 | } |
| 2746 | |
| 2747 | return 1; |
| 2748 | } |
| 2749 | |
| 2750 | /* |
| 2751 | * Read and parse a last line of a "hello" peer protocol message. |
| 2752 | * Returns 0 if could not read a character, -1 if there was a read error or |
| 2753 | * the line is malformed, 1 if succeeded. |
| 2754 | * Set <curpeer> accordingly (the remote peer sending the "hello" message). |
| 2755 | */ |
| 2756 | static inline int peer_getline_last(struct appctx *appctx, struct peer **curpeer) |
| 2757 | { |
| 2758 | char *p; |
| 2759 | int reql; |
| 2760 | struct peer *peer; |
Willy Tarreau | 0698c80 | 2022-05-11 14:09:57 +0200 | [diff] [blame] | 2761 | struct stream *s = appctx_strm(appctx); |
Frédéric Lécaille | 3f0fb9d | 2019-01-25 08:30:29 +0100 | [diff] [blame] | 2762 | struct peers *peers = strm_fe(s)->parent; |
| 2763 | |
| 2764 | reql = peer_getline(appctx); |
| 2765 | if (!reql) |
| 2766 | return 0; |
| 2767 | |
| 2768 | if (reql < 0) |
| 2769 | return -1; |
| 2770 | |
| 2771 | /* parse line "<peer name> <pid> <relative_pid>" */ |
| 2772 | p = strchr(trash.area, ' '); |
| 2773 | if (!p) { |
| 2774 | appctx->st0 = PEER_SESS_ST_EXIT; |
| 2775 | appctx->st1 = PEER_SESS_SC_ERRPROTO; |
| 2776 | return -1; |
| 2777 | } |
| 2778 | *p = 0; |
| 2779 | |
| 2780 | /* lookup known peer */ |
| 2781 | for (peer = peers->remote; peer; peer = peer->next) { |
| 2782 | if (strcmp(peer->id, trash.area) == 0) |
| 2783 | break; |
| 2784 | } |
| 2785 | |
| 2786 | /* if unknown peer */ |
| 2787 | if (!peer) { |
| 2788 | appctx->st0 = PEER_SESS_ST_EXIT; |
| 2789 | appctx->st1 = PEER_SESS_SC_ERRPEER; |
| 2790 | return -1; |
| 2791 | } |
| 2792 | *curpeer = peer; |
| 2793 | |
| 2794 | return 1; |
| 2795 | } |
| 2796 | |
| 2797 | /* |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 2798 | * Init <peer> peer after having accepted it at peer protocol level. |
| 2799 | */ |
| 2800 | static inline void init_accepted_peer(struct peer *peer, struct peers *peers) |
| 2801 | { |
| 2802 | struct shared_table *st; |
| 2803 | |
Frédéric Lécaille | baeb919 | 2020-10-14 11:50:26 +0200 | [diff] [blame] | 2804 | 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] | 2805 | /* Register status code */ |
| 2806 | peer->statuscode = PEER_SESS_SC_SUCCESSCODE; |
Frédéric Lécaille | 3fc0fe0 | 2020-10-08 09:46:24 +0200 | [diff] [blame] | 2807 | peer->last_hdshk = now_ms; |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 2808 | |
| 2809 | /* Awake main task */ |
| 2810 | task_wakeup(peers->sync_task, TASK_WOKEN_MSG); |
| 2811 | |
| 2812 | /* Init confirm counter */ |
| 2813 | peer->confirm = 0; |
| 2814 | |
| 2815 | /* Init cursors */ |
| 2816 | for (st = peer->tables; st ; st = st->next) { |
| 2817 | st->last_get = st->last_acked = 0; |
Willy Tarreau | 7664222 | 2022-10-11 12:02:50 +0200 | [diff] [blame] | 2818 | HA_RWLOCK_WRLOCK(STK_TABLE_LOCK, &st->table->lock); |
Emeric Brun | d9729da | 2021-02-23 16:50:53 +0100 | [diff] [blame] | 2819 | /* if st->update appears to be in future it means |
| 2820 | * that the last acked value is very old and we |
| 2821 | * remain unconnected a too long time to use this |
Ilya Shipitsin | 4a689da | 2022-10-29 09:34:32 +0500 | [diff] [blame^] | 2822 | * acknowledgement as a reset. |
Emeric Brun | d9729da | 2021-02-23 16:50:53 +0100 | [diff] [blame] | 2823 | * We should update the protocol to be able to |
| 2824 | * signal the remote peer that it needs a full resync. |
| 2825 | * Here a partial fix consist to set st->update at |
| 2826 | * the max past value |
| 2827 | */ |
| 2828 | if ((int)(st->table->localupdate - st->update) < 0) |
| 2829 | st->update = st->table->localupdate + (2147483648U); |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 2830 | st->teaching_origin = st->last_pushed = st->update; |
Emeric Brun | 1a6b43e | 2021-04-20 14:43:46 +0200 | [diff] [blame] | 2831 | st->flags = 0; |
Emeric Brun | cc9cce9 | 2021-02-23 17:08:08 +0100 | [diff] [blame] | 2832 | if ((int)(st->last_pushed - st->table->commitupdate) > 0) |
| 2833 | st->table->commitupdate = st->last_pushed; |
Willy Tarreau | 7664222 | 2022-10-11 12:02:50 +0200 | [diff] [blame] | 2834 | HA_RWLOCK_WRUNLOCK(STK_TABLE_LOCK, &st->table->lock); |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 2835 | } |
| 2836 | |
| 2837 | /* reset teaching and learning flags to 0 */ |
| 2838 | peer->flags &= PEER_TEACH_RESET; |
| 2839 | peer->flags &= PEER_LEARN_RESET; |
| 2840 | |
| 2841 | /* if current peer is local */ |
| 2842 | if (peer->local) { |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 2843 | /* 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] | 2844 | if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL && |
| 2845 | !(peers->flags & PEERS_F_RESYNC_ASSIGN)) { |
| 2846 | /* assign local peer for a lesson, consider lesson already requested */ |
| 2847 | peer->flags |= PEER_F_LEARN_ASSIGN; |
| 2848 | peers->flags |= (PEERS_F_RESYNC_ASSIGN|PEERS_F_RESYNC_PROCESS); |
Emeric Brun | ccdfbae | 2021-04-28 12:59:35 +0200 | [diff] [blame] | 2849 | peers->flags |= PEERS_F_RESYNC_LOCALASSIGN; |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 2850 | } |
| 2851 | |
| 2852 | } |
| 2853 | else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE && |
| 2854 | !(peers->flags & PEERS_F_RESYNC_ASSIGN)) { |
| 2855 | /* assign peer for a lesson */ |
| 2856 | peer->flags |= PEER_F_LEARN_ASSIGN; |
| 2857 | peers->flags |= PEERS_F_RESYNC_ASSIGN; |
Emeric Brun | ccdfbae | 2021-04-28 12:59:35 +0200 | [diff] [blame] | 2858 | peers->flags |= PEERS_F_RESYNC_REMOTEASSIGN; |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 2859 | } |
| 2860 | } |
| 2861 | |
| 2862 | /* |
| 2863 | * Init <peer> peer after having connected it at peer protocol level. |
| 2864 | */ |
| 2865 | static inline void init_connected_peer(struct peer *peer, struct peers *peers) |
| 2866 | { |
| 2867 | struct shared_table *st; |
| 2868 | |
Frédéric Lécaille | baeb919 | 2020-10-14 11:50:26 +0200 | [diff] [blame] | 2869 | 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] | 2870 | /* Init cursors */ |
| 2871 | for (st = peer->tables; st ; st = st->next) { |
| 2872 | st->last_get = st->last_acked = 0; |
Willy Tarreau | 7664222 | 2022-10-11 12:02:50 +0200 | [diff] [blame] | 2873 | HA_RWLOCK_WRLOCK(STK_TABLE_LOCK, &st->table->lock); |
Emeric Brun | d9729da | 2021-02-23 16:50:53 +0100 | [diff] [blame] | 2874 | /* if st->update appears to be in future it means |
| 2875 | * that the last acked value is very old and we |
| 2876 | * remain unconnected a too long time to use this |
Ilya Shipitsin | 4a689da | 2022-10-29 09:34:32 +0500 | [diff] [blame^] | 2877 | * acknowledgement as a reset. |
Emeric Brun | d9729da | 2021-02-23 16:50:53 +0100 | [diff] [blame] | 2878 | * We should update the protocol to be able to |
| 2879 | * signal the remote peer that it needs a full resync. |
| 2880 | * Here a partial fix consist to set st->update at |
| 2881 | * the max past value. |
| 2882 | */ |
| 2883 | if ((int)(st->table->localupdate - st->update) < 0) |
| 2884 | st->update = st->table->localupdate + (2147483648U); |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 2885 | st->teaching_origin = st->last_pushed = st->update; |
Emeric Brun | 1a6b43e | 2021-04-20 14:43:46 +0200 | [diff] [blame] | 2886 | st->flags = 0; |
Emeric Brun | cc9cce9 | 2021-02-23 17:08:08 +0100 | [diff] [blame] | 2887 | if ((int)(st->last_pushed - st->table->commitupdate) > 0) |
| 2888 | st->table->commitupdate = st->last_pushed; |
Willy Tarreau | 7664222 | 2022-10-11 12:02:50 +0200 | [diff] [blame] | 2889 | HA_RWLOCK_WRUNLOCK(STK_TABLE_LOCK, &st->table->lock); |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 2890 | } |
| 2891 | |
| 2892 | /* Init confirm counter */ |
| 2893 | peer->confirm = 0; |
| 2894 | |
| 2895 | /* reset teaching and learning flags to 0 */ |
| 2896 | peer->flags &= PEER_TEACH_RESET; |
| 2897 | peer->flags &= PEER_LEARN_RESET; |
| 2898 | |
| 2899 | /* If current peer is local */ |
| 2900 | if (peer->local) { |
| 2901 | /* flag to start to teach lesson */ |
| 2902 | peer->flags |= PEER_F_TEACH_PROCESS; |
| 2903 | } |
| 2904 | else if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE && |
| 2905 | !(peers->flags & PEERS_F_RESYNC_ASSIGN)) { |
| 2906 | /* If peer is remote and resync from remote is needed, |
| 2907 | and no peer currently assigned */ |
| 2908 | |
| 2909 | /* assign peer for a lesson */ |
| 2910 | peer->flags |= PEER_F_LEARN_ASSIGN; |
| 2911 | peers->flags |= PEERS_F_RESYNC_ASSIGN; |
Emeric Brun | ccdfbae | 2021-04-28 12:59:35 +0200 | [diff] [blame] | 2912 | peers->flags |= PEERS_F_RESYNC_REMOTEASSIGN; |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 2913 | } |
| 2914 | } |
| 2915 | |
| 2916 | /* |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 2917 | * IO Handler to handle message exchange with a peer |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2918 | */ |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 2919 | static void peer_io_handler(struct appctx *appctx) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2920 | { |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 2921 | struct stconn *sc = appctx_sc(appctx); |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 2922 | struct stream *s = __sc_strm(sc); |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 2923 | struct peers *curpeers = strm_fe(s)->parent; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2924 | struct peer *curpeer = NULL; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2925 | int reql = 0; |
| 2926 | int repl = 0; |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 2927 | unsigned int maj_ver, min_ver; |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2928 | int prev_state; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2929 | |
Joseph Herlant | 82b2f54 | 2018-11-15 12:19:14 -0800 | [diff] [blame] | 2930 | /* Check if the input buffer is available. */ |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 2931 | if (sc_ib(sc)->size == 0) { |
| 2932 | sc_need_room(sc); |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 2933 | goto out; |
| 2934 | } |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 2935 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2936 | while (1) { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2937 | prev_state = appctx->st0; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2938 | switchstate: |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 2939 | maj_ver = min_ver = (unsigned int)-1; |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 2940 | switch(appctx->st0) { |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2941 | case PEER_SESS_ST_ACCEPT: |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2942 | prev_state = appctx->st0; |
Willy Tarreau | 455caef | 2022-05-05 20:16:16 +0200 | [diff] [blame] | 2943 | appctx->svcctx = NULL; |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2944 | appctx->st0 = PEER_SESS_ST_GETVERSION; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2945 | /* fall through */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2946 | case PEER_SESS_ST_GETVERSION: |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2947 | prev_state = appctx->st0; |
Frédéric Lécaille | 3f0fb9d | 2019-01-25 08:30:29 +0100 | [diff] [blame] | 2948 | reql = peer_getline_version(appctx, &maj_ver, &min_ver); |
| 2949 | if (reql <= 0) { |
| 2950 | if (!reql) |
| 2951 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2952 | goto switchstate; |
| 2953 | } |
| 2954 | |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2955 | appctx->st0 = PEER_SESS_ST_GETHOST; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2956 | /* fall through */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2957 | case PEER_SESS_ST_GETHOST: |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2958 | prev_state = appctx->st0; |
Frédéric Lécaille | 3f0fb9d | 2019-01-25 08:30:29 +0100 | [diff] [blame] | 2959 | reql = peer_getline_host(appctx); |
| 2960 | if (reql <= 0) { |
| 2961 | if (!reql) |
| 2962 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2963 | goto switchstate; |
| 2964 | } |
| 2965 | |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2966 | appctx->st0 = PEER_SESS_ST_GETPEER; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2967 | /* fall through */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 2968 | case PEER_SESS_ST_GETPEER: { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 2969 | prev_state = appctx->st0; |
Frédéric Lécaille | 3f0fb9d | 2019-01-25 08:30:29 +0100 | [diff] [blame] | 2970 | reql = peer_getline_last(appctx, &curpeer); |
| 2971 | if (reql <= 0) { |
| 2972 | if (!reql) |
| 2973 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2974 | goto switchstate; |
| 2975 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2976 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2977 | HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock); |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 2978 | if (curpeer->appctx && curpeer->appctx != appctx) { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2979 | if (curpeer->local) { |
| 2980 | /* Local connection, reply a retry */ |
| 2981 | appctx->st0 = PEER_SESS_ST_EXIT; |
| 2982 | appctx->st1 = PEER_SESS_SC_TRYAGAIN; |
| 2983 | goto switchstate; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2984 | } |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 2985 | |
| 2986 | /* we're killing a connection, we must apply a random delay before |
| 2987 | * retrying otherwise the other end will do the same and we can loop |
| 2988 | * for a while. |
| 2989 | */ |
Willy Tarreau | 52bf839 | 2020-03-08 00:42:37 +0100 | [diff] [blame] | 2990 | 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] | 2991 | peer_session_forceshutdown(curpeer); |
Frédéric Lécaille | baeb919 | 2020-10-14 11:50:26 +0200 | [diff] [blame] | 2992 | curpeer->heartbeat = TICK_ETERNITY; |
Frédéric Lécaille | 3fc0fe0 | 2020-10-08 09:46:24 +0200 | [diff] [blame] | 2993 | curpeer->coll++; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 2994 | } |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 2995 | if (maj_ver != (unsigned int)-1 && min_ver != (unsigned int)-1) { |
| 2996 | if (min_ver == PEER_DWNGRD_MINOR_VER) { |
| 2997 | curpeer->flags |= PEER_F_DWNGRD; |
| 2998 | } |
| 2999 | else { |
| 3000 | curpeer->flags &= ~PEER_F_DWNGRD; |
| 3001 | } |
| 3002 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3003 | curpeer->appctx = appctx; |
Frédéric Lécaille | baeb919 | 2020-10-14 11:50:26 +0200 | [diff] [blame] | 3004 | curpeer->flags |= PEER_F_ALIVE; |
Willy Tarreau | 455caef | 2022-05-05 20:16:16 +0200 | [diff] [blame] | 3005 | appctx->svcctx = curpeer; |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3006 | appctx->st0 = PEER_SESS_ST_SENDSUCCESS; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 3007 | _HA_ATOMIC_INC(&active_peers); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3008 | } |
Tim Duesterhus | 588b314 | 2020-05-29 14:35:51 +0200 | [diff] [blame] | 3009 | /* fall through */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3010 | case PEER_SESS_ST_SENDSUCCESS: { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 3011 | prev_state = appctx->st0; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3012 | if (!curpeer) { |
Willy Tarreau | 455caef | 2022-05-05 20:16:16 +0200 | [diff] [blame] | 3013 | curpeer = appctx->svcctx; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3014 | HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3015 | if (curpeer->appctx != appctx) { |
| 3016 | appctx->st0 = PEER_SESS_ST_END; |
| 3017 | goto switchstate; |
| 3018 | } |
| 3019 | } |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 3020 | |
| 3021 | repl = peer_send_status_successmsg(appctx); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3022 | if (repl <= 0) { |
| 3023 | if (repl == -1) |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 3024 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3025 | goto switchstate; |
| 3026 | } |
| 3027 | |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 3028 | init_accepted_peer(curpeer, curpeers); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3029 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3030 | /* switch to waiting message state */ |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 3031 | _HA_ATOMIC_INC(&connected_peers); |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3032 | appctx->st0 = PEER_SESS_ST_WAITMSG; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3033 | goto switchstate; |
| 3034 | } |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3035 | case PEER_SESS_ST_CONNECT: { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 3036 | prev_state = appctx->st0; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3037 | if (!curpeer) { |
Willy Tarreau | 455caef | 2022-05-05 20:16:16 +0200 | [diff] [blame] | 3038 | curpeer = appctx->svcctx; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3039 | HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3040 | if (curpeer->appctx != appctx) { |
| 3041 | appctx->st0 = PEER_SESS_ST_END; |
| 3042 | goto switchstate; |
| 3043 | } |
| 3044 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3045 | |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 3046 | repl = peer_send_hellomsg(appctx, curpeer); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3047 | if (repl <= 0) { |
| 3048 | if (repl == -1) |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 3049 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3050 | goto switchstate; |
| 3051 | } |
| 3052 | |
| 3053 | /* switch to the waiting statuscode state */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3054 | appctx->st0 = PEER_SESS_ST_GETSTATUS; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3055 | } |
Tim Duesterhus | 588b314 | 2020-05-29 14:35:51 +0200 | [diff] [blame] | 3056 | /* fall through */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3057 | case PEER_SESS_ST_GETSTATUS: { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 3058 | prev_state = appctx->st0; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3059 | if (!curpeer) { |
Willy Tarreau | 455caef | 2022-05-05 20:16:16 +0200 | [diff] [blame] | 3060 | curpeer = appctx->svcctx; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3061 | HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3062 | if (curpeer->appctx != appctx) { |
| 3063 | appctx->st0 = PEER_SESS_ST_END; |
| 3064 | goto switchstate; |
| 3065 | } |
| 3066 | } |
| 3067 | |
Christopher Faulet | 642170a | 2022-07-27 10:49:31 +0200 | [diff] [blame] | 3068 | if (sc_ic(sc)->flags & CF_WROTE_DATA) |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3069 | curpeer->statuscode = PEER_SESS_SC_CONNECTEDCODE; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3070 | |
Frédéric Lécaille | ce02557 | 2019-01-21 13:38:06 +0100 | [diff] [blame] | 3071 | reql = peer_getline(appctx); |
| 3072 | if (!reql) |
| 3073 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3074 | |
Frédéric Lécaille | ce02557 | 2019-01-21 13:38:06 +0100 | [diff] [blame] | 3075 | if (reql < 0) |
| 3076 | goto switchstate; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3077 | |
| 3078 | /* Register status code */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3079 | curpeer->statuscode = atoi(trash.area); |
Frédéric Lécaille | 3fc0fe0 | 2020-10-08 09:46:24 +0200 | [diff] [blame] | 3080 | curpeer->last_hdshk = now_ms; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3081 | |
| 3082 | /* Awake main task */ |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 3083 | task_wakeup(curpeers->sync_task, TASK_WOKEN_MSG); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3084 | |
| 3085 | /* If status code is success */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3086 | if (curpeer->statuscode == PEER_SESS_SC_SUCCESSCODE) { |
Frédéric Lécaille | 4b2fd9b | 2019-01-25 08:58:41 +0100 | [diff] [blame] | 3087 | init_connected_peer(curpeer, curpeers); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3088 | } |
| 3089 | else { |
Frédéric Lécaille | 523cc9e | 2016-10-12 17:30:30 +0200 | [diff] [blame] | 3090 | if (curpeer->statuscode == PEER_SESS_SC_ERRVERSION) |
| 3091 | curpeer->flags |= PEER_F_DWNGRD; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3092 | /* Status code is not success, abort */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3093 | appctx->st0 = PEER_SESS_ST_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3094 | goto switchstate; |
| 3095 | } |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 3096 | _HA_ATOMIC_INC(&connected_peers); |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3097 | appctx->st0 = PEER_SESS_ST_WAITMSG; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3098 | } |
Tim Duesterhus | 588b314 | 2020-05-29 14:35:51 +0200 | [diff] [blame] | 3099 | /* fall through */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3100 | case PEER_SESS_ST_WAITMSG: { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3101 | uint32_t msg_len = 0; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3102 | char *msg_cur = trash.area; |
| 3103 | char *msg_end = trash.area; |
Willy Tarreau | 1dfd4f1 | 2020-11-13 14:10:20 +0100 | [diff] [blame] | 3104 | unsigned char msg_head[7]; // 2 + 5 for varint32 |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3105 | int totl = 0; |
| 3106 | |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 3107 | prev_state = appctx->st0; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3108 | if (!curpeer) { |
Willy Tarreau | 455caef | 2022-05-05 20:16:16 +0200 | [diff] [blame] | 3109 | curpeer = appctx->svcctx; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3110 | HA_SPIN_LOCK(PEER_LOCK, &curpeer->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3111 | if (curpeer->appctx != appctx) { |
| 3112 | appctx->st0 = PEER_SESS_ST_END; |
| 3113 | goto switchstate; |
| 3114 | } |
| 3115 | } |
| 3116 | |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 3117 | reql = peer_recv_msg(appctx, (char *)msg_head, sizeof msg_head, &msg_len, &totl); |
| 3118 | if (reql <= 0) { |
| 3119 | if (reql == -1) |
| 3120 | goto switchstate; |
Frédéric Lécaille | be825e5 | 2019-01-24 18:28:44 +0100 | [diff] [blame] | 3121 | goto send_msgs; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3122 | } |
Willy Tarreau | 86a446e | 2013-11-25 23:02:37 +0100 | [diff] [blame] | 3123 | |
Frédéric Lécaille | 95203f2 | 2019-01-23 19:38:11 +0100 | [diff] [blame] | 3124 | msg_end += msg_len; |
Frédéric Lécaille | 444243c | 2019-01-24 15:40:11 +0100 | [diff] [blame] | 3125 | 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] | 3126 | goto switchstate; |
Frédéric Lécaille | be825e5 | 2019-01-24 18:28:44 +0100 | [diff] [blame] | 3127 | |
Frédéric Lécaille | 045e0d4 | 2019-03-21 11:12:32 +0100 | [diff] [blame] | 3128 | curpeer->flags |= PEER_F_ALIVE; |
| 3129 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3130 | /* skip consumed message */ |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 3131 | co_skip(sc_oc(sc), totl); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3132 | /* loop on that state to peek next message */ |
Willy Tarreau | 72d6c16 | 2013-04-11 16:14:13 +0200 | [diff] [blame] | 3133 | goto switchstate; |
| 3134 | |
Frédéric Lécaille | be825e5 | 2019-01-24 18:28:44 +0100 | [diff] [blame] | 3135 | send_msgs: |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 3136 | if (curpeer->flags & PEER_F_HEARTBEAT) { |
| 3137 | curpeer->flags &= ~PEER_F_HEARTBEAT; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 3138 | repl = peer_send_heartbeatmsg(appctx, curpeer, curpeers); |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 3139 | if (repl <= 0) { |
| 3140 | if (repl == -1) |
| 3141 | goto out; |
| 3142 | goto switchstate; |
| 3143 | } |
Frédéric Lécaille | 33cab3c | 2019-11-06 11:51:26 +0100 | [diff] [blame] | 3144 | curpeer->tx_hbt++; |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 3145 | } |
Frédéric Lécaille | be825e5 | 2019-01-24 18:28:44 +0100 | [diff] [blame] | 3146 | /* we get here when a peer_recv_msg() returns 0 in reql */ |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 3147 | repl = peer_send_msgs(appctx, curpeer, curpeers); |
Frédéric Lécaille | 25e1d5e | 2019-01-24 17:33:48 +0100 | [diff] [blame] | 3148 | if (repl <= 0) { |
| 3149 | if (repl == -1) |
| 3150 | goto out; |
| 3151 | goto switchstate; |
Emeric Brun | 597b26e | 2016-08-12 11:23:31 +0200 | [diff] [blame] | 3152 | } |
| 3153 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3154 | /* noting more to do */ |
| 3155 | goto out; |
| 3156 | } |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3157 | case PEER_SESS_ST_EXIT: |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 3158 | if (prev_state == PEER_SESS_ST_WAITMSG) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 3159 | _HA_ATOMIC_DEC(&connected_peers); |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 3160 | prev_state = appctx->st0; |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 3161 | if (peer_send_status_errormsg(appctx) == -1) |
| 3162 | goto out; |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3163 | appctx->st0 = PEER_SESS_ST_END; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3164 | goto switchstate; |
| 3165 | case PEER_SESS_ST_ERRSIZE: { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 3166 | if (prev_state == PEER_SESS_ST_WAITMSG) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 3167 | _HA_ATOMIC_DEC(&connected_peers); |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 3168 | prev_state = appctx->st0; |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 3169 | if (peer_send_error_size_limitmsg(appctx) == -1) |
| 3170 | goto out; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3171 | appctx->st0 = PEER_SESS_ST_END; |
| 3172 | goto switchstate; |
| 3173 | } |
| 3174 | case PEER_SESS_ST_ERRPROTO: { |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 3175 | TRACE_PROTO("protocol error", PEERS_EV_PROTOERR, |
| 3176 | NULL, curpeer, &prev_state); |
Frédéric Lécaille | ec1c10b | 2019-11-07 15:22:33 +0100 | [diff] [blame] | 3177 | if (curpeer) |
| 3178 | curpeer->proto_err++; |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 3179 | if (prev_state == PEER_SESS_ST_WAITMSG) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 3180 | _HA_ATOMIC_DEC(&connected_peers); |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 3181 | prev_state = appctx->st0; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 3182 | if (peer_send_error_protomsg(appctx) == -1) { |
| 3183 | TRACE_PROTO("could not send error message", PEERS_EV_PROTOERR); |
Frédéric Lécaille | 7d0ceee | 2019-01-24 14:24:05 +0100 | [diff] [blame] | 3184 | goto out; |
Frédéric Lécaille | da2b084 | 2021-01-15 16:21:28 +0100 | [diff] [blame] | 3185 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3186 | appctx->st0 = PEER_SESS_ST_END; |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 3187 | prev_state = appctx->st0; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3188 | } |
Tim Duesterhus | 588b314 | 2020-05-29 14:35:51 +0200 | [diff] [blame] | 3189 | /* fall through */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3190 | case PEER_SESS_ST_END: { |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 3191 | if (prev_state == PEER_SESS_ST_WAITMSG) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 3192 | _HA_ATOMIC_DEC(&connected_peers); |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 3193 | prev_state = appctx->st0; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3194 | if (curpeer) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3195 | HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3196 | curpeer = NULL; |
| 3197 | } |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 3198 | sc_shutw(sc); |
| 3199 | sc_shutr(sc); |
| 3200 | sc_ic(sc)->flags |= CF_READ_NULL; |
Willy Tarreau | 828824a | 2015-04-19 17:20:03 +0200 | [diff] [blame] | 3201 | goto out; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3202 | } |
| 3203 | } |
| 3204 | } |
| 3205 | out: |
Willy Tarreau | da30490 | 2022-05-27 10:44:04 +0200 | [diff] [blame] | 3206 | sc_oc(sc)->flags |= CF_READ_DONTWAIT; |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3207 | |
| 3208 | if (curpeer) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3209 | HA_SPIN_UNLOCK(PEER_LOCK, &curpeer->lock); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3210 | return; |
| 3211 | } |
| 3212 | |
Willy Tarreau | 3057645 | 2015-04-13 13:50:30 +0200 | [diff] [blame] | 3213 | static struct applet peer_applet = { |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 3214 | .obj_type = OBJ_TYPE_APPLET, |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 3215 | .name = "<PEER>", /* used for logging */ |
| 3216 | .fct = peer_io_handler, |
Christopher Faulet | 6712dc6 | 2022-05-12 15:36:11 +0200 | [diff] [blame] | 3217 | .init = peer_session_init, |
Aman Gupta | 9a13e84 | 2012-04-02 18:57:53 -0700 | [diff] [blame] | 3218 | .release = peer_session_release, |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 3219 | }; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3220 | |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 3221 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3222 | /* |
| 3223 | * Use this function to force a close of a peer session |
| 3224 | */ |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 3225 | static void peer_session_forceshutdown(struct peer *peer) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3226 | { |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 3227 | struct appctx *appctx = peer->appctx; |
| 3228 | |
Frédéric Lécaille | 5df1190 | 2017-06-13 16:39:57 +0200 | [diff] [blame] | 3229 | /* Note that the peer sessions which have just been created |
| 3230 | * (->st0 == PEER_SESS_ST_CONNECT) must not |
| 3231 | * be shutdown, if not, the TCP session will never be closed |
| 3232 | * and stay in CLOSE_WAIT state after having been closed by |
| 3233 | * the remote side. |
| 3234 | */ |
| 3235 | if (!appctx || appctx->st0 == PEER_SESS_ST_CONNECT) |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3236 | return; |
| 3237 | |
Willy Tarreau | 81bc3b0 | 2016-10-31 17:37:39 +0100 | [diff] [blame] | 3238 | if (appctx->applet != &peer_applet) |
| 3239 | return; |
| 3240 | |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 3241 | __peer_session_deinit(peer); |
| 3242 | |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3243 | appctx->st0 = PEER_SESS_ST_END; |
Willy Tarreau | 78c0c50 | 2016-10-31 17:32:20 +0100 | [diff] [blame] | 3244 | appctx_wakeup(appctx); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3245 | } |
| 3246 | |
Willy Tarreau | 91d9628 | 2015-03-13 15:47:26 +0100 | [diff] [blame] | 3247 | /* Pre-configures a peers frontend to accept incoming connections */ |
| 3248 | void peers_setup_frontend(struct proxy *fe) |
| 3249 | { |
| 3250 | fe->last_change = now.tv_sec; |
Frédéric Lécaille | c06b5d4 | 2018-04-26 10:06:41 +0200 | [diff] [blame] | 3251 | fe->cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | a389c9e | 2020-10-07 17:49:42 +0200 | [diff] [blame] | 3252 | fe->mode = PR_MODE_PEERS; |
Willy Tarreau | 91d9628 | 2015-03-13 15:47:26 +0100 | [diff] [blame] | 3253 | fe->maxconn = 0; |
| 3254 | fe->conn_retries = CONN_RETRIES; |
Christopher Faulet | 13db4bd | 2022-08-29 11:32:26 +0200 | [diff] [blame] | 3255 | fe->timeout.connect = MS_TO_TICKS(1000); |
Willy Tarreau | 91d9628 | 2015-03-13 15:47:26 +0100 | [diff] [blame] | 3256 | fe->timeout.client = MS_TO_TICKS(5000); |
Christopher Faulet | 13db4bd | 2022-08-29 11:32:26 +0200 | [diff] [blame] | 3257 | fe->timeout.server = MS_TO_TICKS(5000); |
Willy Tarreau | d1d48d4 | 2015-03-13 16:15:46 +0100 | [diff] [blame] | 3258 | fe->accept = frontend_accept; |
Willy Tarreau | f87ab94 | 2015-03-13 15:55:16 +0100 | [diff] [blame] | 3259 | fe->default_target = &peer_applet.obj_type; |
Willy Tarreau | 91d9628 | 2015-03-13 15:47:26 +0100 | [diff] [blame] | 3260 | fe->options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC; |
| 3261 | } |
| 3262 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3263 | /* |
Willy Tarreau | bd55e31 | 2010-11-11 10:55:09 +0100 | [diff] [blame] | 3264 | * Create a new peer session in assigned state (connect will start automatically) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3265 | */ |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 3266 | static struct appctx *peer_session_create(struct peers *peers, struct peer *peer) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3267 | { |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3268 | struct appctx *appctx; |
Maciej Zdeb | 34e4085 | 2022-05-16 17:27:28 +0200 | [diff] [blame] | 3269 | unsigned int thr = 0; |
| 3270 | int idx; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3271 | |
Frédéric Lécaille | 2b0ba54 | 2021-01-18 15:14:39 +0100 | [diff] [blame] | 3272 | peer->new_conn++; |
Christopher Faulet | ab4b094 | 2022-07-26 19:14:36 +0200 | [diff] [blame] | 3273 | peer->reconnect = tick_add(now_ms, (stopping ? MS_TO_TICKS(PEER_LOCAL_RECONNECT_TIMEOUT) : MS_TO_TICKS(PEER_RECONNECT_TIMEOUT))); |
Frédéric Lécaille | baeb919 | 2020-10-14 11:50:26 +0200 | [diff] [blame] | 3274 | peer->heartbeat = TICK_ETERNITY; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3275 | peer->statuscode = PEER_SESS_SC_CONNECTCODE; |
Frédéric Lécaille | 3fc0fe0 | 2020-10-08 09:46:24 +0200 | [diff] [blame] | 3276 | peer->last_hdshk = now_ms; |
Willy Tarreau | d990baf | 2015-04-05 00:32:03 +0200 | [diff] [blame] | 3277 | |
Maciej Zdeb | 34e4085 | 2022-05-16 17:27:28 +0200 | [diff] [blame] | 3278 | for (idx = 0; idx < global.nbthread; idx++) |
| 3279 | thr = peers->applet_count[idx] < peers->applet_count[thr] ? idx : thr; |
| 3280 | appctx = appctx_new_on(&peer_applet, NULL, thr); |
Christopher Faulet | 2479e5f | 2022-01-19 14:50:11 +0100 | [diff] [blame] | 3281 | if (!appctx) |
Christopher Faulet | a9e8b39 | 2022-03-23 11:01:09 +0100 | [diff] [blame] | 3282 | goto out_close; |
Willy Tarreau | 455caef | 2022-05-05 20:16:16 +0200 | [diff] [blame] | 3283 | appctx->svcctx = (void *)peer; |
Willy Tarreau | d990baf | 2015-04-05 00:32:03 +0200 | [diff] [blame] | 3284 | |
Christopher Faulet | 6712dc6 | 2022-05-12 15:36:11 +0200 | [diff] [blame] | 3285 | appctx->st0 = PEER_SESS_ST_CONNECT; |
| 3286 | peer->appctx = appctx; |
Christopher Faulet | a9e8b39 | 2022-03-23 11:01:09 +0100 | [diff] [blame] | 3287 | |
Maciej Zdeb | d01be2a | 2022-05-16 17:26:20 +0200 | [diff] [blame] | 3288 | HA_ATOMIC_INC(&peers->applet_count[thr]); |
Maciej Zdeb | 34e4085 | 2022-05-16 17:27:28 +0200 | [diff] [blame] | 3289 | appctx_wakeup(appctx); |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 3290 | return appctx; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3291 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3292 | out_close: |
Willy Tarreau | b21d08e | 2016-10-31 17:46:57 +0100 | [diff] [blame] | 3293 | return NULL; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3294 | } |
| 3295 | |
| 3296 | /* |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 3297 | * Task processing function to manage re-connect, peer session |
Willy Tarreau | f6c8842 | 2021-01-29 12:38:42 +0100 | [diff] [blame] | 3298 | * tasks wakeup on local update and heartbeat. Let's keep it exported so that it |
| 3299 | * resolves in stack traces and "show tasks". |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3300 | */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 3301 | struct task *process_peer_sync(struct task * task, void *context, unsigned int state) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3302 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 3303 | struct peers *peers = context; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3304 | struct peer *ps; |
| 3305 | struct shared_table *st; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3306 | |
| 3307 | task->expire = TICK_ETERNITY; |
| 3308 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3309 | if (!peers->peers_fe) { |
Willy Tarreau | 46dc1ca | 2015-05-01 18:32:13 +0200 | [diff] [blame] | 3310 | /* this one was never started, kill it */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3311 | signal_unregister_handler(peers->sighandler); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 3312 | task_destroy(peers->sync_task); |
Willy Tarreau | 37bb7be | 2015-09-21 15:24:58 +0200 | [diff] [blame] | 3313 | peers->sync_task = NULL; |
Willy Tarreau | 46dc1ca | 2015-05-01 18:32:13 +0200 | [diff] [blame] | 3314 | return NULL; |
| 3315 | } |
| 3316 | |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3317 | /* Acquire lock for all peers of the section */ |
| 3318 | for (ps = peers->remote; ps; ps = ps->next) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3319 | HA_SPIN_LOCK(PEER_LOCK, &ps->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3320 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3321 | if (!stopping) { |
| 3322 | /* Normal case (not soft stop)*/ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3323 | |
Emeric Brun | 2c4ab41 | 2021-04-21 16:06:35 +0200 | [diff] [blame] | 3324 | /* resync timeout set to TICK_ETERNITY means we just start |
| 3325 | * a new process and timer was not initialized. |
| 3326 | * We must arm this timer to switch to a request to a remote |
| 3327 | * node if incoming connection from old local process never |
| 3328 | * comes. |
| 3329 | */ |
| 3330 | if (peers->resync_timeout == TICK_ETERNITY) |
| 3331 | peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT)); |
| 3332 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3333 | if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMLOCAL) && |
| 3334 | (!nb_oldpids || tick_is_expired(peers->resync_timeout, now_ms)) && |
| 3335 | !(peers->flags & PEERS_F_RESYNC_ASSIGN)) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3336 | /* Resync from local peer needed |
| 3337 | no peer was assigned for the lesson |
| 3338 | and no old local peer found |
| 3339 | or resync timeout expire */ |
| 3340 | |
| 3341 | /* flag no more resync from local, to try resync from remotes */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3342 | peers->flags |= PEERS_F_RESYNC_LOCAL; |
Emeric Brun | ccdfbae | 2021-04-28 12:59:35 +0200 | [diff] [blame] | 3343 | peers->flags |= PEERS_F_RESYNC_LOCALTIMEOUT; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3344 | |
| 3345 | /* reschedule a resync */ |
Frédéric Lécaille | 54bff83 | 2019-03-26 10:25:20 +0100 | [diff] [blame] | 3346 | 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] | 3347 | } |
| 3348 | |
| 3349 | /* For each session */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3350 | for (ps = peers->remote; ps; ps = ps->next) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3351 | /* For each remote peers */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3352 | if (!ps->local) { |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 3353 | if (!ps->appctx) { |
| 3354 | /* no active peer connection */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3355 | if (ps->statuscode == 0 || |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3356 | ((ps->statuscode == PEER_SESS_SC_CONNECTCODE || |
Willy Tarreau | b4e34da | 2015-05-20 10:39:04 +0200 | [diff] [blame] | 3357 | ps->statuscode == PEER_SESS_SC_SUCCESSCODE || |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3358 | ps->statuscode == PEER_SESS_SC_CONNECTEDCODE) && |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3359 | tick_is_expired(ps->reconnect, now_ms))) { |
| 3360 | /* connection never tried |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 3361 | * or previous peer connection established with success |
| 3362 | * or previous peer connection failed while connecting |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3363 | * and reconnection timer is expired */ |
| 3364 | |
| 3365 | /* retry a connect */ |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 3366 | ps->appctx = peer_session_create(peers, ps); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3367 | } |
Willy Tarreau | b4e34da | 2015-05-20 10:39:04 +0200 | [diff] [blame] | 3368 | else if (!tick_is_expired(ps->reconnect, now_ms)) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3369 | /* If previous session failed during connection |
| 3370 | * but reconnection timer is not expired */ |
| 3371 | |
| 3372 | /* reschedule task for reconnect */ |
| 3373 | task->expire = tick_first(task->expire, ps->reconnect); |
| 3374 | } |
| 3375 | /* else do nothing */ |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 3376 | } /* !ps->appctx */ |
Willy Tarreau | e4d927a | 2013-12-01 12:47:35 +0100 | [diff] [blame] | 3377 | else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE) { |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 3378 | /* current peer connection is active and established */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3379 | if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) && |
| 3380 | !(peers->flags & PEERS_F_RESYNC_ASSIGN) && |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3381 | !(ps->flags & PEER_F_LEARN_NOTUP2DATE)) { |
| 3382 | /* Resync from a remote is needed |
| 3383 | * and no peer was assigned for lesson |
| 3384 | * and current peer may be up2date */ |
| 3385 | |
| 3386 | /* assign peer for the lesson */ |
| 3387 | ps->flags |= PEER_F_LEARN_ASSIGN; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3388 | peers->flags |= PEERS_F_RESYNC_ASSIGN; |
Emeric Brun | ccdfbae | 2021-04-28 12:59:35 +0200 | [diff] [blame] | 3389 | peers->flags |= PEERS_F_RESYNC_REMOTEASSIGN; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3390 | |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 3391 | /* wake up peer handler to handle a request of resync */ |
Willy Tarreau | e5843b3 | 2015-04-27 18:40:14 +0200 | [diff] [blame] | 3392 | appctx_wakeup(ps->appctx); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3393 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3394 | else { |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 3395 | int update_to_push = 0; |
| 3396 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3397 | /* Awake session if there is data to push */ |
| 3398 | for (st = ps->tables; st ; st = st->next) { |
Emeric Brun | 8e7a13e | 2021-04-28 11:48:15 +0200 | [diff] [blame] | 3399 | if (st->last_pushed != st->table->localupdate) { |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 3400 | /* wake up the peer handler to push local updates */ |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 3401 | update_to_push = 1; |
Frédéric Lécaille | 045e0d4 | 2019-03-21 11:12:32 +0100 | [diff] [blame] | 3402 | /* There is no need to send a heartbeat message |
| 3403 | * when some updates must be pushed. The remote |
| 3404 | * peer will consider <ps> peer as alive when it will |
| 3405 | * receive these updates. |
| 3406 | */ |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 3407 | ps->flags &= ~PEER_F_HEARTBEAT; |
Frédéric Lécaille | 045e0d4 | 2019-03-21 11:12:32 +0100 | [diff] [blame] | 3408 | /* Re-schedule another one later. */ |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 3409 | 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] | 3410 | /* We are going to send updates, let's ensure we will |
| 3411 | * come back to send heartbeat messages or to reconnect. |
| 3412 | */ |
| 3413 | task->expire = tick_first(ps->reconnect, ps->heartbeat); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3414 | appctx_wakeup(ps->appctx); |
| 3415 | break; |
| 3416 | } |
| 3417 | } |
Frédéric Lécaille | 045e0d4 | 2019-03-21 11:12:32 +0100 | [diff] [blame] | 3418 | /* When there are updates to send we do not reconnect |
| 3419 | * and do not send heartbeat message either. |
| 3420 | */ |
| 3421 | if (!update_to_push) { |
| 3422 | if (tick_is_expired(ps->reconnect, now_ms)) { |
| 3423 | if (ps->flags & PEER_F_ALIVE) { |
| 3424 | /* This peer was alive during a 'reconnect' period. |
| 3425 | * Flag it as not alive again for the next period. |
| 3426 | */ |
| 3427 | ps->flags &= ~PEER_F_ALIVE; |
Frédéric Lécaille | 54bff83 | 2019-03-26 10:25:20 +0100 | [diff] [blame] | 3428 | 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] | 3429 | } |
| 3430 | else { |
Willy Tarreau | 52bf839 | 2020-03-08 00:42:37 +0100 | [diff] [blame] | 3431 | 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] | 3432 | ps->heartbeat = TICK_ETERNITY; |
Emeric Brun | 9ef2ad7 | 2019-04-02 17:22:01 +0200 | [diff] [blame] | 3433 | peer_session_forceshutdown(ps); |
Frédéric Lécaille | ec1c10b | 2019-11-07 15:22:33 +0100 | [diff] [blame] | 3434 | ps->no_hbt++; |
Frédéric Lécaille | 045e0d4 | 2019-03-21 11:12:32 +0100 | [diff] [blame] | 3435 | } |
| 3436 | } |
| 3437 | else if (tick_is_expired(ps->heartbeat, now_ms)) { |
| 3438 | ps->heartbeat = tick_add(now_ms, MS_TO_TICKS(PEER_HEARTBEAT_TIMEOUT)); |
| 3439 | ps->flags |= PEER_F_HEARTBEAT; |
| 3440 | appctx_wakeup(ps->appctx); |
| 3441 | } |
Frédéric Lécaille | b7405c1 | 2019-03-27 14:32:39 +0100 | [diff] [blame] | 3442 | task->expire = tick_first(ps->reconnect, ps->heartbeat); |
Frédéric Lécaille | 645635d | 2019-02-11 17:49:39 +0100 | [diff] [blame] | 3443 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3444 | } |
| 3445 | /* else do nothing */ |
| 3446 | } /* SUCCESSCODE */ |
| 3447 | } /* !ps->peer->local */ |
| 3448 | } /* for */ |
| 3449 | |
| 3450 | /* Resync from remotes expired: consider resync is finished */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3451 | if (((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FROMREMOTE) && |
| 3452 | !(peers->flags & PEERS_F_RESYNC_ASSIGN) && |
| 3453 | tick_is_expired(peers->resync_timeout, now_ms)) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3454 | /* Resync from remote peer needed |
| 3455 | * no peer was assigned for the lesson |
| 3456 | * and resync timeout expire */ |
| 3457 | |
| 3458 | /* flag no more resync from remote, consider resync is finished */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3459 | peers->flags |= PEERS_F_RESYNC_REMOTE; |
Emeric Brun | ccdfbae | 2021-04-28 12:59:35 +0200 | [diff] [blame] | 3460 | peers->flags |= PEERS_F_RESYNC_REMOTETIMEOUT; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3461 | } |
| 3462 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3463 | if ((peers->flags & PEERS_RESYNC_STATEMASK) != PEERS_RESYNC_FINISHED) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3464 | /* Resync not finished*/ |
Frédéric Lécaille | 5d6e5f8 | 2017-05-29 13:47:16 +0200 | [diff] [blame] | 3465 | /* reschedule task to resync timeout if not expired, to ended resync if needed */ |
| 3466 | if (!tick_is_expired(peers->resync_timeout, now_ms)) |
| 3467 | task->expire = tick_first(task->expire, peers->resync_timeout); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3468 | } |
| 3469 | } /* !stopping */ |
| 3470 | else { |
| 3471 | /* soft stop case */ |
Willy Tarreau | 086735a | 2018-11-05 15:09:47 +0100 | [diff] [blame] | 3472 | if (state & TASK_WOKEN_SIGNAL) { |
Joseph Herlant | 82b2f54 | 2018-11-15 12:19:14 -0800 | [diff] [blame] | 3473 | /* We've just received the signal */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3474 | if (!(peers->flags & PEERS_F_DONOTSTOP)) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3475 | /* add DO NOT STOP flag if not present */ |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 3476 | _HA_ATOMIC_INC(&jobs); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3477 | peers->flags |= PEERS_F_DONOTSTOP; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3478 | |
Emeric Brun | cbfe5eb | 2021-04-22 18:20:37 +0200 | [diff] [blame] | 3479 | /* disconnect all connected peers to process a local sync |
| 3480 | * this must be done only the first time we are switching |
| 3481 | * in stopping state |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3482 | */ |
Emeric Brun | cbfe5eb | 2021-04-22 18:20:37 +0200 | [diff] [blame] | 3483 | for (ps = peers->remote; ps; ps = ps->next) { |
| 3484 | /* we're killing a connection, we must apply a random delay before |
| 3485 | * retrying otherwise the other end will do the same and we can loop |
| 3486 | * for a while. |
| 3487 | */ |
| 3488 | ps->reconnect = tick_add(now_ms, MS_TO_TICKS(50 + ha_random() % 2000)); |
| 3489 | if (ps->appctx) { |
| 3490 | peer_session_forceshutdown(ps); |
| 3491 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3492 | } |
Christopher Faulet | 160fff6 | 2022-07-26 19:19:18 +0200 | [diff] [blame] | 3493 | |
| 3494 | /* Set resync timeout for the local peer and request a immediate reconnect */ |
| 3495 | peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT)); |
| 3496 | peers->local->reconnect = now_ms; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3497 | } |
| 3498 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3499 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3500 | ps = peers->local; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3501 | if (ps->flags & PEER_F_TEACH_COMPLETE) { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3502 | if (peers->flags & PEERS_F_DONOTSTOP) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3503 | /* resync of new process was complete, current process can die now */ |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 3504 | _HA_ATOMIC_DEC(&jobs); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3505 | peers->flags &= ~PEERS_F_DONOTSTOP; |
| 3506 | for (st = ps->tables; st ; st = st->next) |
Emeric Brun | 2cc201f | 2021-04-23 12:21:26 +0200 | [diff] [blame] | 3507 | HA_ATOMIC_DEC(&st->table->refcnt); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3508 | } |
| 3509 | } |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 3510 | else if (!ps->appctx) { |
Christopher Faulet | 19a82b9 | 2022-08-26 18:40:46 +0200 | [diff] [blame] | 3511 | /* Re-arm resync timeout if necessary */ |
| 3512 | if (!tick_isset(peers->resync_timeout)) |
| 3513 | peers->resync_timeout = tick_add(now_ms, MS_TO_TICKS(PEER_RESYNC_TIMEOUT)); |
| 3514 | |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 3515 | /* If there's no active peer connection */ |
Christopher Faulet | b372f16 | 2022-08-26 18:46:16 +0200 | [diff] [blame] | 3516 | if ((peers->flags & PEERS_RESYNC_STATEMASK) == PEERS_RESYNC_FINISHED && |
| 3517 | !tick_is_expired(peers->resync_timeout, now_ms) && |
Christopher Faulet | 160fff6 | 2022-07-26 19:19:18 +0200 | [diff] [blame] | 3518 | (ps->statuscode == 0 || |
| 3519 | ps->statuscode == PEER_SESS_SC_SUCCESSCODE || |
| 3520 | ps->statuscode == PEER_SESS_SC_CONNECTEDCODE || |
| 3521 | ps->statuscode == PEER_SESS_SC_TRYAGAIN)) { |
Christopher Faulet | b372f16 | 2022-08-26 18:46:16 +0200 | [diff] [blame] | 3522 | /* The resync is finished for the local peer and |
| 3523 | * the resync timeout is not expired and |
Christopher Faulet | 160fff6 | 2022-07-26 19:19:18 +0200 | [diff] [blame] | 3524 | * connection never tried |
| 3525 | * or previous peer connection was successfully established |
| 3526 | * or previous tcp connect succeeded but init state incomplete |
| 3527 | * or during previous connect, peer replies a try again statuscode */ |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3528 | |
Christopher Faulet | 160fff6 | 2022-07-26 19:19:18 +0200 | [diff] [blame] | 3529 | if (!tick_is_expired(ps->reconnect, now_ms)) { |
| 3530 | /* reconnection timer is not expired. reschedule task for reconnect */ |
| 3531 | task->expire = tick_first(task->expire, ps->reconnect); |
| 3532 | } |
| 3533 | else { |
| 3534 | /* connect to the local peer if we must push a local sync */ |
| 3535 | if (peers->flags & PEERS_F_DONOTSTOP) { |
| 3536 | peer_session_create(peers, ps); |
| 3537 | } |
Emeric Brun | cbfe5eb | 2021-04-22 18:20:37 +0200 | [diff] [blame] | 3538 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3539 | } |
| 3540 | else { |
| 3541 | /* Other error cases */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3542 | if (peers->flags & PEERS_F_DONOTSTOP) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3543 | /* unable to resync new process, current process can die now */ |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 3544 | _HA_ATOMIC_DEC(&jobs); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3545 | peers->flags &= ~PEERS_F_DONOTSTOP; |
| 3546 | for (st = ps->tables; st ; st = st->next) |
Emeric Brun | 2cc201f | 2021-04-23 12:21:26 +0200 | [diff] [blame] | 3547 | HA_ATOMIC_DEC(&st->table->refcnt); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3548 | } |
| 3549 | } |
| 3550 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3551 | else if (ps->statuscode == PEER_SESS_SC_SUCCESSCODE ) { |
Christopher Faulet | 19a82b9 | 2022-08-26 18:40:46 +0200 | [diff] [blame] | 3552 | /* Reset resync timeout during a resync */ |
| 3553 | peers->resync_timeout = TICK_ETERNITY; |
| 3554 | |
Willy Tarreau | 9df94c2 | 2016-10-31 18:42:52 +0100 | [diff] [blame] | 3555 | /* current peer connection is active and established |
| 3556 | * wake up all peer handlers to push remaining local updates */ |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3557 | for (st = ps->tables; st ; st = st->next) { |
Emeric Brun | 8e7a13e | 2021-04-28 11:48:15 +0200 | [diff] [blame] | 3558 | if (st->last_pushed != st->table->localupdate) { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3559 | appctx_wakeup(ps->appctx); |
| 3560 | break; |
| 3561 | } |
| 3562 | } |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3563 | } |
| 3564 | } /* stopping */ |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3565 | |
| 3566 | /* Release lock for all peers of the section */ |
| 3567 | for (ps = peers->remote; ps; ps = ps->next) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3568 | HA_SPIN_UNLOCK(PEER_LOCK, &ps->lock); |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 3569 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3570 | /* Wakeup for re-connect */ |
| 3571 | return task; |
| 3572 | } |
| 3573 | |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3574 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3575 | /* |
Willy Tarreau | d944344 | 2018-10-15 11:18:03 +0200 | [diff] [blame] | 3576 | * returns 0 in case of error. |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3577 | */ |
Willy Tarreau | d944344 | 2018-10-15 11:18:03 +0200 | [diff] [blame] | 3578 | int peers_init_sync(struct peers *peers) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3579 | { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3580 | struct peer * curpeer; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3581 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3582 | for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3583 | peers->peers_fe->maxconn += 3; |
| 3584 | } |
| 3585 | |
Willy Tarreau | beeabf5 | 2021-10-01 18:23:30 +0200 | [diff] [blame] | 3586 | peers->sync_task = task_new_anywhere(); |
Willy Tarreau | d944344 | 2018-10-15 11:18:03 +0200 | [diff] [blame] | 3587 | if (!peers->sync_task) |
| 3588 | return 0; |
| 3589 | |
Maciej Zdeb | d01be2a | 2022-05-16 17:26:20 +0200 | [diff] [blame] | 3590 | memset(peers->applet_count, 0, sizeof(peers->applet_count)); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3591 | peers->sync_task->process = process_peer_sync; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3592 | peers->sync_task->context = (void *)peers; |
| 3593 | peers->sighandler = signal_register_task(0, peers->sync_task, 0); |
| 3594 | task_wakeup(peers->sync_task, TASK_WOKEN_INIT); |
Willy Tarreau | d944344 | 2018-10-15 11:18:03 +0200 | [diff] [blame] | 3595 | return 1; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3596 | } |
| 3597 | |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3598 | /* |
| 3599 | * Allocate a cache a dictionary entries used upon transmission. |
| 3600 | */ |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3601 | 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] | 3602 | { |
| 3603 | struct dcache_tx *d; |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3604 | struct ebpt_node *entries; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3605 | |
| 3606 | d = malloc(sizeof *d); |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3607 | entries = calloc(max_entries, sizeof *entries); |
| 3608 | if (!d || !entries) |
| 3609 | goto err; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3610 | |
| 3611 | d->lru_key = 0; |
Frédéric Lécaille | b65717f | 2019-06-07 14:25:25 +0200 | [diff] [blame] | 3612 | d->prev_lookup = NULL; |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3613 | d->cached_entries = EB_ROOT_UNIQUE; |
| 3614 | d->entries = entries; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3615 | |
| 3616 | return d; |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3617 | |
| 3618 | err: |
| 3619 | free(d); |
| 3620 | free(entries); |
| 3621 | return NULL; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3622 | } |
| 3623 | |
| 3624 | /* |
| 3625 | * Allocate a cache of dictionary entries with <name> as name and <max_entries> |
| 3626 | * as maximum of entries. |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 3627 | * Return the dictionary cache if succeeded, NULL if not. |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3628 | * Must be deallocated calling free_dcache(). |
| 3629 | */ |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3630 | static struct dcache *new_dcache(size_t max_entries) |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3631 | { |
| 3632 | struct dcache_tx *dc_tx; |
| 3633 | struct dcache *dc; |
| 3634 | struct dcache_rx *dc_rx; |
| 3635 | |
| 3636 | dc = calloc(1, sizeof *dc); |
| 3637 | dc_tx = new_dcache_tx(max_entries); |
| 3638 | dc_rx = calloc(max_entries, sizeof *dc_rx); |
| 3639 | if (!dc || !dc_tx || !dc_rx) |
| 3640 | goto err; |
| 3641 | |
| 3642 | dc->tx = dc_tx; |
| 3643 | dc->rx = dc_rx; |
| 3644 | dc->max_entries = max_entries; |
| 3645 | |
| 3646 | return dc; |
| 3647 | |
| 3648 | err: |
| 3649 | free(dc); |
| 3650 | free(dc_tx); |
| 3651 | free(dc_rx); |
| 3652 | return NULL; |
| 3653 | } |
| 3654 | |
| 3655 | /* |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3656 | * Look for the dictionary entry with the value of <i> in <d> cache of dictionary |
| 3657 | * entries used upon transmission. |
| 3658 | * Return the entry if found, NULL if not. |
| 3659 | */ |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3660 | static struct ebpt_node *dcache_tx_lookup_value(struct dcache_tx *d, |
| 3661 | struct dcache_tx_entry *i) |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3662 | { |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3663 | return ebpt_lookup(&d->cached_entries, i->entry.key); |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3664 | } |
| 3665 | |
| 3666 | /* |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3667 | * Flush <dc> cache. |
| 3668 | * Always succeeds. |
| 3669 | */ |
| 3670 | static inline void flush_dcache(struct peer *peer) |
| 3671 | { |
| 3672 | int i; |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 3673 | struct dcache *dc = peer->dcache; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3674 | |
Frédéric Lécaille | ea875e6 | 2020-11-12 21:01:54 +0100 | [diff] [blame] | 3675 | for (i = 0; i < dc->max_entries; i++) { |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3676 | ebpt_delete(&dc->tx->entries[i]); |
Frédéric Lécaille | ea875e6 | 2020-11-12 21:01:54 +0100 | [diff] [blame] | 3677 | dc->tx->entries[i].key = NULL; |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 3678 | dict_entry_unref(&server_key_dict, dc->rx[i].de); |
| 3679 | dc->rx[i].de = NULL; |
Frédéric Lécaille | ea875e6 | 2020-11-12 21:01:54 +0100 | [diff] [blame] | 3680 | } |
| 3681 | dc->tx->prev_lookup = NULL; |
| 3682 | dc->tx->lru_key = 0; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3683 | |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3684 | 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] | 3685 | } |
| 3686 | |
| 3687 | /* |
| 3688 | * Insert a dictionary entry in <dc> cache part used upon transmission (->tx) |
| 3689 | * with information provided by <i> dictionary cache entry (especially the value |
| 3690 | * 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] | 3691 | * or something different of <i> if not. |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3692 | */ |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3693 | 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] | 3694 | { |
| 3695 | struct dcache_tx *dc_tx; |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3696 | struct ebpt_node *o; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3697 | |
| 3698 | dc_tx = dc->tx; |
Frédéric Lécaille | b65717f | 2019-06-07 14:25:25 +0200 | [diff] [blame] | 3699 | |
| 3700 | if (dc_tx->prev_lookup && dc_tx->prev_lookup->key == i->entry.key) { |
| 3701 | o = dc_tx->prev_lookup; |
| 3702 | } else { |
| 3703 | o = dcache_tx_lookup_value(dc_tx, i); |
| 3704 | if (o) { |
| 3705 | /* Save it */ |
| 3706 | dc_tx->prev_lookup = o; |
| 3707 | } |
| 3708 | } |
| 3709 | |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3710 | if (o) { |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3711 | /* Copy the ID. */ |
| 3712 | i->id = o - dc->tx->entries; |
| 3713 | return &i->entry; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3714 | } |
| 3715 | |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3716 | /* The new entry to put in cache */ |
Frédéric Lécaille | b65717f | 2019-06-07 14:25:25 +0200 | [diff] [blame] | 3717 | 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] | 3718 | |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3719 | ebpt_delete(o); |
| 3720 | o->key = i->entry.key; |
| 3721 | ebpt_insert(&dc_tx->cached_entries, o); |
| 3722 | i->id = dc_tx->lru_key; |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3723 | |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3724 | /* Update the index for the next entry to put in cache */ |
| 3725 | 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] | 3726 | |
Frédéric Lécaille | 74167b2 | 2019-05-28 19:02:42 +0200 | [diff] [blame] | 3727 | return o; |
| 3728 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3729 | |
| 3730 | /* |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 3731 | * Allocate a dictionary cache for each peer of <peers> section. |
| 3732 | * Return 1 if succeeded, 0 if not. |
| 3733 | */ |
| 3734 | int peers_alloc_dcache(struct peers *peers) |
| 3735 | { |
| 3736 | struct peer *p; |
| 3737 | |
| 3738 | for (p = peers->remote; p; p = p->next) { |
| 3739 | p->dcache = new_dcache(PEER_STKT_CACHE_MAX_ENTRIES); |
| 3740 | if (!p->dcache) |
| 3741 | return 0; |
| 3742 | } |
| 3743 | |
| 3744 | return 1; |
| 3745 | } |
| 3746 | |
| 3747 | /* |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3748 | * Function used to register a table for sync on a group of peers |
Remi Tricot-Le Breton | 208ff01 | 2021-05-12 17:39:04 +0200 | [diff] [blame] | 3749 | * Returns 0 in case of success. |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3750 | */ |
Remi Tricot-Le Breton | 208ff01 | 2021-05-12 17:39:04 +0200 | [diff] [blame] | 3751 | int peers_register_table(struct peers *peers, struct stktable *table) |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3752 | { |
| 3753 | struct shared_table *st; |
| 3754 | struct peer * curpeer; |
| 3755 | int id = 0; |
Remi Tricot-Le Breton | 208ff01 | 2021-05-12 17:39:04 +0200 | [diff] [blame] | 3756 | int retval = 0; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3757 | |
| 3758 | for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 3759 | st = calloc(1,sizeof(*st)); |
Remi Tricot-Le Breton | 208ff01 | 2021-05-12 17:39:04 +0200 | [diff] [blame] | 3760 | if (!st) { |
| 3761 | retval = 1; |
| 3762 | break; |
| 3763 | } |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3764 | st->table = table; |
| 3765 | st->next = curpeer->tables; |
| 3766 | if (curpeer->tables) |
| 3767 | id = curpeer->tables->local_id; |
| 3768 | st->local_id = id + 1; |
| 3769 | |
Emeric Brun | 2cc201f | 2021-04-23 12:21:26 +0200 | [diff] [blame] | 3770 | /* If peer is local we inc table |
| 3771 | * refcnt to protect against flush |
| 3772 | * until this process pushed all |
| 3773 | * table content to the new one |
| 3774 | */ |
| 3775 | if (curpeer->local) |
| 3776 | HA_ATOMIC_INC(&st->table->refcnt); |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 3777 | curpeer->tables = st; |
| 3778 | } |
| 3779 | |
| 3780 | table->sync_task = peers->sync_task; |
Remi Tricot-Le Breton | 208ff01 | 2021-05-12 17:39:04 +0200 | [diff] [blame] | 3781 | |
| 3782 | return retval; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3783 | } |
| 3784 | |
Willy Tarreau | cb8bf17 | 2022-05-03 14:26:31 +0200 | [diff] [blame] | 3785 | /* context used by a "show peers" command */ |
| 3786 | struct show_peers_ctx { |
Willy Tarreau | 3a31e37 | 2022-05-03 14:58:47 +0200 | [diff] [blame] | 3787 | void *target; /* if non-null, dump only this section and stop */ |
Willy Tarreau | cb8bf17 | 2022-05-03 14:26:31 +0200 | [diff] [blame] | 3788 | struct peers *peers; /* "peers" section being currently dumped. */ |
| 3789 | struct peer *peer; /* "peer" being currently dumped. */ |
| 3790 | int flags; /* non-zero if "dict" dump requested */ |
Willy Tarreau | 3a31e37 | 2022-05-03 14:58:47 +0200 | [diff] [blame] | 3791 | enum { |
Willy Tarreau | ce9123c | 2022-05-03 15:04:25 +0200 | [diff] [blame] | 3792 | STATE_HEAD = 0, /* dump the section's header */ |
Willy Tarreau | 3a31e37 | 2022-05-03 14:58:47 +0200 | [diff] [blame] | 3793 | STATE_PEER, /* dump the whole peer */ |
| 3794 | STATE_DONE, /* finished */ |
| 3795 | } state; /* parser's state */ |
Willy Tarreau | cb8bf17 | 2022-05-03 14:26:31 +0200 | [diff] [blame] | 3796 | }; |
| 3797 | |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3798 | /* |
| 3799 | * Parse the "show peers" command arguments. |
| 3800 | * Returns 0 if succeeded, 1 if not with the ->msg of the appctx set as |
| 3801 | * error message. |
| 3802 | */ |
| 3803 | static int cli_parse_show_peers(char **args, char *payload, struct appctx *appctx, void *private) |
| 3804 | { |
Willy Tarreau | cb8bf17 | 2022-05-03 14:26:31 +0200 | [diff] [blame] | 3805 | struct show_peers_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3806 | |
Willy Tarreau | 49962b5 | 2021-02-12 16:56:22 +0100 | [diff] [blame] | 3807 | if (strcmp(args[2], "dict") == 0) { |
| 3808 | /* show the dictionaries (large dump) */ |
Willy Tarreau | cb8bf17 | 2022-05-03 14:26:31 +0200 | [diff] [blame] | 3809 | ctx->flags |= PEERS_SHOW_F_DICT; |
Willy Tarreau | 49962b5 | 2021-02-12 16:56:22 +0100 | [diff] [blame] | 3810 | args++; |
| 3811 | } else if (strcmp(args[2], "-") == 0) |
| 3812 | args++; // allows to show a section called "dict" |
| 3813 | |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3814 | if (*args[2]) { |
| 3815 | struct peers *p; |
| 3816 | |
| 3817 | for (p = cfg_peers; p; p = p->next) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 3818 | if (strcmp(p->id, args[2]) == 0) { |
Willy Tarreau | cb8bf17 | 2022-05-03 14:26:31 +0200 | [diff] [blame] | 3819 | ctx->target = p; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3820 | break; |
| 3821 | } |
| 3822 | } |
| 3823 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3824 | if (!p) |
| 3825 | return cli_err(appctx, "No such peers\n"); |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3826 | } |
| 3827 | |
Willy Tarreau | ce9123c | 2022-05-03 15:04:25 +0200 | [diff] [blame] | 3828 | /* where to start from */ |
| 3829 | ctx->peers = ctx->target ? ctx->target : cfg_peers; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3830 | return 0; |
| 3831 | } |
| 3832 | |
| 3833 | /* |
| 3834 | * This function dumps the peer state information of <peers> "peers" section. |
| 3835 | * Returns 0 if the output buffer is full and needs to be called again, non-zero if not. |
| 3836 | * Dedicated to be called by cli_io_handler_show_peers() cli I/O handler. |
| 3837 | */ |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 3838 | static int peers_dump_head(struct buffer *msg, struct appctx *appctx, struct peers *peers) |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3839 | { |
| 3840 | struct tm tm; |
| 3841 | |
| 3842 | get_localtime(peers->last_change, &tm); |
Willy Tarreau | 1ad64ac | 2020-09-24 08:48:08 +0200 | [diff] [blame] | 3843 | 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] | 3844 | peers, |
| 3845 | tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900, |
| 3846 | tm.tm_hour, tm.tm_min, tm.tm_sec, |
Willy Tarreau | 1ad64ac | 2020-09-24 08:48:08 +0200 | [diff] [blame] | 3847 | peers->id, peers->disabled, peers->flags, |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3848 | peers->resync_timeout ? |
| 3849 | tick_is_expired(peers->resync_timeout, now_ms) ? "<PAST>" : |
| 3850 | human_time(TICKS_TO_MS(peers->resync_timeout - now_ms), |
Emeric Brun | 0bbec0f | 2019-04-18 11:39:43 +0200 | [diff] [blame] | 3851 | TICKS_TO_MS(1000)) : "<NEVER>", |
| 3852 | peers->sync_task ? peers->sync_task->calls : 0); |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3853 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 3854 | if (applet_putchk(appctx, msg) == -1) |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3855 | return 0; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3856 | |
| 3857 | return 1; |
| 3858 | } |
| 3859 | |
| 3860 | /* |
| 3861 | * This function dumps <peer> state information. |
| 3862 | * Returns 0 if the output buffer is full and needs to be called again, non-zero |
| 3863 | * if not. Dedicated to be called by cli_io_handler_show_peers() cli I/O handler. |
| 3864 | */ |
Willy Tarreau | 50e77b2 | 2022-05-31 08:55:54 +0200 | [diff] [blame] | 3865 | static int peers_dump_peer(struct buffer *msg, struct appctx *appctx, struct peer *peer, int flags) |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3866 | { |
| 3867 | struct connection *conn; |
| 3868 | char pn[INET6_ADDRSTRLEN]; |
Willy Tarreau | 4596fe2 | 2022-05-17 19:07:51 +0200 | [diff] [blame] | 3869 | struct stconn *peer_cs; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3870 | struct stream *peer_s; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3871 | struct shared_table *st; |
| 3872 | |
| 3873 | addr_to_str(&peer->addr, pn, sizeof pn); |
Frédéric Lécaille | 3fc0fe0 | 2020-10-08 09:46:24 +0200 | [diff] [blame] | 3874 | 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] | 3875 | peer, peer->id, |
| 3876 | peer->local ? "local" : "remote", |
Frédéric Lécaille | e7e2b21 | 2020-10-05 12:33:07 +0200 | [diff] [blame] | 3877 | peer->appctx ? "active" : "inactive", |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3878 | pn, get_host_port(&peer->addr), |
Frédéric Lécaille | 3fc0fe0 | 2020-10-08 09:46:24 +0200 | [diff] [blame] | 3879 | statuscode_str(peer->statuscode)); |
| 3880 | |
| 3881 | chunk_appendf(msg, " last_hdshk=%s\n", |
| 3882 | peer->last_hdshk ? human_time(TICKS_TO_MS(now_ms - peer->last_hdshk), |
| 3883 | TICKS_TO_MS(1000)) : "<NEVER>"); |
| 3884 | |
| 3885 | chunk_appendf(msg, " reconnect=%s", |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3886 | peer->reconnect ? |
| 3887 | tick_is_expired(peer->reconnect, now_ms) ? "<PAST>" : |
| 3888 | human_time(TICKS_TO_MS(peer->reconnect - now_ms), |
Frédéric Lécaille | 3fc0fe0 | 2020-10-08 09:46:24 +0200 | [diff] [blame] | 3889 | TICKS_TO_MS(1000)) : "<NEVER>"); |
| 3890 | |
| 3891 | chunk_appendf(msg, " heartbeat=%s", |
| 3892 | peer->heartbeat ? |
| 3893 | tick_is_expired(peer->heartbeat, now_ms) ? "<PAST>" : |
| 3894 | human_time(TICKS_TO_MS(peer->heartbeat - now_ms), |
| 3895 | TICKS_TO_MS(1000)) : "<NEVER>"); |
| 3896 | |
| 3897 | 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] | 3898 | peer->confirm, peer->tx_hbt, peer->rx_hbt, |
Frédéric Lécaille | 3fc0fe0 | 2020-10-08 09:46:24 +0200 | [diff] [blame] | 3899 | 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] | 3900 | |
| 3901 | chunk_appendf(&trash, " flags=0x%x", peer->flags); |
| 3902 | |
Willy Tarreau | fc50599 | 2022-05-31 08:53:25 +0200 | [diff] [blame] | 3903 | if (!peer->appctx) |
Frédéric Lécaille | 470502b | 2019-11-06 10:41:03 +0100 | [diff] [blame] | 3904 | goto table_info; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3905 | |
Willy Tarreau | fc50599 | 2022-05-31 08:53:25 +0200 | [diff] [blame] | 3906 | chunk_appendf(&trash, " appctx:%p st0=%d st1=%d task_calls=%u", |
| 3907 | peer->appctx, peer->appctx->st0, peer->appctx->st1, |
| 3908 | peer->appctx->t ? peer->appctx->t->calls : 0); |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3909 | |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 3910 | peer_cs = appctx_sc(peer->appctx); |
Willy Tarreau | ea27f48 | 2022-05-18 16:10:52 +0200 | [diff] [blame] | 3911 | peer_s = __sc_strm(peer_cs); |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3912 | |
Willy Tarreau | 74568cf | 2022-05-27 09:03:30 +0200 | [diff] [blame] | 3913 | chunk_appendf(&trash, " state=%s", sc_state_str(sc_opposite(peer_cs)->state)); |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3914 | |
| 3915 | conn = objt_conn(strm_orig(peer_s)); |
| 3916 | if (conn) |
| 3917 | chunk_appendf(&trash, "\n xprt=%s", conn_get_xprt_name(conn)); |
| 3918 | |
Willy Tarreau | 3ca1490 | 2019-07-17 14:53:15 +0200 | [diff] [blame] | 3919 | 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] | 3920 | case AF_INET: |
| 3921 | case AF_INET6: |
Willy Tarreau | 3ca1490 | 2019-07-17 14:53:15 +0200 | [diff] [blame] | 3922 | 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] | 3923 | break; |
| 3924 | case AF_UNIX: |
| 3925 | chunk_appendf(&trash, " src=unix:%d", strm_li(peer_s)->luid); |
| 3926 | break; |
| 3927 | } |
| 3928 | |
Willy Tarreau | 3ca1490 | 2019-07-17 14:53:15 +0200 | [diff] [blame] | 3929 | 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] | 3930 | case AF_INET: |
| 3931 | case AF_INET6: |
Willy Tarreau | 3ca1490 | 2019-07-17 14:53:15 +0200 | [diff] [blame] | 3932 | 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] | 3933 | break; |
| 3934 | case AF_UNIX: |
| 3935 | chunk_appendf(&trash, " addr=unix:%d", strm_li(peer_s)->luid); |
| 3936 | break; |
| 3937 | } |
| 3938 | |
Frédéric Lécaille | 470502b | 2019-11-06 10:41:03 +0100 | [diff] [blame] | 3939 | table_info: |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3940 | if (peer->remote_table) |
| 3941 | chunk_appendf(&trash, "\n remote_table:%p id=%s local_id=%d remote_id=%d", |
| 3942 | peer->remote_table, |
| 3943 | peer->remote_table->table->id, |
| 3944 | peer->remote_table->local_id, |
| 3945 | peer->remote_table->remote_id); |
| 3946 | |
| 3947 | if (peer->last_local_table) |
| 3948 | chunk_appendf(&trash, "\n last_local_table:%p id=%s local_id=%d remote_id=%d", |
| 3949 | peer->last_local_table, |
| 3950 | peer->last_local_table->table->id, |
| 3951 | peer->last_local_table->local_id, |
| 3952 | peer->last_local_table->remote_id); |
| 3953 | |
| 3954 | if (peer->tables) { |
| 3955 | chunk_appendf(&trash, "\n shared tables:"); |
| 3956 | for (st = peer->tables; st; st = st->next) { |
Frédéric Lécaille | 62b0b0b | 2019-05-29 16:20:41 +0200 | [diff] [blame] | 3957 | int i, count; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3958 | struct stktable *t; |
Frédéric Lécaille | 62b0b0b | 2019-05-29 16:20:41 +0200 | [diff] [blame] | 3959 | struct dcache *dcache; |
| 3960 | |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3961 | t = st->table; |
Frédéric Lécaille | 62b0b0b | 2019-05-29 16:20:41 +0200 | [diff] [blame] | 3962 | dcache = peer->dcache; |
| 3963 | |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 3964 | chunk_appendf(&trash, "\n %p local_id=%d remote_id=%d " |
| 3965 | "flags=0x%x remote_data=0x%llx", |
| 3966 | st, st->local_id, st->remote_id, |
| 3967 | st->flags, (unsigned long long)st->remote_data); |
| 3968 | chunk_appendf(&trash, "\n last_acked=%u last_pushed=%u last_get=%u" |
| 3969 | " teaching_origin=%u update=%u", |
| 3970 | st->last_acked, st->last_pushed, st->last_get, |
| 3971 | st->teaching_origin, st->update); |
| 3972 | chunk_appendf(&trash, "\n table:%p id=%s update=%u localupdate=%u" |
Emeric Brun | 2cc201f | 2021-04-23 12:21:26 +0200 | [diff] [blame] | 3973 | " commitupdate=%u refcnt=%u", |
| 3974 | t, t->id, t->update, t->localupdate, t->commitupdate, t->refcnt); |
Willy Tarreau | 49962b5 | 2021-02-12 16:56:22 +0100 | [diff] [blame] | 3975 | if (flags & PEERS_SHOW_F_DICT) { |
| 3976 | chunk_appendf(&trash, "\n TX dictionary cache:"); |
| 3977 | count = 0; |
| 3978 | for (i = 0; i < dcache->max_entries; i++) { |
| 3979 | struct ebpt_node *node; |
| 3980 | struct dict_entry *de; |
Frédéric Lécaille | 62b0b0b | 2019-05-29 16:20:41 +0200 | [diff] [blame] | 3981 | |
Willy Tarreau | 49962b5 | 2021-02-12 16:56:22 +0100 | [diff] [blame] | 3982 | node = &dcache->tx->entries[i]; |
| 3983 | if (!node->key) |
| 3984 | break; |
Frédéric Lécaille | 6c39198 | 2019-06-06 11:34:03 +0200 | [diff] [blame] | 3985 | |
Willy Tarreau | 49962b5 | 2021-02-12 16:56:22 +0100 | [diff] [blame] | 3986 | if (!count++) |
| 3987 | chunk_appendf(&trash, "\n "); |
| 3988 | de = node->key; |
| 3989 | chunk_appendf(&trash, " %3u -> %s", i, (char *)de->value.key); |
| 3990 | count &= 0x3; |
| 3991 | } |
| 3992 | chunk_appendf(&trash, "\n RX dictionary cache:"); |
| 3993 | count = 0; |
| 3994 | for (i = 0; i < dcache->max_entries; i++) { |
| 3995 | if (!count++) |
| 3996 | chunk_appendf(&trash, "\n "); |
| 3997 | chunk_appendf(&trash, " %3u -> %s", i, |
| 3998 | dcache->rx[i].de ? |
| 3999 | (char *)dcache->rx[i].de->value.key : "-"); |
| 4000 | count &= 0x3; |
| 4001 | } |
| 4002 | } else { |
| 4003 | chunk_appendf(&trash, "\n Dictionary cache not dumped (use \"show peers dict\")"); |
Frédéric Lécaille | 62b0b0b | 2019-05-29 16:20:41 +0200 | [diff] [blame] | 4004 | } |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4005 | } |
| 4006 | } |
| 4007 | |
| 4008 | end: |
| 4009 | chunk_appendf(&trash, "\n"); |
Willy Tarreau | 50e77b2 | 2022-05-31 08:55:54 +0200 | [diff] [blame] | 4010 | if (applet_putchk(appctx, msg) == -1) |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4011 | return 0; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4012 | |
| 4013 | return 1; |
| 4014 | } |
| 4015 | |
| 4016 | /* |
| 4017 | * This function dumps all the peers of "peers" section. |
| 4018 | * Returns 0 if the output buffer is full and needs to be called |
| 4019 | * again, non-zero if not. It proceeds in an isolated thread, so |
| 4020 | * there is no thread safety issue here. |
| 4021 | */ |
| 4022 | static int cli_io_handler_show_peers(struct appctx *appctx) |
| 4023 | { |
Willy Tarreau | cb8bf17 | 2022-05-03 14:26:31 +0200 | [diff] [blame] | 4024 | struct show_peers_ctx *ctx = appctx->svcctx; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4025 | int ret = 0, first_peers = 1; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4026 | |
| 4027 | thread_isolate(); |
| 4028 | |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4029 | chunk_reset(&trash); |
| 4030 | |
Willy Tarreau | 3a31e37 | 2022-05-03 14:58:47 +0200 | [diff] [blame] | 4031 | while (ctx->state != STATE_DONE) { |
| 4032 | switch (ctx->state) { |
Willy Tarreau | 3a31e37 | 2022-05-03 14:58:47 +0200 | [diff] [blame] | 4033 | case STATE_HEAD: |
Willy Tarreau | cb8bf17 | 2022-05-03 14:26:31 +0200 | [diff] [blame] | 4034 | if (!ctx->peers) { |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4035 | /* No more peers list. */ |
Willy Tarreau | 3a31e37 | 2022-05-03 14:58:47 +0200 | [diff] [blame] | 4036 | ctx->state = STATE_DONE; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4037 | } |
| 4038 | else { |
| 4039 | if (!first_peers) |
| 4040 | chunk_appendf(&trash, "\n"); |
| 4041 | else |
| 4042 | first_peers = 0; |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 4043 | if (!peers_dump_head(&trash, appctx, ctx->peers)) |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4044 | goto out; |
| 4045 | |
Willy Tarreau | cb8bf17 | 2022-05-03 14:26:31 +0200 | [diff] [blame] | 4046 | ctx->peer = ctx->peers->remote; |
| 4047 | ctx->peers = ctx->peers->next; |
Willy Tarreau | 3a31e37 | 2022-05-03 14:58:47 +0200 | [diff] [blame] | 4048 | ctx->state = STATE_PEER; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4049 | } |
| 4050 | break; |
| 4051 | |
Willy Tarreau | 3a31e37 | 2022-05-03 14:58:47 +0200 | [diff] [blame] | 4052 | case STATE_PEER: |
Willy Tarreau | cb8bf17 | 2022-05-03 14:26:31 +0200 | [diff] [blame] | 4053 | if (!ctx->peer) { |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4054 | /* End of peer list */ |
Willy Tarreau | ce9123c | 2022-05-03 15:04:25 +0200 | [diff] [blame] | 4055 | if (!ctx->target) |
| 4056 | ctx->state = STATE_HEAD; // next one |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4057 | else |
Willy Tarreau | 3a31e37 | 2022-05-03 14:58:47 +0200 | [diff] [blame] | 4058 | ctx->state = STATE_DONE; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4059 | } |
| 4060 | else { |
Willy Tarreau | 50e77b2 | 2022-05-31 08:55:54 +0200 | [diff] [blame] | 4061 | if (!peers_dump_peer(&trash, appctx, ctx->peer, ctx->flags)) |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4062 | goto out; |
| 4063 | |
Willy Tarreau | cb8bf17 | 2022-05-03 14:26:31 +0200 | [diff] [blame] | 4064 | ctx->peer = ctx->peer->next; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4065 | } |
Willy Tarreau | 3a31e37 | 2022-05-03 14:58:47 +0200 | [diff] [blame] | 4066 | break; |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4067 | |
Willy Tarreau | 3a31e37 | 2022-05-03 14:58:47 +0200 | [diff] [blame] | 4068 | default: |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4069 | break; |
| 4070 | } |
| 4071 | } |
| 4072 | ret = 1; |
| 4073 | out: |
| 4074 | thread_release(); |
| 4075 | return ret; |
| 4076 | } |
| 4077 | |
Willy Tarreau | 8bd146d | 2022-07-19 20:17:38 +0200 | [diff] [blame] | 4078 | /* config parser for global "tune.peers.max-updates-at-once" */ |
| 4079 | static int cfg_parse_max_updt_at_once(char **args, int section_type, struct proxy *curpx, |
| 4080 | const struct proxy *defpx, const char *file, int line, |
| 4081 | char **err) |
| 4082 | { |
| 4083 | int arg = -1; |
| 4084 | |
| 4085 | if (too_many_args(1, args, err, NULL)) |
| 4086 | return -1; |
| 4087 | |
| 4088 | if (*(args[1]) != 0) |
| 4089 | arg = atoi(args[1]); |
| 4090 | |
| 4091 | if (arg < 1) { |
| 4092 | memprintf(err, "'%s' expects an integer argument greater than 0.", args[0]); |
| 4093 | return -1; |
| 4094 | } |
| 4095 | |
| 4096 | peers_max_updates_at_once = arg; |
| 4097 | return 0; |
| 4098 | } |
| 4099 | |
| 4100 | /* config keyword parsers */ |
| 4101 | static struct cfg_kw_list cfg_kws = {ILH, { |
| 4102 | { CFG_GLOBAL, "tune.peers.max-updates-at-once", cfg_parse_max_updt_at_once }, |
| 4103 | { 0, NULL, NULL } |
| 4104 | }}; |
| 4105 | |
| 4106 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 4107 | |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4108 | /* |
| 4109 | * CLI keywords. |
| 4110 | */ |
| 4111 | static struct cli_kw_list cli_kws = {{ }, { |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 4112 | { { "show", "peers", NULL }, "show peers [dict|-] [section] : dump some information about all the peers or this peers section", cli_parse_show_peers, cli_io_handler_show_peers, }, |
Frédéric Lécaille | 95679dc | 2019-04-15 10:25:27 +0200 | [diff] [blame] | 4113 | {}, |
| 4114 | }}; |
| 4115 | |
| 4116 | /* Register cli keywords */ |
| 4117 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |