Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | bd55e31 | 2010-11-11 10:55:09 +0100 | [diff] [blame] | 2 | * Stick table synchro management. |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 3 | * |
| 4 | * Copyright 2010 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <errno.h> |
| 14 | #include <fcntl.h> |
| 15 | #include <stdio.h> |
| 16 | #include <stdlib.h> |
| 17 | #include <string.h> |
| 18 | |
| 19 | #include <sys/socket.h> |
| 20 | #include <sys/stat.h> |
| 21 | #include <sys/types.h> |
| 22 | |
| 23 | #include <common/compat.h> |
| 24 | #include <common/config.h> |
| 25 | #include <common/time.h> |
| 26 | |
| 27 | #include <types/global.h> |
| 28 | #include <types/peers.h> |
| 29 | |
| 30 | #include <proto/acl.h> |
| 31 | #include <proto/buffers.h> |
| 32 | #include <proto/fd.h> |
| 33 | #include <proto/log.h> |
| 34 | #include <proto/hdr_idx.h> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 35 | #include <proto/protocols.h> |
| 36 | #include <proto/proto_tcp.h> |
| 37 | #include <proto/proto_http.h> |
| 38 | #include <proto/proxy.h> |
| 39 | #include <proto/session.h> |
Willy Tarreau | c63190d | 2012-05-11 14:23:52 +0200 | [diff] [blame] | 40 | #include <proto/sock_raw.h> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 41 | #include <proto/stream_interface.h> |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 42 | #include <proto/task.h> |
| 43 | #include <proto/stick_table.h> |
| 44 | #include <proto/signal.h> |
| 45 | |
| 46 | |
| 47 | /*******************************/ |
| 48 | /* Current peer learning state */ |
| 49 | /*******************************/ |
| 50 | |
| 51 | /******************************/ |
| 52 | /* Current table resync state */ |
| 53 | /******************************/ |
| 54 | #define SHTABLE_F_RESYNC_LOCAL 0x00000001 /* Learn from local finished or no more needed */ |
| 55 | #define SHTABLE_F_RESYNC_REMOTE 0x00000002 /* Learn from remote finished or no more needed */ |
| 56 | #define SHTABLE_F_RESYNC_ASSIGN 0x00000004 /* A peer was assigned to learn our lesson */ |
| 57 | #define SHTABLE_F_RESYNC_PROCESS 0x00000008 /* The assigned peer was requested for resync */ |
| 58 | #define SHTABLE_F_DONOTSTOP 0x00010000 /* Main table sync task block process during soft stop |
| 59 | to push data to new process */ |
| 60 | |
| 61 | #define SHTABLE_RESYNC_STATEMASK (SHTABLE_F_RESYNC_LOCAL|SHTABLE_F_RESYNC_REMOTE) |
| 62 | #define SHTABLE_RESYNC_FROMLOCAL 0x00000000 |
| 63 | #define SHTABLE_RESYNC_FROMREMOTE SHTABLE_F_RESYNC_LOCAL |
| 64 | #define SHTABLE_RESYNC_FINISHED (SHTABLE_F_RESYNC_LOCAL|SHTABLE_F_RESYNC_REMOTE) |
| 65 | |
| 66 | /******************************/ |
| 67 | /* Remote peer teaching state */ |
| 68 | /******************************/ |
| 69 | #define PEER_F_TEACH_PROCESS 0x00000001 /* Teach a lesson to current peer */ |
| 70 | #define PEER_F_TEACH_STAGE1 0x00000002 /* Teach state 1 complete */ |
| 71 | #define PEER_F_TEACH_STAGE2 0x00000004 /* Teach stage 2 complete */ |
| 72 | #define PEER_F_TEACH_FINISHED 0x00000008 /* Teach conclude, (wait for confirm) */ |
| 73 | #define PEER_F_TEACH_COMPLETE 0x00000010 /* All that we know already taught to current peer, used only for a local peer */ |
| 74 | #define PEER_F_LEARN_ASSIGN 0x00000100 /* Current peer was assigned for a lesson */ |
| 75 | #define PEER_F_LEARN_NOTUP2DATE 0x00000200 /* Learn from peer finished but peer is not up to date */ |
| 76 | |
| 77 | #define PEER_TEACH_RESET ~(PEER_F_TEACH_PROCESS|PEER_F_TEACH_STAGE1|PEER_F_TEACH_STAGE2|PEER_F_TEACH_FINISHED) /* PEER_F_TEACH_COMPLETE should never be reset */ |
| 78 | #define PEER_LEARN_RESET ~(PEER_F_LEARN_ASSIGN|PEER_F_LEARN_NOTUP2DATE) |
| 79 | |
| 80 | |
| 81 | /**********************************/ |
| 82 | /* Peer Session IO handler states */ |
| 83 | /**********************************/ |
| 84 | |
| 85 | #define PEER_SESSION_ACCEPT 1000 /* Initial state for session create by an accept */ |
| 86 | #define PEER_SESSION_GETVERSION 1001 /* Validate supported protocol version*/ |
| 87 | #define PEER_SESSION_GETHOST 1002 /* Validate host ID correspond to local host id */ |
| 88 | #define PEER_SESSION_GETPEER 1003 /* Validate peer ID correspond to a known remote peer id */ |
| 89 | #define PEER_SESSION_GETTABLE 1004 /* Search into registered table for a table with same id and |
| 90 | validate type and size */ |
| 91 | #define PEER_SESSION_SENDSUCCESS 1005 /* Send ret code 200 (success) and wait for message */ |
| 92 | /* next state is WAITMSG */ |
| 93 | |
| 94 | #define PEER_SESSION_CONNECT 2000 /* Initial state for session create on a connect, |
| 95 | push presentation into buffer */ |
| 96 | #define PEER_SESSION_GETSTATUS 2001 /* Wait for the welcome message */ |
| 97 | #define PEER_SESSION_WAITMSG 2002 /* Wait for datamessages*/ |
| 98 | /* loop on WAITMSG */ |
| 99 | |
| 100 | #define PEER_SESSION_EXIT 10000 /* Exit with status code */ |
| 101 | #define PEER_SESSION_END 10001 /* Killed session */ |
| 102 | /* session ended */ |
| 103 | |
| 104 | |
| 105 | /**********************************/ |
| 106 | /* Peer Session status code */ |
| 107 | /**********************************/ |
| 108 | |
| 109 | #define PEER_SESSION_CONNECTCODE 100 /* connect in progress */ |
| 110 | #define PEER_SESSION_CONNECTEDCODE 110 /* tcp connect success */ |
| 111 | |
| 112 | #define PEER_SESSION_SUCCESSCODE 200 /* accept or connect successful */ |
| 113 | |
| 114 | #define PEER_SESSION_TRYAGAIN 300 /* try again later */ |
| 115 | |
| 116 | #define PEER_SESSION_ERRPROTO 501 /* error protocol */ |
| 117 | #define PEER_SESSION_ERRVERSION 502 /* unknown protocol version */ |
| 118 | #define PEER_SESSION_ERRHOST 503 /* bad host name */ |
| 119 | #define PEER_SESSION_ERRPEER 504 /* unknown peer */ |
| 120 | #define PEER_SESSION_ERRTYPE 505 /* table key type mismatch */ |
| 121 | #define PEER_SESSION_ERRSIZE 506 /* table key size mismatch */ |
| 122 | #define PEER_SESSION_ERRTABLE 507 /* unknown table */ |
| 123 | |
| 124 | #define PEER_SESSION_PROTO_NAME "HAProxyS" |
| 125 | |
| 126 | struct peers *peers = NULL; |
Simon Horman | 9655377 | 2011-06-08 09:18:51 +0900 | [diff] [blame] | 127 | static void peer_session_forceshutdown(struct session * session); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 128 | |
| 129 | |
| 130 | /* |
| 131 | * This prepare the data update message of the stick session <ts>, <ps> is the the peer session |
| 132 | * where the data going to be pushed, <msg> is a buffer of <size> to recieve data message content |
| 133 | */ |
Simon Horman | 9655377 | 2011-06-08 09:18:51 +0900 | [diff] [blame] | 134 | static int peer_prepare_datamsg(struct stksess *ts, struct peer_session *ps, char *msg, size_t size) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 135 | { |
| 136 | uint32_t netinteger; |
| 137 | int len; |
| 138 | /* construct message */ |
| 139 | if (ps->lastpush && ts->upd.key > ps->lastpush && (ts->upd.key - ps->lastpush) <= 127) { |
| 140 | msg[0] = 0x80 + ts->upd.key - ps->lastpush; |
| 141 | len = sizeof(char); |
| 142 | } |
| 143 | else { |
| 144 | msg[0] = 'D'; |
| 145 | netinteger = htonl(ts->upd.key); |
| 146 | memcpy(&msg[sizeof(char)], &netinteger, sizeof(netinteger)); |
| 147 | len = sizeof(char) + sizeof(netinteger); |
| 148 | } |
| 149 | |
| 150 | if (ps->table->table->type == STKTABLE_TYPE_STRING) { |
| 151 | int stlen = strlen((char *)ts->key.key); |
| 152 | |
| 153 | netinteger = htonl(strlen((char *)ts->key.key)); |
| 154 | memcpy(&msg[len], &netinteger, sizeof(netinteger)); |
| 155 | memcpy(&msg[len+sizeof(netinteger)], ts->key.key, stlen); |
| 156 | len += sizeof(netinteger) + stlen; |
| 157 | |
| 158 | } |
| 159 | else if (ps->table->table->type == STKTABLE_TYPE_INTEGER) { |
| 160 | netinteger = htonl(*((uint32_t *)ts->key.key)); |
| 161 | memcpy(&msg[len], &netinteger, sizeof(netinteger)); |
| 162 | len += sizeof(netinteger); |
| 163 | } |
| 164 | else { |
| 165 | memcpy(&msg[len], ts->key.key, ps->table->table->key_size); |
| 166 | len += ps->table->table->key_size; |
| 167 | } |
| 168 | |
| 169 | if (stktable_data_ptr(ps->table->table, ts, STKTABLE_DT_SERVER_ID)) |
| 170 | netinteger = htonl(stktable_data_cast(stktable_data_ptr(ps->table->table, ts, STKTABLE_DT_SERVER_ID), server_id)); |
| 171 | else |
| 172 | netinteger = 0; |
| 173 | |
| 174 | memcpy(&msg[len], &netinteger , sizeof(netinteger)); |
| 175 | len += sizeof(netinteger); |
| 176 | |
| 177 | return len; |
| 178 | } |
| 179 | |
| 180 | |
| 181 | /* |
| 182 | * Callback to release a session with a peer |
| 183 | */ |
Simon Horman | 9655377 | 2011-06-08 09:18:51 +0900 | [diff] [blame] | 184 | static void peer_session_release(struct stream_interface *si) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 185 | { |
Aman Gupta | d94991d | 2012-04-06 17:39:26 -0700 | [diff] [blame] | 186 | struct task *t = (struct task *)si->owner; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 187 | struct session *s = (struct session *)t->context; |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 188 | struct peer_session *ps = (struct peer_session *)si->conn.data_ctx; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 189 | |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 190 | /* si->conn.data_ctx is not a peer session */ |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 191 | if (si->applet.st0 < PEER_SESSION_SENDSUCCESS) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 192 | return; |
| 193 | |
| 194 | /* peer session identified */ |
| 195 | if (ps) { |
| 196 | if (ps->session == s) { |
| 197 | ps->session = NULL; |
| 198 | if (ps->flags & PEER_F_LEARN_ASSIGN) { |
| 199 | /* unassign current peer for learning */ |
| 200 | ps->flags &= ~(PEER_F_LEARN_ASSIGN); |
| 201 | ps->table->flags &= ~(SHTABLE_F_RESYNC_ASSIGN|SHTABLE_F_RESYNC_PROCESS); |
| 202 | |
| 203 | /* reschedule a resync */ |
| 204 | ps->table->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000)); |
| 205 | } |
| 206 | /* reset teaching and learning flags to 0 */ |
| 207 | ps->flags &= PEER_TEACH_RESET; |
| 208 | ps->flags &= PEER_LEARN_RESET; |
| 209 | } |
| 210 | task_wakeup(ps->table->sync_task, TASK_WOKEN_MSG); |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | |
| 215 | /* |
| 216 | * IO Handler to handle message exchance with a peer |
| 217 | */ |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 218 | static void peer_io_handler(struct stream_interface *si) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 219 | { |
| 220 | struct task *t= (struct task *)si->owner; |
| 221 | struct session *s = (struct session *)t->context; |
| 222 | struct peers *curpeers = (struct peers *)s->fe->parent; |
| 223 | int reql = 0; |
| 224 | int repl = 0; |
| 225 | |
| 226 | while (1) { |
| 227 | switchstate: |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 228 | switch(si->applet.st0) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 229 | case PEER_SESSION_ACCEPT: |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 230 | si->conn.data_ctx = NULL; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 231 | si->applet.st0 = PEER_SESSION_GETVERSION; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 232 | /* fall through */ |
| 233 | case PEER_SESSION_GETVERSION: |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 234 | reql = bo_getline(si->ob, trash, trashlen); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 235 | if (reql <= 0) { /* closed or EOL not found */ |
| 236 | if (reql == 0) |
| 237 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 238 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 239 | goto switchstate; |
| 240 | } |
| 241 | if (trash[reql-1] != '\n') { |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 242 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 243 | goto switchstate; |
| 244 | } |
| 245 | else if (reql > 1 && (trash[reql-2] == '\r')) |
| 246 | trash[reql-2] = 0; |
| 247 | else |
| 248 | trash[reql-1] = 0; |
| 249 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 250 | bo_skip(si->ob, reql); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 251 | |
| 252 | /* test version */ |
| 253 | if (strcmp(PEER_SESSION_PROTO_NAME " 1.0", trash) != 0) { |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 254 | si->applet.st0 = PEER_SESSION_EXIT; |
| 255 | si->applet.st1 = PEER_SESSION_ERRVERSION; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 256 | /* test protocol */ |
| 257 | if (strncmp(PEER_SESSION_PROTO_NAME " ", trash, strlen(PEER_SESSION_PROTO_NAME)+1) != 0) |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 258 | si->applet.st1 = PEER_SESSION_ERRPROTO; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 259 | goto switchstate; |
| 260 | } |
| 261 | |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 262 | si->applet.st0 = PEER_SESSION_GETHOST; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 263 | /* fall through */ |
| 264 | case PEER_SESSION_GETHOST: |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 265 | reql = bo_getline(si->ob, trash, trashlen); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 266 | if (reql <= 0) { /* closed or EOL not found */ |
| 267 | if (reql == 0) |
| 268 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 269 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 270 | goto switchstate; |
| 271 | } |
| 272 | if (trash[reql-1] != '\n') { |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 273 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 274 | goto switchstate; |
| 275 | } |
| 276 | else if (reql > 1 && (trash[reql-2] == '\r')) |
| 277 | trash[reql-2] = 0; |
| 278 | else |
| 279 | trash[reql-1] = 0; |
| 280 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 281 | bo_skip(si->ob, reql); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 282 | |
| 283 | /* test hostname match */ |
| 284 | if (strcmp(localpeer, trash) != 0) { |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 285 | si->applet.st0 = PEER_SESSION_EXIT; |
| 286 | si->applet.st1 = PEER_SESSION_ERRHOST; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 287 | goto switchstate; |
| 288 | } |
| 289 | |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 290 | si->applet.st0 = PEER_SESSION_GETPEER; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 291 | /* fall through */ |
| 292 | case PEER_SESSION_GETPEER: { |
| 293 | struct peer *curpeer; |
| 294 | char *p; |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 295 | reql = bo_getline(si->ob, trash, trashlen); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 296 | if (reql <= 0) { /* closed or EOL not found */ |
| 297 | if (reql == 0) |
| 298 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 299 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 300 | goto switchstate; |
| 301 | } |
| 302 | if (trash[reql-1] != '\n') { |
| 303 | /* Incomplete line, we quit */ |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 304 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 305 | goto switchstate; |
| 306 | } |
| 307 | else if (reql > 1 && (trash[reql-2] == '\r')) |
| 308 | trash[reql-2] = 0; |
| 309 | else |
| 310 | trash[reql-1] = 0; |
| 311 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 312 | bo_skip(si->ob, reql); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 313 | |
| 314 | /* parse line "<peer name> <pid>" */ |
| 315 | p = strchr(trash, ' '); |
| 316 | if (!p) { |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 317 | si->applet.st0 = PEER_SESSION_EXIT; |
| 318 | si->applet.st1 = PEER_SESSION_ERRPROTO; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 319 | goto switchstate; |
| 320 | } |
| 321 | *p = 0; |
| 322 | |
| 323 | /* lookup known peer */ |
| 324 | for (curpeer = curpeers->remote; curpeer; curpeer = curpeer->next) { |
| 325 | if (strcmp(curpeer->id, trash) == 0) |
| 326 | break; |
| 327 | } |
| 328 | |
| 329 | /* if unknown peer */ |
| 330 | if (!curpeer) { |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 331 | si->applet.st0 = PEER_SESSION_EXIT; |
| 332 | si->applet.st1 = PEER_SESSION_ERRPEER; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 333 | goto switchstate; |
| 334 | } |
| 335 | |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 336 | si->conn.data_ctx = curpeer; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 337 | si->applet.st0 = PEER_SESSION_GETTABLE; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 338 | /* fall through */ |
| 339 | } |
| 340 | case PEER_SESSION_GETTABLE: { |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 341 | struct peer *curpeer = (struct peer *)si->conn.data_ctx; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 342 | struct shared_table *st; |
| 343 | struct peer_session *ps = NULL; |
| 344 | unsigned long key_type; |
| 345 | size_t key_size; |
| 346 | char *p; |
| 347 | |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 348 | reql = bo_getline(si->ob, trash, trashlen); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 349 | if (reql <= 0) { /* closed or EOL not found */ |
| 350 | if (reql == 0) |
| 351 | goto out; |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 352 | si->conn.data_ctx = NULL; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 353 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 354 | goto switchstate; |
| 355 | } |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 356 | /* Re init si->conn.data_ctx to null, to handle correctly a release case */ |
| 357 | si->conn.data_ctx = NULL; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 358 | |
| 359 | if (trash[reql-1] != '\n') { |
| 360 | /* Incomplete line, we quit */ |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 361 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 362 | goto switchstate; |
| 363 | } |
| 364 | else if (reql > 1 && (trash[reql-2] == '\r')) |
| 365 | trash[reql-2] = 0; |
| 366 | else |
| 367 | trash[reql-1] = 0; |
| 368 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 369 | bo_skip(si->ob, reql); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 370 | |
| 371 | /* Parse line "<table name> <type> <size>" */ |
| 372 | p = strchr(trash, ' '); |
| 373 | if (!p) { |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 374 | si->applet.st0 = PEER_SESSION_EXIT; |
| 375 | si->applet.st1 = PEER_SESSION_ERRPROTO; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 376 | goto switchstate; |
| 377 | } |
| 378 | *p = 0; |
| 379 | key_type = (unsigned long)atol(p+1); |
| 380 | |
| 381 | p = strchr(p+1, ' '); |
| 382 | if (!p) { |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 383 | si->conn.data_ctx = NULL; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 384 | si->applet.st0 = PEER_SESSION_EXIT; |
| 385 | si->applet.st1 = PEER_SESSION_ERRPROTO; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 386 | goto switchstate; |
| 387 | } |
| 388 | |
| 389 | key_size = (size_t)atoi(p); |
| 390 | for (st = curpeers->tables; st; st = st->next) { |
| 391 | /* If table name matches */ |
| 392 | if (strcmp(st->table->id, trash) == 0) { |
| 393 | /* If key size mismatches */ |
| 394 | if (key_size != st->table->key_size) { |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 395 | si->applet.st0 = PEER_SESSION_EXIT; |
| 396 | si->applet.st1 = PEER_SESSION_ERRSIZE; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 397 | goto switchstate; |
| 398 | } |
| 399 | |
| 400 | /* If key type mismatches */ |
| 401 | if (key_type != st->table->type) { |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 402 | si->applet.st0 = PEER_SESSION_EXIT; |
| 403 | si->applet.st1 = PEER_SESSION_ERRTYPE; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 404 | goto switchstate; |
| 405 | } |
| 406 | |
| 407 | /* lookup peer session of current peer */ |
| 408 | for (ps = st->sessions; ps; ps = ps->next) { |
| 409 | if (ps->peer == curpeer) { |
| 410 | /* If session already active, replaced by new one */ |
| 411 | if (ps->session && ps->session != s) { |
| 412 | if (ps->peer->local) { |
| 413 | /* Local connection, reply a retry */ |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 414 | si->applet.st0 = PEER_SESSION_EXIT; |
| 415 | si->applet.st1 = PEER_SESSION_TRYAGAIN; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 416 | goto switchstate; |
| 417 | } |
| 418 | peer_session_forceshutdown(ps->session); |
| 419 | } |
| 420 | ps->session = s; |
| 421 | break; |
| 422 | } |
| 423 | } |
| 424 | break; |
| 425 | } |
| 426 | } |
| 427 | |
| 428 | /* If table not found */ |
| 429 | if (!st){ |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 430 | si->applet.st0 = PEER_SESSION_EXIT; |
| 431 | si->applet.st1 = PEER_SESSION_ERRTABLE; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 432 | goto switchstate; |
| 433 | } |
| 434 | |
| 435 | /* If no peer session for current peer */ |
| 436 | if (!ps) { |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 437 | si->applet.st0 = PEER_SESSION_EXIT; |
| 438 | si->applet.st1 = PEER_SESSION_ERRPEER; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 439 | goto switchstate; |
| 440 | } |
| 441 | |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 442 | si->conn.data_ctx = ps; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 443 | si->applet.st0 = PEER_SESSION_SENDSUCCESS; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 444 | /* fall through */ |
| 445 | } |
| 446 | case PEER_SESSION_SENDSUCCESS:{ |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 447 | struct peer_session *ps = (struct peer_session *)si->conn.data_ctx; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 448 | |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 449 | repl = snprintf(trash, trashlen, "%d\n", PEER_SESSION_SUCCESSCODE); |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 450 | repl = bi_putblk(si->ib, trash, repl); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 451 | if (repl <= 0) { |
| 452 | if (repl == -1) |
| 453 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 454 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 455 | goto switchstate; |
| 456 | } |
| 457 | |
| 458 | /* Register status code */ |
| 459 | ps->statuscode = PEER_SESSION_SUCCESSCODE; |
| 460 | |
| 461 | /* Awake main task */ |
| 462 | task_wakeup(ps->table->sync_task, TASK_WOKEN_MSG); |
| 463 | |
| 464 | /* Init cursors */ |
| 465 | ps->teaching_origin =ps->lastpush = ps->lastack = ps->pushack = 0; |
| 466 | ps->pushed = ps->update; |
| 467 | |
| 468 | /* Init confirm counter */ |
| 469 | ps->confirm = 0; |
| 470 | |
| 471 | /* reset teaching and learning flags to 0 */ |
| 472 | ps->flags &= PEER_TEACH_RESET; |
| 473 | ps->flags &= PEER_LEARN_RESET; |
| 474 | |
| 475 | /* if current peer is local */ |
| 476 | if (ps->peer->local) { |
| 477 | /* if table need resyncfrom local and no process assined */ |
| 478 | if ((ps->table->flags & SHTABLE_RESYNC_STATEMASK) == SHTABLE_RESYNC_FROMLOCAL && |
| 479 | !(ps->table->flags & SHTABLE_F_RESYNC_ASSIGN)) { |
| 480 | /* assign local peer for a lesson, consider lesson already requested */ |
| 481 | ps->flags |= PEER_F_LEARN_ASSIGN; |
| 482 | ps->table->flags |= (SHTABLE_F_RESYNC_ASSIGN|SHTABLE_F_RESYNC_PROCESS); |
| 483 | } |
| 484 | |
| 485 | } |
| 486 | else if ((ps->table->flags & SHTABLE_RESYNC_STATEMASK) == SHTABLE_RESYNC_FROMREMOTE && |
| 487 | !(ps->table->flags & SHTABLE_F_RESYNC_ASSIGN)) { |
| 488 | /* assign peer for a lesson */ |
| 489 | ps->flags |= PEER_F_LEARN_ASSIGN; |
| 490 | ps->table->flags |= SHTABLE_F_RESYNC_ASSIGN; |
| 491 | } |
| 492 | /* switch to waiting message state */ |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 493 | si->applet.st0 = PEER_SESSION_WAITMSG; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 494 | goto switchstate; |
| 495 | } |
| 496 | case PEER_SESSION_CONNECT: { |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 497 | struct peer_session *ps = (struct peer_session *)si->conn.data_ctx; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 498 | |
| 499 | /* Send headers */ |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 500 | repl = snprintf(trash, trashlen, |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 501 | PEER_SESSION_PROTO_NAME " 1.0\n%s\n%s %d\n%s %lu %d\n", |
| 502 | ps->peer->id, |
| 503 | localpeer, |
Willy Tarreau | 7b77c9f | 2012-01-07 22:52:12 +0100 | [diff] [blame] | 504 | (int)getpid(), |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 505 | ps->table->table->id, |
| 506 | ps->table->table->type, |
Willy Tarreau | bd55e31 | 2010-11-11 10:55:09 +0100 | [diff] [blame] | 507 | (int)ps->table->table->key_size); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 508 | |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 509 | if (repl >= trashlen) { |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 510 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 511 | goto switchstate; |
| 512 | } |
| 513 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 514 | repl = bi_putblk(si->ib, trash, repl); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 515 | if (repl <= 0) { |
| 516 | if (repl == -1) |
| 517 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 518 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 519 | goto switchstate; |
| 520 | } |
| 521 | |
| 522 | /* switch to the waiting statuscode state */ |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 523 | si->applet.st0 = PEER_SESSION_GETSTATUS; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 524 | /* fall through */ |
| 525 | } |
| 526 | case PEER_SESSION_GETSTATUS: { |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 527 | struct peer_session *ps = (struct peer_session *)si->conn.data_ctx; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 528 | |
| 529 | if (si->ib->flags & BF_WRITE_PARTIAL) |
| 530 | ps->statuscode = PEER_SESSION_CONNECTEDCODE; |
| 531 | |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 532 | reql = bo_getline(si->ob, trash, trashlen); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 533 | if (reql <= 0) { /* closed or EOL not found */ |
| 534 | if (reql == 0) |
| 535 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 536 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 537 | goto switchstate; |
| 538 | } |
| 539 | if (trash[reql-1] != '\n') { |
| 540 | /* Incomplete line, we quit */ |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 541 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 542 | goto switchstate; |
| 543 | } |
| 544 | else if (reql > 1 && (trash[reql-2] == '\r')) |
| 545 | trash[reql-2] = 0; |
| 546 | else |
| 547 | trash[reql-1] = 0; |
| 548 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 549 | bo_skip(si->ob, reql); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 550 | |
| 551 | /* Register status code */ |
| 552 | ps->statuscode = atoi(trash); |
| 553 | |
| 554 | /* Awake main task */ |
| 555 | task_wakeup(ps->table->sync_task, TASK_WOKEN_MSG); |
| 556 | |
| 557 | /* If status code is success */ |
| 558 | if (ps->statuscode == PEER_SESSION_SUCCESSCODE) { |
| 559 | /* Init cursors */ |
| 560 | ps->teaching_origin = ps->lastpush = ps->lastack = ps->pushack = 0; |
| 561 | ps->pushed = ps->update; |
| 562 | |
| 563 | /* Init confirm counter */ |
| 564 | ps->confirm = 0; |
| 565 | |
| 566 | /* reset teaching and learning flags to 0 */ |
| 567 | ps->flags &= PEER_TEACH_RESET; |
| 568 | ps->flags &= PEER_LEARN_RESET; |
| 569 | |
| 570 | /* If current peer is local */ |
| 571 | if (ps->peer->local) { |
| 572 | /* Init cursors to push a resync */ |
| 573 | ps->teaching_origin = ps->pushed = ps->table->table->update; |
| 574 | /* flag to start to teach lesson */ |
| 575 | ps->flags |= PEER_F_TEACH_PROCESS; |
| 576 | |
| 577 | } |
| 578 | else if ((ps->table->flags & SHTABLE_RESYNC_STATEMASK) == SHTABLE_RESYNC_FROMREMOTE && |
| 579 | !(ps->table->flags & SHTABLE_F_RESYNC_ASSIGN)) { |
| 580 | /* If peer is remote and resync from remote is needed, |
| 581 | and no peer currently assigned */ |
| 582 | |
| 583 | /* assign peer for a lesson */ |
| 584 | ps->flags |= PEER_F_LEARN_ASSIGN; |
| 585 | ps->table->flags |= SHTABLE_F_RESYNC_ASSIGN; |
| 586 | } |
| 587 | |
| 588 | } |
| 589 | else { |
| 590 | /* Status code is not success, abort */ |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 591 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 592 | goto switchstate; |
| 593 | } |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 594 | si->applet.st0 = PEER_SESSION_WAITMSG; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 595 | /* fall through */ |
| 596 | } |
| 597 | case PEER_SESSION_WAITMSG: { |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 598 | struct peer_session *ps = (struct peer_session *)si->conn.data_ctx; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 599 | char c; |
| 600 | int totl = 0; |
| 601 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 602 | reql = bo_getblk(si->ob, (char *)&c, sizeof(c), totl); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 603 | if (reql <= 0) { /* closed or EOL not found */ |
| 604 | if (reql == 0) { |
| 605 | /* nothing to read */ |
| 606 | goto incomplete; |
| 607 | } |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 608 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 609 | goto switchstate; |
| 610 | } |
| 611 | totl += reql; |
| 612 | |
| 613 | if ((c & 0x80) || (c == 'D')) { |
| 614 | /* Here we have data message */ |
| 615 | unsigned int pushack; |
| 616 | struct stksess *ts; |
| 617 | struct stksess *newts; |
| 618 | struct stktable_key stkey; |
| 619 | int srvid; |
| 620 | uint32_t netinteger; |
| 621 | |
| 622 | /* Compute update remote version */ |
| 623 | if (c & 0x80) { |
| 624 | pushack = ps->pushack + (unsigned int)(c & 0x7F); |
| 625 | } |
| 626 | else { |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 627 | reql = bo_getblk(si->ob, (char *)&netinteger, sizeof(netinteger), totl); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 628 | if (reql <= 0) { /* closed or EOL not found */ |
| 629 | if (reql == 0) { |
| 630 | goto incomplete; |
| 631 | } |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 632 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 633 | goto switchstate; |
| 634 | } |
| 635 | totl += reql; |
| 636 | pushack = ntohl(netinteger); |
| 637 | } |
| 638 | |
| 639 | /* read key */ |
| 640 | if (ps->table->table->type == STKTABLE_TYPE_STRING) { |
| 641 | /* type string */ |
| 642 | stkey.key = stkey.data.buf; |
| 643 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 644 | reql = bo_getblk(si->ob, (char *)&netinteger, sizeof(netinteger), totl); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 645 | if (reql <= 0) { /* closed or EOL not found */ |
| 646 | if (reql == 0) { |
| 647 | goto incomplete; |
| 648 | } |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 649 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 650 | goto switchstate; |
| 651 | } |
| 652 | totl += reql; |
| 653 | stkey.key_len = ntohl(netinteger); |
| 654 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 655 | reql = bo_getblk(si->ob, stkey.key, stkey.key_len, totl); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 656 | if (reql <= 0) { /* closed or EOL not found */ |
| 657 | if (reql == 0) { |
| 658 | goto incomplete; |
| 659 | } |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 660 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 661 | goto switchstate; |
| 662 | } |
| 663 | totl += reql; |
| 664 | } |
| 665 | else if (ps->table->table->type == STKTABLE_TYPE_INTEGER) { |
| 666 | /* type integer */ |
| 667 | stkey.key_len = (size_t)-1; |
| 668 | stkey.key = &stkey.data.integer; |
| 669 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 670 | reql = bo_getblk(si->ob, (char *)&netinteger, sizeof(netinteger), totl); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 671 | if (reql <= 0) { /* closed or EOL not found */ |
| 672 | if (reql == 0) { |
| 673 | goto incomplete; |
| 674 | } |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 675 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 676 | goto switchstate; |
| 677 | } |
| 678 | totl += reql; |
| 679 | stkey.data.integer = ntohl(netinteger); |
| 680 | } |
| 681 | else { |
| 682 | /* type ip */ |
| 683 | stkey.key_len = (size_t)-1; |
| 684 | stkey.key = stkey.data.buf; |
| 685 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 686 | reql = bo_getblk(si->ob, (char *)&stkey.data.buf, ps->table->table->key_size, totl); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 687 | if (reql <= 0) { /* closed or EOL not found */ |
| 688 | if (reql == 0) { |
| 689 | goto incomplete; |
| 690 | } |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 691 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 692 | goto switchstate; |
| 693 | } |
| 694 | totl += reql; |
| 695 | |
| 696 | } |
| 697 | |
| 698 | /* read server id */ |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 699 | reql = bo_getblk(si->ob, (char *)&netinteger, sizeof(netinteger), totl); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 700 | if (reql <= 0) { /* closed or EOL not found */ |
| 701 | if (reql == 0) { |
| 702 | goto incomplete; |
| 703 | } |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 704 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 705 | goto switchstate; |
| 706 | } |
| 707 | totl += reql; |
| 708 | srvid = ntohl(netinteger); |
| 709 | |
| 710 | /* update entry */ |
| 711 | newts = stksess_new(ps->table->table, &stkey); |
| 712 | if (newts) { |
| 713 | /* lookup for existing entry */ |
| 714 | ts = stktable_lookup(ps->table->table, newts); |
| 715 | if (ts) { |
| 716 | /* the entry already exist, we can free ours */ |
| 717 | stktable_touch(ps->table->table, ts, 0); |
| 718 | stksess_free(ps->table->table, newts); |
| 719 | } |
| 720 | else { |
| 721 | struct eb32_node *eb; |
| 722 | |
| 723 | /* create new entry */ |
| 724 | ts = stktable_store(ps->table->table, newts, 0); |
| 725 | ts->upd.key= (++ps->table->table->update)+(2^31); |
| 726 | eb = eb32_insert(&ps->table->table->updates, &ts->upd); |
| 727 | if (eb != &ts->upd) { |
| 728 | eb32_delete(eb); |
| 729 | eb32_insert(&ps->table->table->updates, &ts->upd); |
| 730 | } |
| 731 | } |
| 732 | |
| 733 | /* update entry */ |
| 734 | if (srvid && stktable_data_ptr(ps->table->table, ts, STKTABLE_DT_SERVER_ID)) |
| 735 | stktable_data_cast(stktable_data_ptr(ps->table->table, ts, STKTABLE_DT_SERVER_ID), server_id) = srvid; |
| 736 | ps->pushack = pushack; |
| 737 | } |
| 738 | |
| 739 | } |
| 740 | else if (c == 'R') { |
| 741 | /* Reset message: remote need resync */ |
| 742 | |
| 743 | /* reinit counters for a resync */ |
| 744 | ps->lastpush = 0; |
| 745 | ps->teaching_origin = ps->pushed = ps->table->table->update; |
| 746 | |
| 747 | /* reset teaching flags to 0 */ |
| 748 | ps->flags &= PEER_TEACH_RESET; |
| 749 | |
| 750 | /* flag to start to teach lesson */ |
| 751 | ps->flags |= PEER_F_TEACH_PROCESS; |
| 752 | } |
| 753 | else if (c == 'F') { |
| 754 | /* Finish message, all known updates have been pushed by remote */ |
| 755 | /* and remote is up to date */ |
| 756 | |
| 757 | /* If resync is in progress with remote peer */ |
| 758 | if (ps->flags & PEER_F_LEARN_ASSIGN) { |
| 759 | |
| 760 | /* unassign current peer for learning */ |
| 761 | ps->flags &= ~PEER_F_LEARN_ASSIGN; |
| 762 | ps->table->flags &= ~(SHTABLE_F_RESYNC_ASSIGN|SHTABLE_F_RESYNC_PROCESS); |
| 763 | |
| 764 | /* Consider table is now up2date, resync resync no more needed from local neither remote */ |
| 765 | ps->table->flags |= (SHTABLE_F_RESYNC_LOCAL|SHTABLE_F_RESYNC_REMOTE); |
| 766 | } |
| 767 | /* Increase confirm counter to launch a confirm message */ |
| 768 | ps->confirm++; |
| 769 | } |
| 770 | else if (c == 'c') { |
| 771 | /* confirm message, remote peer is now up to date with us */ |
| 772 | |
| 773 | /* If stopping state */ |
| 774 | if (stopping) { |
| 775 | /* Close session, push resync no more needed */ |
| 776 | ps->flags |= PEER_F_TEACH_COMPLETE; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 777 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 778 | goto switchstate; |
| 779 | } |
| 780 | |
| 781 | /* reset teaching flags to 0 */ |
| 782 | ps->flags &= PEER_TEACH_RESET; |
| 783 | } |
| 784 | else if (c == 'C') { |
| 785 | /* Continue message, all known updates have been pushed by remote */ |
| 786 | /* but remote is not up to date */ |
| 787 | |
| 788 | /* If resync is in progress with current peer */ |
| 789 | if (ps->flags & PEER_F_LEARN_ASSIGN) { |
| 790 | |
| 791 | /* unassign current peer */ |
| 792 | ps->flags &= ~PEER_F_LEARN_ASSIGN; |
| 793 | ps->table->flags &= ~(SHTABLE_F_RESYNC_ASSIGN|SHTABLE_F_RESYNC_PROCESS); |
| 794 | |
| 795 | /* flag current peer is not up 2 date to try from an other */ |
| 796 | ps->flags |= PEER_F_LEARN_NOTUP2DATE; |
| 797 | |
| 798 | /* reschedule a resync */ |
| 799 | ps->table->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000)); |
| 800 | task_wakeup(ps->table->sync_task, TASK_WOKEN_MSG); |
| 801 | } |
| 802 | ps->confirm++; |
| 803 | } |
| 804 | else if (c == 'A') { |
| 805 | /* ack message */ |
| 806 | uint32_t netinteger; |
| 807 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 808 | reql = bo_getblk(si->ob, (char *)&netinteger, sizeof(netinteger), totl); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 809 | if (reql <= 0) { /* closed or EOL not found */ |
| 810 | if (reql == 0) { |
| 811 | goto incomplete; |
| 812 | } |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 813 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 814 | goto switchstate; |
| 815 | } |
| 816 | totl += reql; |
| 817 | |
| 818 | /* Consider remote is up to date with "acked" version */ |
| 819 | ps->update = ntohl(netinteger); |
| 820 | } |
| 821 | else { |
| 822 | /* Unknown message */ |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 823 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 824 | goto switchstate; |
| 825 | } |
| 826 | |
| 827 | /* skip consumed message */ |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 828 | bo_skip(si->ob, totl); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 829 | |
| 830 | /* loop on that state to peek next message */ |
| 831 | continue; |
| 832 | incomplete: |
| 833 | /* Nothing to read, now we start to write */ |
| 834 | |
| 835 | /* Confirm finished or partial messages */ |
| 836 | while (ps->confirm) { |
| 837 | /* There is a confirm messages to send */ |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 838 | repl = bi_putchr(si->ib, 'c'); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 839 | if (repl <= 0) { |
| 840 | /* no more write possible */ |
| 841 | if (repl == -1) |
| 842 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 843 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 844 | goto switchstate; |
| 845 | } |
| 846 | ps->confirm--; |
| 847 | } |
| 848 | |
| 849 | /* Need to request a resync */ |
| 850 | if ((ps->flags & PEER_F_LEARN_ASSIGN) && |
| 851 | (ps->table->flags & SHTABLE_F_RESYNC_ASSIGN) && |
| 852 | !(ps->table->flags & SHTABLE_F_RESYNC_PROCESS)) { |
| 853 | /* Current peer was elected to request a resync */ |
| 854 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 855 | repl = bi_putchr(si->ib, 'R'); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 856 | if (repl <= 0) { |
| 857 | /* no more write possible */ |
| 858 | if (repl == -1) |
| 859 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 860 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 861 | goto switchstate; |
| 862 | } |
| 863 | ps->table->flags |= SHTABLE_F_RESYNC_PROCESS; |
| 864 | } |
| 865 | |
| 866 | /* It remains some updates to ack */ |
| 867 | if (ps->pushack != ps->lastack) { |
| 868 | uint32_t netinteger; |
| 869 | |
| 870 | trash[0] = 'A'; |
| 871 | netinteger = htonl(ps->pushack); |
| 872 | memcpy(&trash[1], &netinteger, sizeof(netinteger)); |
| 873 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 874 | repl = bi_putblk(si->ib, trash, 1+sizeof(netinteger)); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 875 | if (repl <= 0) { |
| 876 | /* no more write possible */ |
| 877 | if (repl == -1) |
| 878 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 879 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 880 | goto switchstate; |
| 881 | } |
| 882 | ps->lastack = ps->pushack; |
| 883 | } |
| 884 | |
| 885 | if (ps->flags & PEER_F_TEACH_PROCESS) { |
| 886 | /* current peer was requested for a lesson */ |
| 887 | |
| 888 | if (!(ps->flags & PEER_F_TEACH_STAGE1)) { |
| 889 | /* lesson stage 1 not complete */ |
| 890 | struct eb32_node *eb; |
| 891 | |
| 892 | eb = eb32_lookup_ge(&ps->table->table->updates, ps->pushed+1); |
| 893 | while (1) { |
| 894 | int msglen; |
| 895 | struct stksess *ts; |
| 896 | |
| 897 | if (!eb) { |
| 898 | /* flag lesson stage1 complete */ |
| 899 | ps->flags |= PEER_F_TEACH_STAGE1; |
| 900 | eb = eb32_first(&ps->table->table->updates); |
| 901 | if (eb) |
| 902 | ps->pushed = eb->key - 1; |
| 903 | break; |
| 904 | } |
| 905 | |
| 906 | ts = eb32_entry(eb, struct stksess, upd); |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 907 | msglen = peer_prepare_datamsg(ts, ps, trash, trashlen); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 908 | if (msglen) { |
| 909 | /* message to buffer */ |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 910 | repl = bi_putblk(si->ib, trash, msglen); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 911 | if (repl <= 0) { |
| 912 | /* no more write possible */ |
| 913 | if (repl == -1) |
| 914 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 915 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 916 | goto switchstate; |
| 917 | } |
| 918 | ps->lastpush = ps->pushed = ts->upd.key; |
| 919 | } |
| 920 | eb = eb32_next(eb); |
| 921 | } |
| 922 | } /* !TEACH_STAGE1 */ |
| 923 | |
| 924 | if (!(ps->flags & PEER_F_TEACH_STAGE2)) { |
| 925 | /* lesson stage 2 not complete */ |
| 926 | struct eb32_node *eb; |
| 927 | |
| 928 | eb = eb32_lookup_ge(&ps->table->table->updates, ps->pushed+1); |
| 929 | while (1) { |
| 930 | int msglen; |
| 931 | struct stksess *ts; |
| 932 | |
| 933 | if (!eb || eb->key > ps->teaching_origin) { |
| 934 | /* flag lesson stage1 complete */ |
| 935 | ps->flags |= PEER_F_TEACH_STAGE2; |
| 936 | ps->pushed = ps->teaching_origin; |
| 937 | break; |
| 938 | } |
| 939 | |
| 940 | ts = eb32_entry(eb, struct stksess, upd); |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 941 | msglen = peer_prepare_datamsg(ts, ps, trash, trashlen); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 942 | if (msglen) { |
| 943 | /* message to buffer */ |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 944 | repl = bi_putblk(si->ib, trash, msglen); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 945 | if (repl <= 0) { |
| 946 | /* no more write possible */ |
| 947 | if (repl == -1) |
| 948 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 949 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 950 | goto switchstate; |
| 951 | } |
| 952 | ps->lastpush = ps->pushed = ts->upd.key; |
| 953 | } |
| 954 | eb = eb32_next(eb); |
| 955 | } |
| 956 | } /* !TEACH_STAGE2 */ |
| 957 | |
| 958 | if (!(ps->flags & PEER_F_TEACH_FINISHED)) { |
| 959 | /* process final lesson message */ |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 960 | repl = bi_putchr(si->ib, ((ps->table->flags & SHTABLE_RESYNC_STATEMASK) == SHTABLE_RESYNC_FINISHED) ? 'F' : 'C'); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 961 | if (repl <= 0) { |
| 962 | /* no more write possible */ |
| 963 | if (repl == -1) |
| 964 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 965 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 966 | goto switchstate; |
| 967 | } |
| 968 | |
| 969 | /* flag finished message sent */ |
| 970 | ps->flags |= PEER_F_TEACH_FINISHED; |
| 971 | } /* !TEACH_FINISHED */ |
| 972 | } /* TEACH_PROCESS */ |
| 973 | |
| 974 | if (!(ps->flags & PEER_F_LEARN_ASSIGN) && |
| 975 | (int)(ps->pushed - ps->table->table->localupdate) < 0) { |
| 976 | /* Push local updates, only if no learning in progress (to avoid ping-pong effects) */ |
| 977 | struct eb32_node *eb; |
| 978 | |
| 979 | eb = eb32_lookup_ge(&ps->table->table->updates, ps->pushed+1); |
| 980 | while (1) { |
| 981 | int msglen; |
| 982 | struct stksess *ts; |
| 983 | |
| 984 | /* push local updates */ |
| 985 | if (!eb) { |
| 986 | eb = eb32_first(&ps->table->table->updates); |
| 987 | if (!eb || ((int)(eb->key - ps->pushed) <= 0)) { |
| 988 | ps->pushed = ps->table->table->localupdate; |
| 989 | break; |
| 990 | } |
| 991 | } |
| 992 | |
| 993 | if ((int)(eb->key - ps->table->table->localupdate) > 0) { |
| 994 | ps->pushed = ps->table->table->localupdate; |
| 995 | break; |
| 996 | } |
| 997 | |
| 998 | ts = eb32_entry(eb, struct stksess, upd); |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 999 | msglen = peer_prepare_datamsg(ts, ps, trash, trashlen); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1000 | if (msglen) { |
| 1001 | /* message to buffer */ |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 1002 | repl = bi_putblk(si->ib, trash, msglen); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1003 | if (repl <= 0) { |
| 1004 | /* no more write possible */ |
| 1005 | if (repl == -1) |
| 1006 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 1007 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1008 | goto switchstate; |
| 1009 | } |
| 1010 | ps->lastpush = ps->pushed = ts->upd.key; |
| 1011 | } |
| 1012 | eb = eb32_next(eb); |
| 1013 | } |
| 1014 | } /* ! LEARN_ASSIGN */ |
| 1015 | /* noting more to do */ |
| 1016 | goto out; |
| 1017 | } |
| 1018 | case PEER_SESSION_EXIT: |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 1019 | repl = snprintf(trash, trashlen, "%d\n", si->applet.st1); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1020 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 1021 | if (bi_putblk(si->ib, trash, repl) == -1) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1022 | goto out; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 1023 | si->applet.st0 = PEER_SESSION_END; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1024 | /* fall through */ |
| 1025 | case PEER_SESSION_END: { |
Willy Tarreau | 73b013b | 2012-05-21 16:31:45 +0200 | [diff] [blame] | 1026 | si_shutw(si); |
| 1027 | si_shutr(si); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1028 | si->ib->flags |= BF_READ_NULL; |
| 1029 | goto quit; |
| 1030 | } |
| 1031 | } |
| 1032 | } |
| 1033 | out: |
Willy Tarreau | 73b013b | 2012-05-21 16:31:45 +0200 | [diff] [blame] | 1034 | si_update(si); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1035 | si->ob->flags |= BF_READ_DONTWAIT; |
| 1036 | /* we don't want to expire timeouts while we're processing requests */ |
| 1037 | si->ib->rex = TICK_ETERNITY; |
| 1038 | si->ob->wex = TICK_ETERNITY; |
| 1039 | quit: |
| 1040 | return; |
| 1041 | } |
| 1042 | |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 1043 | static struct si_applet peer_applet = { |
| 1044 | .name = "<PEER>", /* used for logging */ |
| 1045 | .fct = peer_io_handler, |
Aman Gupta | 9a13e84 | 2012-04-02 18:57:53 -0700 | [diff] [blame] | 1046 | .release = peer_session_release, |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 1047 | }; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1048 | |
| 1049 | /* |
| 1050 | * Use this function to force a close of a peer session |
| 1051 | */ |
Simon Horman | 9655377 | 2011-06-08 09:18:51 +0900 | [diff] [blame] | 1052 | static void peer_session_forceshutdown(struct session * session) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1053 | { |
| 1054 | struct stream_interface *oldsi; |
| 1055 | |
Willy Tarreau | 7c0a151 | 2011-03-10 11:17:02 +0100 | [diff] [blame] | 1056 | if (session->si[0].target.type == TARG_TYPE_APPLET && |
| 1057 | session->si[0].target.ptr.a == &peer_applet) { |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1058 | oldsi = &session->si[0]; |
| 1059 | } |
| 1060 | else { |
| 1061 | oldsi = &session->si[1]; |
| 1062 | } |
| 1063 | |
| 1064 | /* call release to reinit resync states if needed */ |
| 1065 | peer_session_release(oldsi); |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 1066 | oldsi->applet.st0 = PEER_SESSION_END; |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 1067 | oldsi->conn.data_ctx = NULL; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1068 | task_wakeup(session->task, TASK_WOKEN_MSG); |
| 1069 | } |
| 1070 | |
| 1071 | /* |
| 1072 | * this function is called on a read event from a listen socket, corresponding |
| 1073 | * to an accept. It tries to accept as many connections as possible. |
Willy Tarreau | bd55e31 | 2010-11-11 10:55:09 +0100 | [diff] [blame] | 1074 | * It returns a positive value upon success, 0 if the connection needs to be |
| 1075 | * closed and ignored, or a negative value upon critical failure. |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1076 | */ |
| 1077 | int peer_accept(struct session *s) |
| 1078 | { |
| 1079 | /* we have a dedicated I/O handler for the stats */ |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 1080 | stream_int_register_handler(&s->si[1], &peer_applet); |
Willy Tarreau | 7b7a8e9 | 2011-03-27 19:53:06 +0200 | [diff] [blame] | 1081 | copy_target(&s->target, &s->si[1].target); // for logging only |
Willy Tarreau | 9498113 | 2012-05-21 17:09:48 +0200 | [diff] [blame] | 1082 | s->si[1].conn.data_ctx = s; |
Willy Tarreau | bc4af05 | 2011-02-13 13:25:14 +0100 | [diff] [blame] | 1083 | s->si[1].applet.st0 = PEER_SESSION_ACCEPT; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1084 | |
| 1085 | tv_zero(&s->logs.tv_request); |
| 1086 | s->logs.t_queue = 0; |
| 1087 | s->logs.t_connect = 0; |
| 1088 | s->logs.t_data = 0; |
| 1089 | s->logs.t_close = 0; |
| 1090 | s->logs.bytes_in = s->logs.bytes_out = 0; |
| 1091 | s->logs.prx_queue_size = 0;/* we get the number of pending conns before us */ |
| 1092 | s->logs.srv_queue_size = 0; /* we will get this number soon */ |
| 1093 | |
| 1094 | s->req->flags |= BF_READ_DONTWAIT; /* we plan to read small requests */ |
| 1095 | |
| 1096 | if (s->listener->timeout) { |
| 1097 | s->req->rto = *s->listener->timeout; |
| 1098 | s->rep->wto = *s->listener->timeout; |
| 1099 | } |
| 1100 | return 1; |
| 1101 | } |
| 1102 | |
| 1103 | /* |
Willy Tarreau | bd55e31 | 2010-11-11 10:55:09 +0100 | [diff] [blame] | 1104 | * Create a new peer session in assigned state (connect will start automatically) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1105 | */ |
Simon Horman | 9655377 | 2011-06-08 09:18:51 +0900 | [diff] [blame] | 1106 | static struct session *peer_session_create(struct peer *peer, struct peer_session *ps) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1107 | { |
| 1108 | struct listener *l = ((struct proxy *)peer->peers->peers_fe)->listen; |
| 1109 | struct proxy *p = (struct proxy *)l->frontend; /* attached frontend */ |
| 1110 | struct session *s; |
| 1111 | struct http_txn *txn; |
| 1112 | struct task *t; |
| 1113 | |
| 1114 | if ((s = pool_alloc2(pool2_session)) == NULL) { /* disable this proxy for a while */ |
| 1115 | Alert("out of memory in event_accept().\n"); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1116 | goto out_close; |
| 1117 | } |
| 1118 | |
| 1119 | LIST_ADDQ(&sessions, &s->list); |
| 1120 | LIST_INIT(&s->back_refs); |
| 1121 | |
| 1122 | s->flags = SN_ASSIGNED|SN_ADDR_SET; |
| 1123 | s->term_trace = 0; |
| 1124 | |
| 1125 | /* if this session comes from a known monitoring system, we want to ignore |
| 1126 | * it as soon as possible, which means closing it immediately for TCP. |
| 1127 | */ |
| 1128 | if ((t = task_new()) == NULL) { /* disable this proxy for a while */ |
| 1129 | Alert("out of memory in event_accept().\n"); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1130 | goto out_free_session; |
| 1131 | } |
| 1132 | |
| 1133 | ps->reconnect = tick_add(now_ms, MS_TO_TICKS(5000)); |
| 1134 | ps->statuscode = PEER_SESSION_CONNECTCODE; |
| 1135 | |
| 1136 | t->process = l->handler; |
| 1137 | t->context = s; |
| 1138 | t->nice = l->nice; |
| 1139 | |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 1140 | memcpy(&s->si[1].addr.to, &peer->addr, sizeof(s->si[1].addr.to)); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1141 | s->task = t; |
| 1142 | s->listener = l; |
| 1143 | |
| 1144 | /* Note: initially, the session's backend points to the frontend. |
| 1145 | * This changes later when switching rules are executed or |
| 1146 | * when the default backend is assigned. |
| 1147 | */ |
| 1148 | s->be = s->fe = p; |
| 1149 | |
| 1150 | s->req = s->rep = NULL; /* will be allocated later */ |
| 1151 | |
Willy Tarreau | 96596ae | 2012-06-08 22:57:36 +0200 | [diff] [blame] | 1152 | s->si[0].conn.peeraddr = NULL; |
| 1153 | s->si[0].conn.peerlen = 0; |
Willy Tarreau | fb7508a | 2012-05-21 16:47:54 +0200 | [diff] [blame] | 1154 | s->si[0].conn.t.sock.fd = -1; |
Willy Tarreau | 505e34a | 2012-07-06 10:17:53 +0200 | [diff] [blame] | 1155 | s->si[0].conn.flags = CO_FL_NONE; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1156 | s->si[0].owner = t; |
| 1157 | s->si[0].state = s->si[0].prev_state = SI_ST_EST; |
| 1158 | s->si[0].err_type = SI_ET_NONE; |
| 1159 | s->si[0].err_loc = NULL; |
Willy Tarreau | 73b013b | 2012-05-21 16:31:45 +0200 | [diff] [blame] | 1160 | s->si[0].conn.ctrl = NULL; |
Willy Tarreau | 26d8c59 | 2012-05-07 18:12:14 +0200 | [diff] [blame] | 1161 | s->si[0].release = NULL; |
Willy Tarreau | 63e7fe3 | 2012-05-08 15:20:43 +0200 | [diff] [blame] | 1162 | s->si[0].send_proxy_ofs = 0; |
Emeric Brun | 21adb02 | 2012-05-18 16:32:13 +0200 | [diff] [blame] | 1163 | set_target_client(&s->si[0].target, l); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1164 | s->si[0].exp = TICK_ETERNITY; |
| 1165 | s->si[0].flags = SI_FL_NONE; |
| 1166 | if (s->fe->options2 & PR_O2_INDEPSTR) |
| 1167 | s->si[0].flags |= SI_FL_INDEP_STR; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1168 | |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 1169 | stream_int_register_handler(&s->si[0], &peer_applet); |
Willy Tarreau | fa6bac6 | 2012-05-31 14:16:59 +0200 | [diff] [blame] | 1170 | s->si[0].applet.st0 = PEER_SESSION_CONNECT; |
| 1171 | s->si[0].conn.data_ctx = (void *)ps; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1172 | |
Willy Tarreau | 96596ae | 2012-06-08 22:57:36 +0200 | [diff] [blame] | 1173 | s->si[1].conn.peeraddr = NULL; |
| 1174 | s->si[1].conn.peerlen = 0; |
Willy Tarreau | fb7508a | 2012-05-21 16:47:54 +0200 | [diff] [blame] | 1175 | s->si[1].conn.t.sock.fd = -1; /* just to help with debugging */ |
Willy Tarreau | 505e34a | 2012-07-06 10:17:53 +0200 | [diff] [blame] | 1176 | s->si[1].conn.flags = CO_FL_NONE; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1177 | s->si[1].owner = t; |
| 1178 | s->si[1].state = s->si[1].prev_state = SI_ST_ASS; |
| 1179 | s->si[1].conn_retries = p->conn_retries; |
| 1180 | s->si[1].err_type = SI_ET_NONE; |
| 1181 | s->si[1].err_loc = NULL; |
Willy Tarreau | 73b013b | 2012-05-21 16:31:45 +0200 | [diff] [blame] | 1182 | s->si[1].conn.ctrl = peer->proto; |
Willy Tarreau | 26d8c59 | 2012-05-07 18:12:14 +0200 | [diff] [blame] | 1183 | s->si[1].release = NULL; |
Willy Tarreau | 63e7fe3 | 2012-05-08 15:20:43 +0200 | [diff] [blame] | 1184 | s->si[1].send_proxy_ofs = 0; |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 1185 | set_target_proxy(&s->si[1].target, s->be); |
Willy Tarreau | 1348d4c | 2012-05-21 22:18:17 +0200 | [diff] [blame] | 1186 | stream_interface_prepare(&s->si[1], peer->sock); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1187 | s->si[1].exp = TICK_ETERNITY; |
| 1188 | s->si[1].flags = SI_FL_NONE; |
| 1189 | if (s->be->options2 & PR_O2_INDEPSTR) |
| 1190 | s->si[1].flags |= SI_FL_INDEP_STR; |
| 1191 | |
Willy Tarreau | 9bd0d74 | 2011-07-20 00:17:39 +0200 | [diff] [blame] | 1192 | session_init_srv_conn(s); |
Simon Horman | 8b7b05a | 2011-08-13 08:03:48 +0900 | [diff] [blame] | 1193 | set_target_proxy(&s->target, s->be); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1194 | s->pend_pos = NULL; |
| 1195 | |
| 1196 | /* init store persistence */ |
| 1197 | s->store_count = 0; |
| 1198 | s->stkctr1_entry = NULL; |
| 1199 | s->stkctr2_entry = NULL; |
| 1200 | |
| 1201 | /* FIXME: the logs are horribly complicated now, because they are |
| 1202 | * defined in <p>, <p>, and later <be> and <be>. |
| 1203 | */ |
| 1204 | |
| 1205 | s->logs.logwait = 0; |
| 1206 | s->do_log = NULL; |
| 1207 | |
| 1208 | /* default error reporting function, may be changed by analysers */ |
| 1209 | s->srv_error = default_srv_error; |
| 1210 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1211 | s->uniq_id = 0; |
Willy Tarreau | bd83314 | 2012-05-08 15:51:44 +0200 | [diff] [blame] | 1212 | s->unique_id = NULL; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1213 | |
| 1214 | txn = &s->txn; |
| 1215 | /* Those variables will be checked and freed if non-NULL in |
| 1216 | * session.c:session_free(). It is important that they are |
| 1217 | * properly initialized. |
| 1218 | */ |
| 1219 | txn->sessid = NULL; |
| 1220 | txn->srv_cookie = NULL; |
| 1221 | txn->cli_cookie = NULL; |
| 1222 | txn->uri = NULL; |
| 1223 | txn->req.cap = NULL; |
| 1224 | txn->rsp.cap = NULL; |
| 1225 | txn->hdr_idx.v = NULL; |
| 1226 | txn->hdr_idx.size = txn->hdr_idx.used = 0; |
| 1227 | |
| 1228 | if ((s->req = pool_alloc2(pool2_buffer)) == NULL) |
| 1229 | goto out_fail_req; /* no memory */ |
| 1230 | |
| 1231 | s->req->size = global.tune.bufsize; |
| 1232 | buffer_init(s->req); |
| 1233 | s->req->prod = &s->si[0]; |
| 1234 | s->req->cons = &s->si[1]; |
| 1235 | s->si[0].ib = s->si[1].ob = s->req; |
| 1236 | |
| 1237 | s->req->flags |= BF_READ_ATTACHED; /* the producer is already connected */ |
| 1238 | |
| 1239 | /* activate default analysers enabled for this listener */ |
| 1240 | s->req->analysers = l->analysers; |
| 1241 | |
| 1242 | /* note: this should not happen anymore since there's always at least the switching rules */ |
| 1243 | if (!s->req->analysers) { |
| 1244 | buffer_auto_connect(s->req);/* don't wait to establish connection */ |
| 1245 | buffer_auto_close(s->req);/* let the producer forward close requests */ |
| 1246 | } |
| 1247 | |
| 1248 | s->req->rto = s->fe->timeout.client; |
| 1249 | s->req->wto = s->be->timeout.server; |
| 1250 | |
| 1251 | if ((s->rep = pool_alloc2(pool2_buffer)) == NULL) |
| 1252 | goto out_fail_rep; /* no memory */ |
| 1253 | |
| 1254 | s->rep->size = global.tune.bufsize; |
| 1255 | buffer_init(s->rep); |
| 1256 | s->rep->prod = &s->si[1]; |
| 1257 | s->rep->cons = &s->si[0]; |
| 1258 | s->si[0].ob = s->si[1].ib = s->rep; |
| 1259 | |
| 1260 | s->rep->rto = s->be->timeout.server; |
| 1261 | s->rep->wto = s->fe->timeout.client; |
| 1262 | |
| 1263 | s->req->rex = TICK_ETERNITY; |
| 1264 | s->req->wex = TICK_ETERNITY; |
| 1265 | s->req->analyse_exp = TICK_ETERNITY; |
| 1266 | s->rep->rex = TICK_ETERNITY; |
| 1267 | s->rep->wex = TICK_ETERNITY; |
| 1268 | s->rep->analyse_exp = TICK_ETERNITY; |
| 1269 | t->expire = TICK_ETERNITY; |
| 1270 | |
| 1271 | s->rep->flags |= BF_READ_DONTWAIT; |
| 1272 | /* it is important not to call the wakeup function directly but to |
| 1273 | * pass through task_wakeup(), because this one knows how to apply |
| 1274 | * priorities to tasks. |
| 1275 | */ |
| 1276 | task_wakeup(t, TASK_WOKEN_INIT); |
| 1277 | |
| 1278 | l->nbconn++; /* warning! right now, it's up to the handler to decrease this */ |
| 1279 | p->feconn++;/* beconn will be increased later */ |
| 1280 | jobs++; |
Willy Tarreau | 3c63fd8 | 2011-09-07 18:00:47 +0200 | [diff] [blame] | 1281 | if (!(s->listener->options & LI_O_UNLIMITED)) |
| 1282 | actconn++; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1283 | totalconn++; |
| 1284 | |
| 1285 | return s; |
| 1286 | |
| 1287 | /* Error unrolling */ |
| 1288 | out_fail_rep: |
| 1289 | pool_free2(pool2_buffer, s->req); |
| 1290 | out_fail_req: |
| 1291 | task_free(t); |
| 1292 | out_free_session: |
| 1293 | LIST_DEL(&s->list); |
| 1294 | pool_free2(pool2_session, s); |
| 1295 | out_close: |
| 1296 | return s; |
| 1297 | } |
| 1298 | |
| 1299 | /* |
| 1300 | * Task processing function to manage re-connect and peer session |
| 1301 | * tasks wakeup on local update. |
| 1302 | */ |
Simon Horman | 9655377 | 2011-06-08 09:18:51 +0900 | [diff] [blame] | 1303 | static struct task *process_peer_sync(struct task * task) |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1304 | { |
| 1305 | struct shared_table *st = (struct shared_table *)task->context; |
| 1306 | struct peer_session *ps; |
| 1307 | |
| 1308 | task->expire = TICK_ETERNITY; |
| 1309 | |
| 1310 | if (!stopping) { |
| 1311 | /* Normal case (not soft stop)*/ |
| 1312 | if (((st->flags & SHTABLE_RESYNC_STATEMASK) == SHTABLE_RESYNC_FROMLOCAL) && |
| 1313 | (!nb_oldpids || tick_is_expired(st->resync_timeout, now_ms)) && |
| 1314 | !(st->flags & SHTABLE_F_RESYNC_ASSIGN)) { |
| 1315 | /* Resync from local peer needed |
| 1316 | no peer was assigned for the lesson |
| 1317 | and no old local peer found |
| 1318 | or resync timeout expire */ |
| 1319 | |
| 1320 | /* flag no more resync from local, to try resync from remotes */ |
| 1321 | st->flags |= SHTABLE_F_RESYNC_LOCAL; |
| 1322 | |
| 1323 | /* reschedule a resync */ |
| 1324 | st->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000)); |
| 1325 | } |
| 1326 | |
| 1327 | /* For each session */ |
| 1328 | for (ps = st->sessions; ps; ps = ps->next) { |
| 1329 | /* For each remote peers */ |
| 1330 | if (!ps->peer->local) { |
| 1331 | if (!ps->session) { |
| 1332 | /* no active session */ |
| 1333 | if (ps->statuscode == 0 || |
| 1334 | ps->statuscode == PEER_SESSION_SUCCESSCODE || |
| 1335 | ((ps->statuscode == PEER_SESSION_CONNECTCODE || |
| 1336 | ps->statuscode == PEER_SESSION_CONNECTEDCODE) && |
| 1337 | tick_is_expired(ps->reconnect, now_ms))) { |
| 1338 | /* connection never tried |
| 1339 | * or previous session established with success |
| 1340 | * or previous session failed during connection |
| 1341 | * and reconnection timer is expired */ |
| 1342 | |
| 1343 | /* retry a connect */ |
| 1344 | ps->session = peer_session_create(ps->peer, ps); |
| 1345 | } |
| 1346 | else if (ps->statuscode == PEER_SESSION_CONNECTCODE || |
| 1347 | ps->statuscode == PEER_SESSION_CONNECTEDCODE) { |
| 1348 | /* If previous session failed during connection |
| 1349 | * but reconnection timer is not expired */ |
| 1350 | |
| 1351 | /* reschedule task for reconnect */ |
| 1352 | task->expire = tick_first(task->expire, ps->reconnect); |
| 1353 | } |
| 1354 | /* else do nothing */ |
| 1355 | } /* !ps->session */ |
| 1356 | else if (ps->statuscode == PEER_SESSION_SUCCESSCODE) { |
| 1357 | /* current session is active and established */ |
| 1358 | if (((st->flags & SHTABLE_RESYNC_STATEMASK) == SHTABLE_RESYNC_FROMREMOTE) && |
| 1359 | !(st->flags & SHTABLE_F_RESYNC_ASSIGN) && |
| 1360 | !(ps->flags & PEER_F_LEARN_NOTUP2DATE)) { |
| 1361 | /* Resync from a remote is needed |
| 1362 | * and no peer was assigned for lesson |
| 1363 | * and current peer may be up2date */ |
| 1364 | |
| 1365 | /* assign peer for the lesson */ |
| 1366 | ps->flags |= PEER_F_LEARN_ASSIGN; |
| 1367 | st->flags |= SHTABLE_F_RESYNC_ASSIGN; |
| 1368 | |
| 1369 | /* awake peer session task to handle a request of resync */ |
| 1370 | task_wakeup(ps->session->task, TASK_WOKEN_MSG); |
| 1371 | } |
| 1372 | else if ((int)(ps->pushed - ps->table->table->localupdate) < 0) { |
| 1373 | /* awake peer session task to push local updates */ |
| 1374 | task_wakeup(ps->session->task, TASK_WOKEN_MSG); |
| 1375 | } |
| 1376 | /* else do nothing */ |
| 1377 | } /* SUCCESSCODE */ |
| 1378 | } /* !ps->peer->local */ |
| 1379 | } /* for */ |
| 1380 | |
| 1381 | /* Resync from remotes expired: consider resync is finished */ |
| 1382 | if (((st->flags & SHTABLE_RESYNC_STATEMASK) == SHTABLE_RESYNC_FROMREMOTE) && |
| 1383 | !(st->flags & SHTABLE_F_RESYNC_ASSIGN) && |
| 1384 | tick_is_expired(st->resync_timeout, now_ms)) { |
| 1385 | /* Resync from remote peer needed |
| 1386 | * no peer was assigned for the lesson |
| 1387 | * and resync timeout expire */ |
| 1388 | |
| 1389 | /* flag no more resync from remote, consider resync is finished */ |
| 1390 | st->flags |= SHTABLE_F_RESYNC_REMOTE; |
| 1391 | } |
| 1392 | |
| 1393 | if ((st->flags & SHTABLE_RESYNC_STATEMASK) != SHTABLE_RESYNC_FINISHED) { |
| 1394 | /* Resync not finished*/ |
| 1395 | /* reschedule task to resync timeout, to ended resync if needed */ |
| 1396 | task->expire = tick_first(task->expire, st->resync_timeout); |
| 1397 | } |
| 1398 | } /* !stopping */ |
| 1399 | else { |
| 1400 | /* soft stop case */ |
| 1401 | if (task->state & TASK_WOKEN_SIGNAL) { |
| 1402 | /* We've just recieved the signal */ |
| 1403 | if (!(st->flags & SHTABLE_F_DONOTSTOP)) { |
| 1404 | /* add DO NOT STOP flag if not present */ |
| 1405 | jobs++; |
| 1406 | st->flags |= SHTABLE_F_DONOTSTOP; |
| 1407 | } |
| 1408 | |
| 1409 | /* disconnect all connected peers */ |
| 1410 | for (ps = st->sessions; ps; ps = ps->next) { |
| 1411 | if (ps->session) { |
| 1412 | peer_session_forceshutdown(ps->session); |
| 1413 | ps->session = NULL; |
| 1414 | } |
| 1415 | } |
| 1416 | } |
| 1417 | ps = st->local_session; |
| 1418 | |
| 1419 | if (ps->flags & PEER_F_TEACH_COMPLETE) { |
| 1420 | if (st->flags & SHTABLE_F_DONOTSTOP) { |
| 1421 | /* resync of new process was complete, current process can die now */ |
| 1422 | jobs--; |
| 1423 | st->flags &= ~SHTABLE_F_DONOTSTOP; |
| 1424 | } |
| 1425 | } |
| 1426 | else if (!ps->session) { |
| 1427 | /* If session is not active */ |
| 1428 | if (ps->statuscode == 0 || |
| 1429 | ps->statuscode == PEER_SESSION_SUCCESSCODE || |
| 1430 | ps->statuscode == PEER_SESSION_CONNECTEDCODE || |
| 1431 | ps->statuscode == PEER_SESSION_TRYAGAIN) { |
| 1432 | /* connection never tried |
| 1433 | * or previous session was successfully established |
| 1434 | * or previous session tcp connect success but init state incomplete |
| 1435 | * or during previous connect, peer replies a try again statuscode */ |
| 1436 | |
| 1437 | /* connect to the peer */ |
| 1438 | ps->session = peer_session_create(ps->peer, ps); |
| 1439 | } |
| 1440 | else { |
| 1441 | /* Other error cases */ |
| 1442 | if (st->flags & SHTABLE_F_DONOTSTOP) { |
| 1443 | /* unable to resync new process, current process can die now */ |
| 1444 | jobs--; |
| 1445 | st->flags &= ~SHTABLE_F_DONOTSTOP; |
| 1446 | } |
| 1447 | } |
| 1448 | } |
| 1449 | else if (ps->statuscode == PEER_SESSION_SUCCESSCODE && |
| 1450 | (int)(ps->pushed - ps->table->table->localupdate) < 0) { |
| 1451 | /* current session active and established |
| 1452 | awake session to push remaining local updates */ |
| 1453 | task_wakeup(ps->session->task, TASK_WOKEN_MSG); |
| 1454 | } |
| 1455 | } /* stopping */ |
| 1456 | /* Wakeup for re-connect */ |
| 1457 | return task; |
| 1458 | } |
| 1459 | |
| 1460 | /* |
| 1461 | * Function used to register a table for sync on a group of peers |
| 1462 | * |
| 1463 | */ |
| 1464 | void peers_register_table(struct peers *peers, struct stktable *table) |
| 1465 | { |
| 1466 | struct shared_table *st; |
| 1467 | struct peer * curpeer; |
| 1468 | struct peer_session *ps; |
| 1469 | |
| 1470 | st = (struct shared_table *)calloc(1,sizeof(struct shared_table)); |
| 1471 | st->table = table; |
| 1472 | st->next = peers->tables; |
| 1473 | st->resync_timeout = tick_add(now_ms, MS_TO_TICKS(5000)); |
| 1474 | peers->tables = st; |
| 1475 | |
| 1476 | for (curpeer = peers->remote; curpeer; curpeer = curpeer->next) { |
| 1477 | ps = (struct peer_session *)calloc(1,sizeof(struct peer_session)); |
| 1478 | ps->table = st; |
| 1479 | ps->peer = curpeer; |
| 1480 | if (curpeer->local) |
| 1481 | st->local_session = ps; |
| 1482 | ps->next = st->sessions; |
| 1483 | ps->reconnect = now_ms; |
| 1484 | st->sessions = ps; |
| 1485 | peers->peers_fe->maxconn += 3; |
| 1486 | } |
| 1487 | |
| 1488 | peers->peers_fe->listen->maxconn = peers->peers_fe->maxconn; |
| 1489 | st->sync_task = task_new(); |
| 1490 | st->sync_task->process = process_peer_sync; |
| 1491 | st->sync_task->expire = TICK_ETERNITY; |
| 1492 | st->sync_task->context = (void *)st; |
| 1493 | table->sync_task =st->sync_task; |
| 1494 | signal_register_task(0, table->sync_task, 0); |
| 1495 | task_wakeup(st->sync_task, TASK_WOKEN_INIT); |
| 1496 | } |
| 1497 | |