| Commit | Line | Data |
|---|---|---|
| 9ab15106 MD |
1 | /* |
| 2 | * Copyright (c) 2011-2012 The DragonFly Project. All rights reserved. | |
| 3 | * | |
| 4 | * This code is derived from software contributed to The DragonFly Project | |
| 5 | * by Matthew Dillon <dillon@dragonflybsd.org> | |
| 6 | * by Venkatesh Srinivas <vsrinivas@dragonflybsd.org> | |
| 7 | * | |
| 8 | * Redistribution and use in source and binary forms, with or without | |
| 9 | * modification, are permitted provided that the following conditions | |
| 10 | * are met: | |
| 11 | * | |
| 12 | * 1. Redistributions of source code must retain the above copyright | |
| 13 | * notice, this list of conditions and the following disclaimer. | |
| 14 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 15 | * notice, this list of conditions and the following disclaimer in | |
| 16 | * the documentation and/or other materials provided with the | |
| 17 | * distribution. | |
| 18 | * 3. Neither the name of The DragonFly Project nor the names of its | |
| 19 | * contributors may be used to endorse or promote products derived | |
| 20 | * from this software without specific, prior written permission. | |
| 21 | * | |
| 22 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
| 23 | * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
| 24 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | |
| 25 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | |
| 26 | * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | |
| 27 | * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, | |
| 28 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
| 29 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | |
| 30 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | |
| 31 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | |
| 32 | * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
| 33 | * SUCH DAMAGE. | |
| 34 | */ | |
| 35 | ||
| 36 | #include "hammer2.h" | |
| 37 | ||
| 78476205 | 38 | static int hammer2_state_msgrx(hammer2_iocom_t *iocom, hammer2_msg_t *msg); |
| 78476205 MD |
39 | static void hammer2_state_cleanuptx(hammer2_iocom_t *iocom, hammer2_msg_t *msg); |
| 40 | ||
| 9ab15106 | 41 | /* |
| cf715800 MD |
42 | * Indexed messages are stored in a red-black tree indexed by their |
| 43 | * msgid. Only persistent messages are indexed. | |
| 44 | */ | |
| 45 | int | |
| 46 | hammer2_state_cmp(hammer2_state_t *state1, hammer2_state_t *state2) | |
| 47 | { | |
| 48 | if (state1->spanid < state2->spanid) | |
| 49 | return(-1); | |
| 50 | if (state1->spanid > state2->spanid) | |
| 51 | return(1); | |
| 52 | if (state1->msgid < state2->msgid) | |
| 53 | return(-1); | |
| 54 | if (state1->msgid > state2->msgid) | |
| 55 | return(1); | |
| 56 | return(0); | |
| 57 | } | |
| 58 | ||
| 59 | RB_GENERATE(hammer2_state_tree, hammer2_state, rbnode, hammer2_state_cmp); | |
| 60 | ||
| 61 | /* | |
| 9ab15106 MD |
62 | * Initialize a low-level ioq |
| 63 | */ | |
| 64 | void | |
| 65 | hammer2_ioq_init(hammer2_iocom_t *iocom __unused, hammer2_ioq_t *ioq) | |
| 66 | { | |
| 67 | bzero(ioq, sizeof(*ioq)); | |
| 68 | ioq->state = HAMMER2_MSGQ_STATE_HEADER1; | |
| 69 | TAILQ_INIT(&ioq->msgq); | |
| 70 | } | |
| 71 | ||
| 7dc0f844 MD |
72 | /* |
| 73 | * Cleanup queue. | |
| 74 | * | |
| 75 | * caller holds iocom->mtx. | |
| 76 | */ | |
| 9ab15106 | 77 | void |
| 4a2e0eae | 78 | hammer2_ioq_done(hammer2_iocom_t *iocom __unused, hammer2_ioq_t *ioq) |
| 9ab15106 MD |
79 | { |
| 80 | hammer2_msg_t *msg; | |
| 81 | ||
| 82 | while ((msg = TAILQ_FIRST(&ioq->msgq)) != NULL) { | |
| 7dc0f844 | 83 | assert(0); /* shouldn't happen */ |
| 78476205 | 84 | TAILQ_REMOVE(&ioq->msgq, msg, qentry); |
| 29ead430 | 85 | hammer2_msg_free(msg); |
| 9ab15106 MD |
86 | } |
| 87 | if ((msg = ioq->msg) != NULL) { | |
| 88 | ioq->msg = NULL; | |
| 29ead430 | 89 | hammer2_msg_free(msg); |
| 9ab15106 MD |
90 | } |
| 91 | } | |
| 92 | ||
| 93 | /* | |
| 5903497c MD |
94 | * Initialize a low-level communications channel. |
| 95 | * | |
| 29ead430 | 96 | * NOTE: The signal_func() is called at least once from the loop and can be |
| 5903497c | 97 | * re-armed via hammer2_iocom_restate(). |
| 9ab15106 MD |
98 | */ |
| 99 | void | |
| 5903497c | 100 | hammer2_iocom_init(hammer2_iocom_t *iocom, int sock_fd, int alt_fd, |
| 29ead430 MD |
101 | void (*signal_func)(hammer2_router_t *), |
| 102 | void (*rcvmsg_func)(hammer2_msg_t *), | |
| 5903497c | 103 | void (*altmsg_func)(hammer2_iocom_t *)) |
| 9ab15106 MD |
104 | { |
| 105 | bzero(iocom, sizeof(*iocom)); | |
| 106 | ||
| 29ead430 MD |
107 | iocom->router.signal_callback = signal_func; |
| 108 | iocom->router.rcvmsg_callback = rcvmsg_func; | |
| 109 | iocom->router.altmsg_callback = altmsg_func; | |
| 5903497c | 110 | |
| 7dc0f844 | 111 | pthread_mutex_init(&iocom->mtx, NULL); |
| 29ead430 MD |
112 | RB_INIT(&iocom->router.staterd_tree); |
| 113 | RB_INIT(&iocom->router.statewr_tree); | |
| 9ab15106 MD |
114 | TAILQ_INIT(&iocom->freeq); |
| 115 | TAILQ_INIT(&iocom->freeq_aux); | |
| 8c280d5d | 116 | TAILQ_INIT(&iocom->addrq); |
| 29ead430 MD |
117 | TAILQ_INIT(&iocom->router.txmsgq); |
| 118 | iocom->router.iocom = iocom; | |
| 9ab15106 MD |
119 | iocom->sock_fd = sock_fd; |
| 120 | iocom->alt_fd = alt_fd; | |
| 7dc0f844 | 121 | iocom->flags = HAMMER2_IOCOMF_RREQ; |
| 29ead430 | 122 | if (signal_func) |
| 5903497c | 123 | iocom->flags |= HAMMER2_IOCOMF_SWORK; |
| 9ab15106 MD |
124 | hammer2_ioq_init(iocom, &iocom->ioq_rx); |
| 125 | hammer2_ioq_init(iocom, &iocom->ioq_tx); | |
| 7dc0f844 MD |
126 | if (pipe(iocom->wakeupfds) < 0) |
| 127 | assert(0); | |
| 128 | fcntl(iocom->wakeupfds[0], F_SETFL, O_NONBLOCK); | |
| 129 | fcntl(iocom->wakeupfds[1], F_SETFL, O_NONBLOCK); | |
| 9ab15106 | 130 | |
| 62efe6ec MD |
131 | /* |
| 132 | * Negotiate session crypto synchronously. This will mark the | |
| 133 | * connection as error'd if it fails. | |
| 134 | */ | |
| 135 | hammer2_crypto_negotiate(iocom); | |
| 136 | ||
| 137 | /* | |
| 138 | * Make sure our fds are set to non-blocking for the iocom core. | |
| 139 | */ | |
| 9ab15106 MD |
140 | if (sock_fd >= 0) |
| 141 | fcntl(sock_fd, F_SETFL, O_NONBLOCK); | |
| 142 | #if 0 | |
| 143 | /* if line buffered our single fgets() should be fine */ | |
| 144 | if (alt_fd >= 0) | |
| 145 | fcntl(alt_fd, F_SETFL, O_NONBLOCK); | |
| 146 | #endif | |
| 147 | } | |
| 148 | ||
| 7dc0f844 | 149 | /* |
| 5903497c MD |
150 | * May only be called from a callback from iocom_core. |
| 151 | * | |
| 152 | * Adjust state machine functions, set flags to guarantee that both | |
| 153 | * the recevmsg_func and the sendmsg_func is called at least once. | |
| 154 | */ | |
| 155 | void | |
| 29ead430 MD |
156 | hammer2_router_restate(hammer2_router_t *router, |
| 157 | void (*signal_func)(hammer2_router_t *), | |
| 158 | void (*rcvmsg_func)(hammer2_msg_t *msg), | |
| 5903497c MD |
159 | void (*altmsg_func)(hammer2_iocom_t *)) |
| 160 | { | |
| 29ead430 MD |
161 | router->signal_callback = signal_func; |
| 162 | router->rcvmsg_callback = rcvmsg_func; | |
| 163 | router->altmsg_callback = altmsg_func; | |
| 164 | if (signal_func) | |
| 165 | router->iocom->flags |= HAMMER2_IOCOMF_SWORK; | |
| 5903497c | 166 | else |
| 29ead430 MD |
167 | router->iocom->flags &= ~HAMMER2_IOCOMF_SWORK; |
| 168 | } | |
| 169 | ||
| 170 | void | |
| 171 | hammer2_router_signal(hammer2_router_t *router) | |
| 172 | { | |
| 173 | if (router->signal_callback) | |
| 174 | router->iocom->flags |= HAMMER2_IOCOMF_SWORK; | |
| 5903497c MD |
175 | } |
| 176 | ||
| 177 | /* | |
| 7dc0f844 MD |
178 | * Cleanup a terminating iocom. |
| 179 | * | |
| 180 | * Caller should not hold iocom->mtx. The iocom has already been disconnected | |
| 181 | * from all possible references to it. | |
| 182 | */ | |
| 9ab15106 MD |
183 | void |
| 184 | hammer2_iocom_done(hammer2_iocom_t *iocom) | |
| 185 | { | |
| 186 | hammer2_msg_t *msg; | |
| 187 | ||
| 7dc0f844 MD |
188 | if (iocom->sock_fd >= 0) { |
| 189 | close(iocom->sock_fd); | |
| 190 | iocom->sock_fd = -1; | |
| 191 | } | |
| 192 | if (iocom->alt_fd >= 0) { | |
| 193 | close(iocom->alt_fd); | |
| 194 | iocom->alt_fd = -1; | |
| 195 | } | |
| 9ab15106 MD |
196 | hammer2_ioq_done(iocom, &iocom->ioq_rx); |
| 197 | hammer2_ioq_done(iocom, &iocom->ioq_tx); | |
| 198 | if ((msg = TAILQ_FIRST(&iocom->freeq)) != NULL) { | |
| 78476205 | 199 | TAILQ_REMOVE(&iocom->freeq, msg, qentry); |
| 9ab15106 MD |
200 | free(msg); |
| 201 | } | |
| 202 | if ((msg = TAILQ_FIRST(&iocom->freeq_aux)) != NULL) { | |
| 78476205 | 203 | TAILQ_REMOVE(&iocom->freeq_aux, msg, qentry); |
| 9ab15106 MD |
204 | free(msg->aux_data); |
| 205 | msg->aux_data = NULL; | |
| 206 | free(msg); | |
| 207 | } | |
| 7dc0f844 MD |
208 | if (iocom->wakeupfds[0] >= 0) { |
| 209 | close(iocom->wakeupfds[0]); | |
| 210 | iocom->wakeupfds[0] = -1; | |
| 211 | } | |
| 212 | if (iocom->wakeupfds[1] >= 0) { | |
| 213 | close(iocom->wakeupfds[1]); | |
| 214 | iocom->wakeupfds[1] = -1; | |
| 215 | } | |
| 216 | pthread_mutex_destroy(&iocom->mtx); | |
| 9ab15106 MD |
217 | } |
| 218 | ||
| 4a2e0eae MD |
219 | /* |
| 220 | * Allocate a new one-way message. | |
| 221 | */ | |
| 9ab15106 | 222 | hammer2_msg_t * |
| 29ead430 MD |
223 | hammer2_msg_alloc(hammer2_router_t *router, size_t aux_size, uint32_t cmd, |
| 224 | void (*func)(hammer2_msg_t *), void *data) | |
| 9ab15106 | 225 | { |
| 29ead430 MD |
226 | hammer2_state_t *state = NULL; |
| 227 | hammer2_iocom_t *iocom = router->iocom; | |
| 9ab15106 MD |
228 | hammer2_msg_t *msg; |
| 229 | int hbytes; | |
| 230 | ||
| 7dc0f844 | 231 | pthread_mutex_lock(&iocom->mtx); |
| 9ab15106 MD |
232 | if (aux_size) { |
| 233 | aux_size = (aux_size + HAMMER2_MSG_ALIGNMASK) & | |
| 234 | ~HAMMER2_MSG_ALIGNMASK; | |
| 235 | if ((msg = TAILQ_FIRST(&iocom->freeq_aux)) != NULL) | |
| 78476205 | 236 | TAILQ_REMOVE(&iocom->freeq_aux, msg, qentry); |
| 9ab15106 MD |
237 | } else { |
| 238 | if ((msg = TAILQ_FIRST(&iocom->freeq)) != NULL) | |
| 78476205 | 239 | TAILQ_REMOVE(&iocom->freeq, msg, qentry); |
| 9ab15106 | 240 | } |
| 29ead430 MD |
241 | if ((cmd & (HAMMER2_MSGF_CREATE | HAMMER2_MSGF_REPLY)) == |
| 242 | HAMMER2_MSGF_CREATE) { | |
| 243 | /* | |
| 244 | * Create state when CREATE is set without REPLY. | |
| 245 | * | |
| 246 | * NOTE: CREATE in txcmd handled by hammer2_msg_write() | |
| 247 | * NOTE: DELETE in txcmd handled by hammer2_state_cleanuptx() | |
| 248 | */ | |
| 249 | state = malloc(sizeof(*state)); | |
| 250 | bzero(state, sizeof(*state)); | |
| 251 | state->iocom = iocom; | |
| 252 | state->flags = HAMMER2_STATE_DYNAMIC; | |
| 253 | state->msgid = (uint64_t)(uintptr_t)state; | |
| 254 | /* XXX set state->spanid from router */ | |
| 255 | state->txcmd = cmd & ~(HAMMER2_MSGF_CREATE | | |
| 256 | HAMMER2_MSGF_DELETE); | |
| 257 | state->rxcmd = HAMMER2_MSGF_REPLY; | |
| 258 | state->func = func; | |
| 259 | state->any.any = data; | |
| 260 | pthread_mutex_lock(&iocom->mtx); | |
| 261 | RB_INSERT(hammer2_state_tree, &iocom->router.statewr_tree, state); | |
| 262 | pthread_mutex_unlock(&iocom->mtx); | |
| 263 | state->flags |= HAMMER2_STATE_INSERTED; | |
| 264 | } | |
| 7dc0f844 | 265 | pthread_mutex_unlock(&iocom->mtx); |
| 9ab15106 MD |
266 | if (msg == NULL) { |
| 267 | msg = malloc(sizeof(*msg)); | |
| 78476205 | 268 | bzero(msg, sizeof(*msg)); |
| 9ab15106 MD |
269 | msg->aux_data = NULL; |
| 270 | msg->aux_size = 0; | |
| 271 | } | |
| 272 | if (msg->aux_size != aux_size) { | |
| 273 | if (msg->aux_data) { | |
| 274 | free(msg->aux_data); | |
| 275 | msg->aux_data = NULL; | |
| 276 | msg->aux_size = 0; | |
| 277 | } | |
| 278 | if (aux_size) { | |
| 279 | msg->aux_data = malloc(aux_size); | |
| 280 | msg->aux_size = aux_size; | |
| 281 | } | |
| 282 | } | |
| 9ab15106 | 283 | hbytes = (cmd & HAMMER2_MSGF_SIZE) * HAMMER2_MSG_ALIGN; |
| 4a2e0eae MD |
284 | if (hbytes) |
| 285 | bzero(&msg->any.head, hbytes); | |
| 78476205 | 286 | msg->hdr_size = hbytes; |
| 9ab15106 | 287 | msg->any.head.cmd = cmd; |
| 8c280d5d MD |
288 | msg->any.head.aux_descr = 0; |
| 289 | msg->any.head.aux_crc = 0; | |
| 29ead430 MD |
290 | msg->router = router; |
| 291 | if (state) { | |
| 292 | msg->state = state; | |
| 293 | state->msg = msg; | |
| 294 | msg->any.head.msgid = state->msgid; | |
| 295 | } | |
| 9ab15106 MD |
296 | return (msg); |
| 297 | } | |
| 298 | ||
| 4a2e0eae | 299 | /* |
| 4a2e0eae MD |
300 | * Free a message so it can be reused afresh. |
| 301 | * | |
| 302 | * NOTE: aux_size can be 0 with a non-NULL aux_data. | |
| 303 | */ | |
| 7dc0f844 | 304 | static |
| 9ab15106 | 305 | void |
| 29ead430 | 306 | hammer2_msg_free_locked(hammer2_msg_t *msg) |
| 9ab15106 | 307 | { |
| 29ead430 MD |
308 | hammer2_iocom_t *iocom = msg->router->iocom; |
| 309 | ||
| 7dc0f844 | 310 | msg->state = NULL; |
| 9ab15106 | 311 | if (msg->aux_data) |
| 78476205 | 312 | TAILQ_INSERT_TAIL(&iocom->freeq_aux, msg, qentry); |
| 9ab15106 | 313 | else |
| 78476205 | 314 | TAILQ_INSERT_TAIL(&iocom->freeq, msg, qentry); |
| 9ab15106 MD |
315 | } |
| 316 | ||
| 7dc0f844 | 317 | void |
| 29ead430 | 318 | hammer2_msg_free(hammer2_msg_t *msg) |
| 7dc0f844 | 319 | { |
| 29ead430 MD |
320 | hammer2_iocom_t *iocom = msg->router->iocom; |
| 321 | ||
| 7dc0f844 | 322 | pthread_mutex_lock(&iocom->mtx); |
| 29ead430 | 323 | hammer2_msg_free_locked(msg); |
| 7dc0f844 MD |
324 | pthread_mutex_unlock(&iocom->mtx); |
| 325 | } | |
| 326 | ||
| 9ab15106 MD |
327 | /* |
| 328 | * I/O core loop for an iocom. | |
| 7dc0f844 MD |
329 | * |
| 330 | * Thread localized, iocom->mtx not held. | |
| 9ab15106 MD |
331 | */ |
| 332 | void | |
| 5903497c | 333 | hammer2_iocom_core(hammer2_iocom_t *iocom) |
| 9ab15106 | 334 | { |
| 7dc0f844 MD |
335 | struct pollfd fds[3]; |
| 336 | char dummybuf[256]; | |
| 5903497c | 337 | hammer2_msg_t *msg; |
| 4a2e0eae | 338 | int timeout; |
| 7dc0f844 MD |
339 | int count; |
| 340 | int wi; /* wakeup pipe */ | |
| 341 | int si; /* socket */ | |
| 342 | int ai; /* alt bulk path socket */ | |
| 9ab15106 | 343 | |
| 9ab15106 | 344 | while ((iocom->flags & HAMMER2_IOCOMF_EOF) == 0) { |
| 7dc0f844 MD |
345 | if ((iocom->flags & (HAMMER2_IOCOMF_RWORK | |
| 346 | HAMMER2_IOCOMF_WWORK | | |
| 347 | HAMMER2_IOCOMF_PWORK | | |
| 5903497c | 348 | HAMMER2_IOCOMF_SWORK | |
| 7dc0f844 MD |
349 | HAMMER2_IOCOMF_ARWORK | |
| 350 | HAMMER2_IOCOMF_AWWORK)) == 0) { | |
| 351 | /* | |
| 352 | * Only poll if no immediate work is pending. | |
| 353 | * Otherwise we are just wasting our time calling | |
| 354 | * poll. | |
| 355 | */ | |
| 356 | timeout = 5000; | |
| 4a2e0eae | 357 | |
| 7dc0f844 MD |
358 | count = 0; |
| 359 | wi = -1; | |
| 360 | si = -1; | |
| 361 | ai = -1; | |
| 9ab15106 | 362 | |
| 7dc0f844 MD |
363 | /* |
| 364 | * Always check the inter-thread pipe, e.g. | |
| 365 | * for iocom->txmsgq work. | |
| 366 | */ | |
| 367 | wi = count++; | |
| 368 | fds[wi].fd = iocom->wakeupfds[0]; | |
| 369 | fds[wi].events = POLLIN; | |
| 370 | fds[wi].revents = 0; | |
| 371 | ||
| 372 | /* | |
| 373 | * Check the socket input/output direction as | |
| 374 | * requested | |
| 375 | */ | |
| 376 | if (iocom->flags & (HAMMER2_IOCOMF_RREQ | | |
| 377 | HAMMER2_IOCOMF_WREQ)) { | |
| 378 | si = count++; | |
| 379 | fds[si].fd = iocom->sock_fd; | |
| 380 | fds[si].events = 0; | |
| 381 | fds[si].revents = 0; | |
| 382 | ||
| 383 | if (iocom->flags & HAMMER2_IOCOMF_RREQ) | |
| 384 | fds[si].events |= POLLIN; | |
| 385 | if (iocom->flags & HAMMER2_IOCOMF_WREQ) | |
| 386 | fds[si].events |= POLLOUT; | |
| 387 | } | |
| 9ab15106 | 388 | |
| 7dc0f844 MD |
389 | /* |
| 390 | * Check the alternative fd for work. | |
| 391 | */ | |
| 392 | if (iocom->alt_fd >= 0) { | |
| 393 | ai = count++; | |
| 394 | fds[ai].fd = iocom->alt_fd; | |
| 395 | fds[ai].events = POLLIN; | |
| 396 | fds[ai].revents = 0; | |
| 397 | } | |
| 398 | poll(fds, count, timeout); | |
| 399 | ||
| 400 | if (wi >= 0 && (fds[wi].revents & POLLIN)) | |
| 401 | iocom->flags |= HAMMER2_IOCOMF_PWORK; | |
| 402 | if (si >= 0 && (fds[si].revents & POLLIN)) | |
| 403 | iocom->flags |= HAMMER2_IOCOMF_RWORK; | |
| 404 | if (si >= 0 && (fds[si].revents & POLLOUT)) | |
| 405 | iocom->flags |= HAMMER2_IOCOMF_WWORK; | |
| 406 | if (wi >= 0 && (fds[wi].revents & POLLOUT)) | |
| 407 | iocom->flags |= HAMMER2_IOCOMF_WWORK; | |
| 408 | if (ai >= 0 && (fds[ai].revents & POLLIN)) | |
| 409 | iocom->flags |= HAMMER2_IOCOMF_ARWORK; | |
| 9ab15106 | 410 | } else { |
| 7dc0f844 MD |
411 | /* |
| 412 | * Always check the pipe | |
| 413 | */ | |
| 414 | iocom->flags |= HAMMER2_IOCOMF_PWORK; | |
| 9ab15106 | 415 | } |
| 7dc0f844 | 416 | |
| 5903497c MD |
417 | if (iocom->flags & HAMMER2_IOCOMF_SWORK) { |
| 418 | iocom->flags &= ~HAMMER2_IOCOMF_SWORK; | |
| 29ead430 | 419 | iocom->router.signal_callback(&iocom->router); |
| 5903497c MD |
420 | } |
| 421 | ||
| 7dc0f844 MD |
422 | /* |
| 423 | * Pending message queues from other threads wake us up | |
| 424 | * with a write to the wakeupfds[] pipe. We have to clear | |
| 425 | * the pipe with a dummy read. | |
| 426 | */ | |
| 427 | if (iocom->flags & HAMMER2_IOCOMF_PWORK) { | |
| 428 | iocom->flags &= ~HAMMER2_IOCOMF_PWORK; | |
| 429 | read(iocom->wakeupfds[0], dummybuf, sizeof(dummybuf)); | |
| 430 | iocom->flags |= HAMMER2_IOCOMF_RWORK; | |
| 431 | iocom->flags |= HAMMER2_IOCOMF_WWORK; | |
| 29ead430 | 432 | if (TAILQ_FIRST(&iocom->router.txmsgq)) |
| 5903497c | 433 | hammer2_iocom_flush1(iocom); |
| 9ab15106 | 434 | } |
| 7dc0f844 MD |
435 | |
| 436 | /* | |
| 437 | * Message write sequencing | |
| 438 | */ | |
| 439 | if (iocom->flags & HAMMER2_IOCOMF_WWORK) | |
| 5903497c | 440 | hammer2_iocom_flush1(iocom); |
| 7dc0f844 MD |
441 | |
| 442 | /* | |
| 443 | * Message read sequencing. Run this after the write | |
| 444 | * sequencing in case the write sequencing allowed another | |
| 445 | * auto-DELETE to occur on the read side. | |
| 446 | */ | |
| 5903497c MD |
447 | if (iocom->flags & HAMMER2_IOCOMF_RWORK) { |
| 448 | while ((iocom->flags & HAMMER2_IOCOMF_EOF) == 0 && | |
| 449 | (msg = hammer2_ioq_read(iocom)) != NULL) { | |
| 81666e1b MD |
450 | if (DebugOpt) { |
| 451 | fprintf(stderr, "receive %s\n", | |
| 452 | hammer2_msg_str(msg)); | |
| 453 | } | |
| 29ead430 | 454 | iocom->router.rcvmsg_callback(msg); |
| 5903497c MD |
455 | hammer2_state_cleanuprx(iocom, msg); |
| 456 | } | |
| 457 | } | |
| 7dc0f844 | 458 | |
| 02454b3e MD |
459 | if (iocom->flags & HAMMER2_IOCOMF_ARWORK) { |
| 460 | iocom->flags &= ~HAMMER2_IOCOMF_ARWORK; | |
| 29ead430 | 461 | iocom->router.altmsg_callback(iocom); |
| 02454b3e | 462 | } |
| 9ab15106 MD |
463 | } |
| 464 | } | |
| 465 | ||
| 466 | /* | |
| 467 | * Read the next ready message from the ioq, issuing I/O if needed. | |
| 468 | * Caller should retry on a read-event when NULL is returned. | |
| 469 | * | |
| 470 | * If an error occurs during reception a HAMMER2_LNK_ERROR msg will | |
| 1b195a98 MD |
471 | * be returned for each open transaction, then the ioq and iocom |
| 472 | * will be errored out and a non-transactional HAMMER2_LNK_ERROR | |
| 473 | * msg will be returned as the final message. The caller should not call | |
| 474 | * us again after the final message is returned. | |
| 7dc0f844 MD |
475 | * |
| 476 | * Thread localized, iocom->mtx not held. | |
| 9ab15106 MD |
477 | */ |
| 478 | hammer2_msg_t * | |
| 479 | hammer2_ioq_read(hammer2_iocom_t *iocom) | |
| 480 | { | |
| 481 | hammer2_ioq_t *ioq = &iocom->ioq_rx; | |
| 482 | hammer2_msg_t *msg; | |
| 483 | hammer2_msg_hdr_t *head; | |
| 1b195a98 | 484 | hammer2_state_t *state; |
| 9ab15106 | 485 | ssize_t n; |
| 78476205 MD |
486 | size_t bytes; |
| 487 | size_t nmax; | |
| 9ab15106 | 488 | uint32_t xcrc32; |
| 78476205 | 489 | int error; |
| 9ab15106 | 490 | |
| 78476205 | 491 | again: |
| 7dc0f844 MD |
492 | iocom->flags &= ~(HAMMER2_IOCOMF_RREQ | HAMMER2_IOCOMF_RWORK); |
| 493 | ||
| 9ab15106 MD |
494 | /* |
| 495 | * If a message is already pending we can just remove and | |
| 78476205 | 496 | * return it. Message state has already been processed. |
| 9ab15106 MD |
497 | */ |
| 498 | if ((msg = TAILQ_FIRST(&ioq->msgq)) != NULL) { | |
| 78476205 MD |
499 | TAILQ_REMOVE(&ioq->msgq, msg, qentry); |
| 500 | return (msg); | |
| 9ab15106 MD |
501 | } |
| 502 | ||
| cf715800 MD |
503 | if (ioq->error) |
| 504 | goto skip; | |
| 505 | ||
| 9ab15106 MD |
506 | /* |
| 507 | * Message read in-progress (msg is NULL at the moment). We don't | |
| 508 | * allocate a msg until we have its core header. | |
| 509 | */ | |
| 510 | bytes = ioq->fifo_end - ioq->fifo_beg; | |
| 5cf97ec5 | 511 | nmax = sizeof(ioq->buf) - ioq->fifo_end; |
| 9ab15106 MD |
512 | msg = ioq->msg; |
| 513 | ||
| 514 | switch(ioq->state) { | |
| 515 | case HAMMER2_MSGQ_STATE_HEADER1: | |
| 516 | /* | |
| 517 | * Load the primary header, fail on any non-trivial read | |
| 518 | * error or on EOF. Since the primary header is the same | |
| 519 | * size is the message alignment it will never straddle | |
| 520 | * the end of the buffer. | |
| 521 | */ | |
| 522 | if (bytes < (int)sizeof(msg->any.head)) { | |
| 523 | n = read(iocom->sock_fd, | |
| 5cf97ec5 | 524 | ioq->buf + ioq->fifo_end, |
| 9ab15106 MD |
525 | nmax); |
| 526 | if (n <= 0) { | |
| 527 | if (n == 0) { | |
| 528 | ioq->error = HAMMER2_IOQ_ERROR_EOF; | |
| 529 | break; | |
| 530 | } | |
| 531 | if (errno != EINTR && | |
| 532 | errno != EINPROGRESS && | |
| 533 | errno != EAGAIN) { | |
| 534 | ioq->error = HAMMER2_IOQ_ERROR_SOCK; | |
| 535 | break; | |
| 536 | } | |
| 537 | n = 0; | |
| 538 | /* fall through */ | |
| 539 | } | |
| 540 | ioq->fifo_end += n; | |
| 541 | bytes += n; | |
| 542 | nmax -= n; | |
| 543 | } | |
| 544 | ||
| 545 | /* | |
| 546 | * Insufficient data accumulated (msg is NULL, caller will | |
| 547 | * retry on event). | |
| 548 | */ | |
| 549 | assert(msg == NULL); | |
| 550 | if (bytes < (int)sizeof(msg->any.head)) | |
| 551 | break; | |
| 552 | ||
| 9ab15106 | 553 | /* |
| 5cf97ec5 MD |
554 | * Calculate the header, decrypt data received so far. |
| 555 | * Data will be decrypted in-place. Partial blocks are | |
| 556 | * not immediately decrypted. | |
| 8c280d5d MD |
557 | * |
| 558 | * WARNING! The header might be in the wrong endian, we | |
| 559 | * do not fix it up until we get the entire | |
| 560 | * extended header. | |
| 9ab15106 | 561 | */ |
| 5cf97ec5 | 562 | hammer2_crypto_decrypt(iocom, ioq); |
| 5cf97ec5 | 563 | head = (void *)(ioq->buf + ioq->fifo_beg); |
| 9ab15106 MD |
564 | |
| 565 | /* | |
| 566 | * Check and fixup the core header. Note that the icrc | |
| 567 | * has to be calculated before any fixups, but the crc | |
| 568 | * fields in the msg may have to be swapped like everything | |
| 569 | * else. | |
| 570 | */ | |
| 571 | if (head->magic != HAMMER2_MSGHDR_MAGIC && | |
| 572 | head->magic != HAMMER2_MSGHDR_MAGIC_REV) { | |
| 573 | ioq->error = HAMMER2_IOQ_ERROR_SYNC; | |
| 574 | break; | |
| 575 | } | |
| 576 | ||
| 9ab15106 MD |
577 | /* |
| 578 | * Calculate the full header size and aux data size | |
| 579 | */ | |
| 8c280d5d MD |
580 | if (head->magic == HAMMER2_MSGHDR_MAGIC_REV) { |
| 581 | ioq->hbytes = (bswap32(head->cmd) & HAMMER2_MSGF_SIZE) * | |
| 582 | HAMMER2_MSG_ALIGN; | |
| 583 | ioq->abytes = bswap32(head->aux_bytes) * | |
| 584 | HAMMER2_MSG_ALIGN; | |
| 585 | } else { | |
| 586 | ioq->hbytes = (head->cmd & HAMMER2_MSGF_SIZE) * | |
| 587 | HAMMER2_MSG_ALIGN; | |
| 588 | ioq->abytes = head->aux_bytes * HAMMER2_MSG_ALIGN; | |
| 589 | } | |
| 78476205 MD |
590 | if (ioq->hbytes < sizeof(msg->any.head) || |
| 591 | ioq->hbytes > sizeof(msg->any) || | |
| 9ab15106 MD |
592 | ioq->abytes > HAMMER2_MSGAUX_MAX) { |
| 593 | ioq->error = HAMMER2_IOQ_ERROR_FIELD; | |
| 594 | break; | |
| 595 | } | |
| 596 | ||
| 597 | /* | |
| 02454b3e | 598 | * Allocate the message, the next state will fill it in. |
| 9ab15106 | 599 | */ |
| 29ead430 MD |
600 | msg = hammer2_msg_alloc(&iocom->router, ioq->abytes, 0, |
| 601 | NULL, NULL); | |
| 9ab15106 MD |
602 | ioq->msg = msg; |
| 603 | ||
| 604 | /* | |
| 9ab15106 MD |
605 | * Fall through to the next state. Make sure that the |
| 606 | * extended header does not straddle the end of the buffer. | |
| 607 | * We still want to issue larger reads into our buffer, | |
| 608 | * book-keeping is easier if we don't bcopy() yet. | |
| 609 | */ | |
| 610 | if (bytes + nmax < ioq->hbytes) { | |
| 5cf97ec5 MD |
611 | bcopy(ioq->buf + ioq->fifo_beg, ioq->buf, bytes); |
| 612 | ioq->fifo_cdx -= ioq->fifo_beg; | |
| 9ab15106 MD |
613 | ioq->fifo_beg = 0; |
| 614 | ioq->fifo_end = bytes; | |
| 5cf97ec5 | 615 | nmax = sizeof(ioq->buf) - ioq->fifo_end; |
| 9ab15106 MD |
616 | } |
| 617 | ioq->state = HAMMER2_MSGQ_STATE_HEADER2; | |
| 618 | /* fall through */ | |
| 619 | case HAMMER2_MSGQ_STATE_HEADER2: | |
| 620 | /* | |
| 621 | * Fill out the extended header. | |
| 622 | */ | |
| 623 | assert(msg != NULL); | |
| 624 | if (bytes < ioq->hbytes) { | |
| 625 | n = read(iocom->sock_fd, | |
| 02454b3e | 626 | ioq->buf + ioq->fifo_end, |
| 9ab15106 MD |
627 | nmax); |
| 628 | if (n <= 0) { | |
| 629 | if (n == 0) { | |
| 630 | ioq->error = HAMMER2_IOQ_ERROR_EOF; | |
| 631 | break; | |
| 632 | } | |
| 633 | if (errno != EINTR && | |
| 634 | errno != EINPROGRESS && | |
| 635 | errno != EAGAIN) { | |
| 636 | ioq->error = HAMMER2_IOQ_ERROR_SOCK; | |
| 637 | break; | |
| 638 | } | |
| 639 | n = 0; | |
| 640 | /* fall through */ | |
| 641 | } | |
| 642 | ioq->fifo_end += n; | |
| 643 | bytes += n; | |
| 644 | nmax -= n; | |
| 645 | } | |
| 646 | ||
| 647 | /* | |
| 648 | * Insufficient data accumulated (set msg NULL so caller will | |
| 649 | * retry on event). | |
| 650 | */ | |
| 651 | if (bytes < ioq->hbytes) { | |
| 652 | msg = NULL; | |
| 653 | break; | |
| 654 | } | |
| 655 | ||
| 656 | /* | |
| 5cf97ec5 | 657 | * Calculate the extended header, decrypt data received |
| 8c280d5d MD |
658 | * so far. Handle endian-conversion for the entire extended |
| 659 | * header. | |
| 9ab15106 | 660 | */ |
| 5cf97ec5 MD |
661 | hammer2_crypto_decrypt(iocom, ioq); |
| 662 | head = (void *)(ioq->buf + ioq->fifo_beg); | |
| 9ab15106 MD |
663 | |
| 664 | /* | |
| 8c280d5d | 665 | * Check the CRC. |
| 9ab15106 | 666 | */ |
| 8c280d5d MD |
667 | if (head->magic == HAMMER2_MSGHDR_MAGIC_REV) |
| 668 | xcrc32 = bswap32(head->hdr_crc); | |
| 669 | else | |
| 670 | xcrc32 = head->hdr_crc; | |
| 671 | head->hdr_crc = 0; | |
| 672 | if (hammer2_icrc32(head, ioq->hbytes) != xcrc32) { | |
| 673 | ioq->error = HAMMER2_IOQ_ERROR_XCRC; | |
| 81666e1b MD |
674 | fprintf(stderr, "BAD-XCRC(%08x,%08x) %s\n", |
| 675 | xcrc32, hammer2_icrc32(head, ioq->hbytes), | |
| 676 | hammer2_msg_str(msg)); | |
| 02454b3e | 677 | assert(0); |
| 8c280d5d MD |
678 | break; |
| 679 | } | |
| 680 | head->hdr_crc = xcrc32; | |
| 681 | ||
| 682 | if (head->magic == HAMMER2_MSGHDR_MAGIC_REV) { | |
| 683 | hammer2_bswap_head(head); | |
| 9ab15106 MD |
684 | } |
| 685 | ||
| 686 | /* | |
| 687 | * Copy the extended header into the msg and adjust the | |
| 688 | * FIFO. | |
| 689 | */ | |
| 690 | bcopy(head, &msg->any, ioq->hbytes); | |
| 691 | ||
| 692 | /* | |
| 693 | * We are either done or we fall-through. | |
| 694 | */ | |
| 695 | if (ioq->abytes == 0) { | |
| 696 | ioq->fifo_beg += ioq->hbytes; | |
| 697 | break; | |
| 698 | } | |
| 699 | ||
| 700 | /* | |
| 701 | * Must adjust nmax and bytes (and the state) when falling | |
| 702 | * through. | |
| 703 | */ | |
| 704 | ioq->fifo_beg += ioq->hbytes; | |
| 705 | nmax -= ioq->hbytes; | |
| 706 | bytes -= ioq->hbytes; | |
| 707 | ioq->state = HAMMER2_MSGQ_STATE_AUXDATA1; | |
| 708 | /* fall through */ | |
| 709 | case HAMMER2_MSGQ_STATE_AUXDATA1: | |
| 710 | /* | |
| 711 | * Copy the partial or complete payload from remaining | |
| 712 | * bytes in the FIFO. We have to fall-through either | |
| 713 | * way so we can check the crc. | |
| 78476205 MD |
714 | * |
| 715 | * Adjust msg->aux_size to the final actual value. | |
| 9ab15106 | 716 | */ |
| 5cf97ec5 MD |
717 | ioq->already = ioq->fifo_cdx - ioq->fifo_beg; |
| 718 | if (ioq->already > ioq->abytes) | |
| 719 | ioq->already = ioq->abytes; | |
| 9ab15106 | 720 | if (bytes >= ioq->abytes) { |
| 5cf97ec5 | 721 | bcopy(ioq->buf + ioq->fifo_beg, msg->aux_data, |
| 9ab15106 MD |
722 | ioq->abytes); |
| 723 | msg->aux_size = ioq->abytes; | |
| 724 | ioq->fifo_beg += ioq->abytes; | |
| 5cf97ec5 MD |
725 | if (ioq->fifo_cdx < ioq->fifo_beg) |
| 726 | ioq->fifo_cdx = ioq->fifo_beg; | |
| 9ab15106 MD |
727 | bytes -= ioq->abytes; |
| 728 | } else if (bytes) { | |
| 5cf97ec5 | 729 | bcopy(ioq->buf + ioq->fifo_beg, msg->aux_data, |
| 9ab15106 MD |
730 | bytes); |
| 731 | msg->aux_size = bytes; | |
| 732 | ioq->fifo_beg += bytes; | |
| 5cf97ec5 MD |
733 | if (ioq->fifo_cdx < ioq->fifo_beg) |
| 734 | ioq->fifo_cdx = ioq->fifo_beg; | |
| 9ab15106 | 735 | bytes = 0; |
| 78476205 MD |
736 | } else { |
| 737 | msg->aux_size = 0; | |
| 9ab15106 MD |
738 | } |
| 739 | ioq->state = HAMMER2_MSGQ_STATE_AUXDATA2; | |
| 740 | /* fall through */ | |
| 741 | case HAMMER2_MSGQ_STATE_AUXDATA2: | |
| 742 | /* | |
| 743 | * Read the remainder of the payload directly into the | |
| 744 | * msg->aux_data buffer. | |
| 745 | */ | |
| 746 | assert(msg); | |
| 747 | if (msg->aux_size < ioq->abytes) { | |
| 748 | assert(bytes == 0); | |
| 749 | n = read(iocom->sock_fd, | |
| 750 | msg->aux_data + msg->aux_size, | |
| 751 | ioq->abytes - msg->aux_size); | |
| 752 | if (n <= 0) { | |
| 753 | if (n == 0) { | |
| 754 | ioq->error = HAMMER2_IOQ_ERROR_EOF; | |
| 755 | break; | |
| 756 | } | |
| 757 | if (errno != EINTR && | |
| 758 | errno != EINPROGRESS && | |
| 759 | errno != EAGAIN) { | |
| 760 | ioq->error = HAMMER2_IOQ_ERROR_SOCK; | |
| 761 | break; | |
| 762 | } | |
| 763 | n = 0; | |
| 764 | /* fall through */ | |
| 765 | } | |
| 766 | msg->aux_size += n; | |
| 767 | } | |
| 768 | ||
| 769 | /* | |
| 770 | * Insufficient data accumulated (set msg NULL so caller will | |
| 771 | * retry on event). | |
| 772 | */ | |
| 773 | if (msg->aux_size < ioq->abytes) { | |
| 774 | msg = NULL; | |
| 775 | break; | |
| 776 | } | |
| 777 | assert(msg->aux_size == ioq->abytes); | |
| 5cf97ec5 | 778 | hammer2_crypto_decrypt_aux(iocom, ioq, msg, ioq->already); |
| 9ab15106 MD |
779 | |
| 780 | /* | |
| 8c280d5d | 781 | * Check aux_crc, then we are done. |
| 9ab15106 MD |
782 | */ |
| 783 | xcrc32 = hammer2_icrc32(msg->aux_data, msg->aux_size); | |
| 8c280d5d | 784 | if (xcrc32 != msg->any.head.aux_crc) { |
| 9ab15106 MD |
785 | ioq->error = HAMMER2_IOQ_ERROR_ACRC; |
| 786 | break; | |
| 787 | } | |
| 788 | break; | |
| 789 | case HAMMER2_MSGQ_STATE_ERROR: | |
| 1b195a98 MD |
790 | /* |
| 791 | * Continued calls to drain recorded transactions (returning | |
| 792 | * a LNK_ERROR for each one), before we return the final | |
| 793 | * LNK_ERROR. | |
| 794 | */ | |
| 795 | assert(msg == NULL); | |
| 796 | break; | |
| 9ab15106 MD |
797 | default: |
| 798 | /* | |
| 799 | * We don't double-return errors, the caller should not | |
| 800 | * have called us again after getting an error msg. | |
| 801 | */ | |
| 802 | assert(0); | |
| 803 | break; | |
| 804 | } | |
| 805 | ||
| 806 | /* | |
| 5cf97ec5 MD |
807 | * Check the message sequence. The iv[] should prevent any |
| 808 | * possibility of a replay but we add this check anyway. | |
| 809 | */ | |
| 810 | if (msg && ioq->error == 0) { | |
| 811 | if ((msg->any.head.salt & 255) != (ioq->seq & 255)) { | |
| 812 | ioq->error = HAMMER2_IOQ_ERROR_MSGSEQ; | |
| 813 | } else { | |
| 814 | ++ioq->seq; | |
| 815 | } | |
| 816 | } | |
| 817 | ||
| 818 | /* | |
| 78476205 MD |
819 | * Process transactional state for the message. |
| 820 | */ | |
| 821 | if (msg && ioq->error == 0) { | |
| 822 | error = hammer2_state_msgrx(iocom, msg); | |
| 823 | if (error) { | |
| 824 | if (error == HAMMER2_IOQ_ERROR_EALREADY) { | |
| 29ead430 | 825 | hammer2_msg_free(msg); |
| 78476205 MD |
826 | goto again; |
| 827 | } | |
| 828 | ioq->error = error; | |
| 829 | } | |
| 830 | } | |
| 831 | ||
| 832 | /* | |
| 9ab15106 MD |
833 | * Handle error, RREQ, or completion |
| 834 | * | |
| 835 | * NOTE: nmax and bytes are invalid at this point, we don't bother | |
| 836 | * to update them when breaking out. | |
| 837 | */ | |
| 838 | if (ioq->error) { | |
| cf715800 | 839 | skip: |
| 9ab15106 | 840 | /* |
| 1b195a98 MD |
841 | * An unrecoverable error causes all active receive |
| 842 | * transactions to be terminated with a LNK_ERROR message. | |
| 9ab15106 | 843 | * |
| 1b195a98 MD |
844 | * Once all active transactions are exhausted we set the |
| 845 | * iocom ERROR flag and return a non-transactional LNK_ERROR | |
| 846 | * message, which should cause master processing loops to | |
| 847 | * terminate. | |
| 9ab15106 | 848 | */ |
| 4a2e0eae | 849 | assert(ioq->msg == msg); |
| 1b195a98 | 850 | if (msg) { |
| 29ead430 | 851 | hammer2_msg_free(msg); |
| 9ab15106 | 852 | ioq->msg = NULL; |
| 9ab15106 | 853 | } |
| 1b195a98 MD |
854 | |
| 855 | /* | |
| 856 | * No more I/O read processing | |
| 857 | */ | |
| 858 | ioq->state = HAMMER2_MSGQ_STATE_ERROR; | |
| 859 | ||
| 860 | /* | |
| 7dc0f844 MD |
861 | * Simulate a remote LNK_ERROR DELETE msg for any open |
| 862 | * transactions, ending with a final non-transactional | |
| 863 | * LNK_ERROR (that the session can detect) when no | |
| 864 | * transactions remain. | |
| 1b195a98 | 865 | */ |
| 29ead430 | 866 | msg = hammer2_msg_alloc(&iocom->router, 0, 0, NULL, NULL); |
| 9ab15106 MD |
867 | bzero(&msg->any.head, sizeof(msg->any.head)); |
| 868 | msg->any.head.magic = HAMMER2_MSGHDR_MAGIC; | |
| 869 | msg->any.head.cmd = HAMMER2_LNK_ERROR; | |
| 870 | msg->any.head.error = ioq->error; | |
| 1b195a98 | 871 | |
| 7dc0f844 | 872 | pthread_mutex_lock(&iocom->mtx); |
| cf715800 | 873 | hammer2_iocom_drain(iocom); |
| 29ead430 | 874 | if ((state = RB_ROOT(&iocom->router.staterd_tree)) != NULL) { |
| 1b195a98 | 875 | /* |
| 7dc0f844 MD |
876 | * Active remote transactions are still present. |
| 877 | * Simulate the other end sending us a DELETE. | |
| 1b195a98 | 878 | */ |
| 7dc0f844 | 879 | if (state->rxcmd & HAMMER2_MSGF_DELETE) { |
| 29ead430 | 880 | hammer2_msg_free(msg); |
| 7dc0f844 MD |
881 | msg = NULL; |
| 882 | } else { | |
| 7dc0f844 MD |
883 | /*state->txcmd |= HAMMER2_MSGF_DELETE;*/ |
| 884 | msg->state = state; | |
| 885 | msg->any.head.spanid = state->spanid; | |
| 886 | msg->any.head.msgid = state->msgid; | |
| 887 | msg->any.head.cmd |= HAMMER2_MSGF_ABORT | | |
| 888 | HAMMER2_MSGF_DELETE; | |
| 889 | } | |
| 29ead430 | 890 | } else if ((state = RB_ROOT(&iocom->router.statewr_tree)) != NULL) { |
| 7dc0f844 MD |
891 | /* |
| 892 | * Active local transactions are still present. | |
| 893 | * Simulate the other end sending us a DELETE. | |
| 894 | */ | |
| 895 | if (state->rxcmd & HAMMER2_MSGF_DELETE) { | |
| 29ead430 | 896 | hammer2_msg_free(msg); |
| 7dc0f844 MD |
897 | msg = NULL; |
| 898 | } else { | |
| 7dc0f844 MD |
899 | msg->state = state; |
| 900 | msg->any.head.spanid = state->spanid; | |
| 901 | msg->any.head.msgid = state->msgid; | |
| 902 | msg->any.head.cmd |= HAMMER2_MSGF_ABORT | | |
| 903 | HAMMER2_MSGF_DELETE | | |
| 904 | HAMMER2_MSGF_REPLY; | |
| 905 | if ((state->rxcmd & HAMMER2_MSGF_CREATE) == 0) { | |
| 906 | msg->any.head.cmd |= | |
| 907 | HAMMER2_MSGF_CREATE; | |
| 908 | } | |
| 909 | } | |
| 1b195a98 MD |
910 | } else { |
| 911 | /* | |
| 7dc0f844 MD |
912 | * No active local or remote transactions remain. |
| 913 | * Generate a final LNK_ERROR and flag EOF. | |
| 1b195a98 MD |
914 | */ |
| 915 | msg->state = NULL; | |
| 916 | iocom->flags |= HAMMER2_IOCOMF_EOF; | |
| 81666e1b | 917 | fprintf(stderr, "EOF ON SOCKET %d\n", iocom->sock_fd); |
| 1b195a98 | 918 | } |
| 7dc0f844 MD |
919 | pthread_mutex_unlock(&iocom->mtx); |
| 920 | ||
| 921 | /* | |
| 922 | * For the iocom error case we want to set RWORK to indicate | |
| 923 | * that more messages might be pending. | |
| 924 | * | |
| 925 | * It is possible to return NULL when there is more work to | |
| 926 | * do because each message has to be DELETEd in both | |
| 927 | * directions before we continue on with the next (though | |
| 928 | * this could be optimized). The transmit direction will | |
| 929 | * re-set RWORK. | |
| 930 | */ | |
| 931 | if (msg) | |
| 932 | iocom->flags |= HAMMER2_IOCOMF_RWORK; | |
| 9ab15106 MD |
933 | } else if (msg == NULL) { |
| 934 | /* | |
| 935 | * Insufficient data received to finish building the message, | |
| 936 | * set RREQ and return NULL. | |
| 937 | * | |
| 938 | * Leave ioq->msg intact. | |
| 939 | * Leave the FIFO intact. | |
| 940 | */ | |
| 941 | iocom->flags |= HAMMER2_IOCOMF_RREQ; | |
| 9ab15106 MD |
942 | } else { |
| 943 | /* | |
| 7dc0f844 | 944 | * Return msg. |
| 9ab15106 MD |
945 | * |
| 946 | * The fifo has already been advanced past the message. | |
| 947 | * Trivially reset the FIFO indices if possible. | |
| 7dc0f844 MD |
948 | * |
| 949 | * clear the FIFO if it is now empty and set RREQ to wait | |
| 950 | * for more from the socket. If the FIFO is not empty set | |
| 951 | * TWORK to bypass the poll so we loop immediately. | |
| 9ab15106 MD |
952 | */ |
| 953 | if (ioq->fifo_beg == ioq->fifo_end) { | |
| 954 | iocom->flags |= HAMMER2_IOCOMF_RREQ; | |
| 5cf97ec5 | 955 | ioq->fifo_cdx = 0; |
| 9ab15106 MD |
956 | ioq->fifo_beg = 0; |
| 957 | ioq->fifo_end = 0; | |
| 958 | } else { | |
| 7dc0f844 | 959 | iocom->flags |= HAMMER2_IOCOMF_RWORK; |
| 9ab15106 MD |
960 | } |
| 961 | ioq->state = HAMMER2_MSGQ_STATE_HEADER1; | |
| 962 | ioq->msg = NULL; | |
| 963 | } | |
| 964 | return (msg); | |
| 965 | } | |
| 966 | ||
| 967 | /* | |
| 968 | * Calculate the header and data crc's and write a low-level message to | |
| 8c280d5d | 969 | * the connection. If aux_crc is non-zero the aux_data crc is already |
| 9ab15106 MD |
970 | * assumed to have been set. |
| 971 | * | |
| 972 | * A non-NULL msg is added to the queue but not necessarily flushed. | |
| 973 | * Calling this function with msg == NULL will get a flush going. | |
| 7dc0f844 MD |
974 | * |
| 975 | * Caller must hold iocom->mtx. | |
| 9ab15106 | 976 | */ |
| 7dc0f844 MD |
977 | void |
| 978 | hammer2_iocom_flush1(hammer2_iocom_t *iocom) | |
| 9ab15106 MD |
979 | { |
| 980 | hammer2_ioq_t *ioq = &iocom->ioq_tx; | |
| 7dc0f844 | 981 | hammer2_msg_t *msg; |
| 9ab15106 | 982 | uint32_t xcrc32; |
| 4a2e0eae | 983 | int hbytes; |
| 7dc0f844 MD |
984 | hammer2_msg_queue_t tmpq; |
| 985 | ||
| 986 | iocom->flags &= ~(HAMMER2_IOCOMF_WREQ | HAMMER2_IOCOMF_WWORK); | |
| 987 | TAILQ_INIT(&tmpq); | |
| 988 | pthread_mutex_lock(&iocom->mtx); | |
| 29ead430 MD |
989 | while ((msg = TAILQ_FIRST(&iocom->router.txmsgq)) != NULL) { |
| 990 | TAILQ_REMOVE(&iocom->router.txmsgq, msg, qentry); | |
| 7dc0f844 | 991 | TAILQ_INSERT_TAIL(&tmpq, msg, qentry); |
| 9ab15106 | 992 | } |
| 7dc0f844 | 993 | pthread_mutex_unlock(&iocom->mtx); |
| 9ab15106 | 994 | |
| 7dc0f844 MD |
995 | while ((msg = TAILQ_FIRST(&tmpq)) != NULL) { |
| 996 | /* | |
| 997 | * Process terminal connection errors. | |
| 998 | */ | |
| 999 | TAILQ_REMOVE(&tmpq, msg, qentry); | |
| 1000 | if (ioq->error) { | |
| 1001 | TAILQ_INSERT_TAIL(&ioq->msgq, msg, qentry); | |
| 1002 | ++ioq->msgcount; | |
| 1003 | continue; | |
| 1004 | } | |
| 9ab15106 | 1005 | |
| 7dc0f844 MD |
1006 | /* |
| 1007 | * Finish populating the msg fields. The salt ensures that | |
| 1008 | * the iv[] array is ridiculously randomized and we also | |
| 1009 | * re-seed our PRNG every 32768 messages just to be sure. | |
| 1010 | */ | |
| 1011 | msg->any.head.magic = HAMMER2_MSGHDR_MAGIC; | |
| 1012 | msg->any.head.salt = (random() << 8) | (ioq->seq & 255); | |
| 1013 | ++ioq->seq; | |
| 1014 | if ((ioq->seq & 32767) == 0) | |
| 1015 | srandomdev(); | |
| 9ab15106 | 1016 | |
| 7dc0f844 MD |
1017 | /* |
| 1018 | * Calculate aux_crc if 0, then calculate hdr_crc. | |
| 1019 | */ | |
| 1020 | if (msg->aux_size && msg->any.head.aux_crc == 0) { | |
| 1021 | assert((msg->aux_size & HAMMER2_MSG_ALIGNMASK) == 0); | |
| 1022 | xcrc32 = hammer2_icrc32(msg->aux_data, msg->aux_size); | |
| 1023 | msg->any.head.aux_crc = xcrc32; | |
| 1024 | } | |
| 1025 | msg->any.head.aux_bytes = msg->aux_size / HAMMER2_MSG_ALIGN; | |
| 1026 | assert((msg->aux_size & HAMMER2_MSG_ALIGNMASK) == 0); | |
| 9ab15106 | 1027 | |
| 7dc0f844 MD |
1028 | hbytes = (msg->any.head.cmd & HAMMER2_MSGF_SIZE) * |
| 1029 | HAMMER2_MSG_ALIGN; | |
| 1030 | msg->any.head.hdr_crc = 0; | |
| 1031 | msg->any.head.hdr_crc = hammer2_icrc32(&msg->any.head, hbytes); | |
| 9ab15106 | 1032 | |
| 7dc0f844 MD |
1033 | /* |
| 1034 | * Enqueue the message (the flush codes handles stream | |
| 1035 | * encryption). | |
| 1036 | */ | |
| 1037 | TAILQ_INSERT_TAIL(&ioq->msgq, msg, qentry); | |
| 1038 | ++ioq->msgcount; | |
| 1039 | } | |
| 1040 | hammer2_iocom_flush2(iocom); | |
| 4a2e0eae MD |
1041 | } |
| 1042 | ||
| 7dc0f844 MD |
1043 | /* |
| 1044 | * Thread localized, iocom->mtx not held by caller. | |
| 1045 | */ | |
| 4a2e0eae | 1046 | void |
| 7dc0f844 | 1047 | hammer2_iocom_flush2(hammer2_iocom_t *iocom) |
| 4a2e0eae MD |
1048 | { |
| 1049 | hammer2_ioq_t *ioq = &iocom->ioq_tx; | |
| 1050 | hammer2_msg_t *msg; | |
| 1051 | ssize_t nmax; | |
| 02454b3e | 1052 | ssize_t omax; |
| 4a2e0eae MD |
1053 | ssize_t nact; |
| 1054 | struct iovec iov[HAMMER2_IOQ_MAXIOVEC]; | |
| 78476205 MD |
1055 | size_t hbytes; |
| 1056 | size_t abytes; | |
| 02454b3e MD |
1057 | size_t hoff; |
| 1058 | size_t aoff; | |
| 4a2e0eae | 1059 | int n; |
| 9ab15106 | 1060 | |
| 7dc0f844 MD |
1061 | if (ioq->error) { |
| 1062 | hammer2_iocom_drain(iocom); | |
| 1063 | return; | |
| 1064 | } | |
| 1065 | ||
| 9ab15106 MD |
1066 | /* |
| 1067 | * Pump messages out the connection by building an iovec. | |
| 02454b3e MD |
1068 | * |
| 1069 | * ioq->hbytes/ioq->abytes tracks how much of the first message | |
| 1070 | * in the queue has been successfully written out, so we can | |
| 1071 | * resume writing. | |
| 9ab15106 MD |
1072 | */ |
| 1073 | n = 0; | |
| 1074 | nmax = 0; | |
| 02454b3e MD |
1075 | hoff = ioq->hbytes; |
| 1076 | aoff = ioq->abytes; | |
| 9ab15106 | 1077 | |
| 78476205 | 1078 | TAILQ_FOREACH(msg, &ioq->msgq, qentry) { |
| 9ab15106 MD |
1079 | hbytes = (msg->any.head.cmd & HAMMER2_MSGF_SIZE) * |
| 1080 | HAMMER2_MSG_ALIGN; | |
| 9ab15106 | 1081 | abytes = msg->aux_size; |
| 02454b3e MD |
1082 | assert(hoff <= hbytes && aoff <= abytes); |
| 1083 | ||
| 1084 | if (hoff < hbytes) { | |
| 9ab15106 MD |
1085 | iov[n].iov_base = (char *)&msg->any.head + hoff; |
| 1086 | iov[n].iov_len = hbytes - hoff; | |
| 1087 | nmax += hbytes - hoff; | |
| 1088 | ++n; | |
| 1089 | if (n == HAMMER2_IOQ_MAXIOVEC) | |
| 1090 | break; | |
| 1091 | } | |
| 02454b3e | 1092 | if (aoff < abytes) { |
| 9ab15106 | 1093 | assert(msg->aux_data != NULL); |
| 02454b3e | 1094 | iov[n].iov_base = (char *)msg->aux_data + aoff; |
| 9ab15106 MD |
1095 | iov[n].iov_len = abytes - aoff; |
| 1096 | nmax += abytes - aoff; | |
| 1097 | ++n; | |
| 1098 | if (n == HAMMER2_IOQ_MAXIOVEC) | |
| 1099 | break; | |
| 1100 | } | |
| 02454b3e MD |
1101 | hoff = 0; |
| 1102 | aoff = 0; | |
| 9ab15106 MD |
1103 | } |
| 1104 | if (n == 0) | |
| 1105 | return; | |
| 1106 | ||
| 1107 | /* | |
| 5cf97ec5 MD |
1108 | * Encrypt and write the data. The crypto code will move the |
| 1109 | * data into the fifo and adjust the iov as necessary. If | |
| 1110 | * encryption is disabled the iov is left alone. | |
| 1111 | * | |
| 02454b3e MD |
1112 | * May return a smaller iov (thus a smaller n), with aggregated |
| 1113 | * chunks. May reduce nmax to what fits in the FIFO. | |
| 5cf97ec5 | 1114 | */ |
| 02454b3e MD |
1115 | omax = nmax; |
| 1116 | n = hammer2_crypto_encrypt(iocom, ioq, iov, n, &nmax); | |
| 5cf97ec5 MD |
1117 | |
| 1118 | /* | |
| 9ab15106 MD |
1119 | * Execute the writev() then figure out what happened. |
| 1120 | */ | |
| 1121 | nact = writev(iocom->sock_fd, iov, n); | |
| 1122 | if (nact < 0) { | |
| 1123 | if (errno != EINTR && | |
| 1124 | errno != EINPROGRESS && | |
| 1125 | errno != EAGAIN) { | |
| 7dc0f844 MD |
1126 | /* |
| 1127 | * Fatal write error | |
| 1128 | */ | |
| 9ab15106 | 1129 | ioq->error = HAMMER2_IOQ_ERROR_SOCK; |
| 4a2e0eae | 1130 | hammer2_iocom_drain(iocom); |
| 9ab15106 | 1131 | } else { |
| 7dc0f844 MD |
1132 | /* |
| 1133 | * Wait for socket buffer space | |
| 1134 | */ | |
| 9ab15106 MD |
1135 | iocom->flags |= HAMMER2_IOCOMF_WREQ; |
| 1136 | } | |
| 1137 | return; | |
| 1138 | } | |
| 7dc0f844 MD |
1139 | |
| 1140 | /* | |
| 02454b3e MD |
1141 | * Indicate bytes written successfully. |
| 1142 | * | |
| 1143 | * If we were unable to write the entire iov array then set WREQ | |
| 1144 | * to wait for more socket buffer space. | |
| 1145 | * | |
| 1146 | * If the FIFO space was insufficient to fully drain all messages | |
| 1147 | * set WWORK to cause the core to call us again for the next batch. | |
| 7dc0f844 | 1148 | */ |
| 5cf97ec5 | 1149 | hammer2_crypto_encrypt_wrote(iocom, ioq, nact); |
| 7dc0f844 | 1150 | if (nact != nmax) |
| 9ab15106 MD |
1151 | iocom->flags |= HAMMER2_IOCOMF_WREQ; |
| 1152 | ||
| 7dc0f844 MD |
1153 | /* |
| 1154 | * Clean out the transmit queue based on what we successfully | |
| 02454b3e MD |
1155 | * sent. ioq->hbytes/abytes represents the portion of the first |
| 1156 | * message previously sent. | |
| 7dc0f844 | 1157 | */ |
| 9ab15106 MD |
1158 | while ((msg = TAILQ_FIRST(&ioq->msgq)) != NULL) { |
| 1159 | hbytes = (msg->any.head.cmd & HAMMER2_MSGF_SIZE) * | |
| 1160 | HAMMER2_MSG_ALIGN; | |
| 1161 | abytes = msg->aux_size; | |
| 1162 | ||
| 78476205 | 1163 | if ((size_t)nact < hbytes - ioq->hbytes) { |
| 9ab15106 | 1164 | ioq->hbytes += nact; |
| 02454b3e | 1165 | /* nact = 0; */ |
| 9ab15106 MD |
1166 | break; |
| 1167 | } | |
| 1168 | nact -= hbytes - ioq->hbytes; | |
| 1169 | ioq->hbytes = hbytes; | |
| 78476205 | 1170 | if ((size_t)nact < abytes - ioq->abytes) { |
| 9ab15106 | 1171 | ioq->abytes += nact; |
| 02454b3e | 1172 | /* nact = 0; */ |
| 9ab15106 MD |
1173 | break; |
| 1174 | } | |
| 1175 | nact -= abytes - ioq->abytes; | |
| 1176 | ||
| 78476205 | 1177 | TAILQ_REMOVE(&ioq->msgq, msg, qentry); |
| 9ab15106 MD |
1178 | --ioq->msgcount; |
| 1179 | ioq->hbytes = 0; | |
| 1180 | ioq->abytes = 0; | |
| 78476205 MD |
1181 | |
| 1182 | hammer2_state_cleanuptx(iocom, msg); | |
| 9ab15106 | 1183 | } |
| 81666e1b MD |
1184 | |
| 1185 | /* | |
| 1186 | * If more messages are pending on WREQ wasn't set we must | |
| 1187 | * ensure that WWORK gets set. | |
| 1188 | */ | |
| 1189 | if (msg && (iocom->flags & HAMMER2_IOCOMF_WREQ) == 0) | |
| 1190 | iocom->flags |= HAMMER2_IOCOMF_WWORK; | |
| 02454b3e | 1191 | assert(nact == 0); |
| 9ab15106 | 1192 | if (ioq->error) { |
| 7dc0f844 | 1193 | hammer2_iocom_drain(iocom); |
| 9ab15106 MD |
1194 | } |
| 1195 | } | |
| 1196 | ||
| 1197 | /* | |
| 1198 | * Kill pending msgs on ioq_tx and adjust the flags such that no more | |
| 1199 | * write events will occur. We don't kill read msgs because we want | |
| 1200 | * the caller to pull off our contrived terminal error msg to detect | |
| 1201 | * the connection failure. | |
| 7dc0f844 MD |
1202 | * |
| 1203 | * Thread localized, iocom->mtx not held by caller. | |
| 9ab15106 MD |
1204 | */ |
| 1205 | void | |
| 4a2e0eae | 1206 | hammer2_iocom_drain(hammer2_iocom_t *iocom) |
| 9ab15106 MD |
1207 | { |
| 1208 | hammer2_ioq_t *ioq = &iocom->ioq_tx; | |
| 1209 | hammer2_msg_t *msg; | |
| 1210 | ||
| 7dc0f844 | 1211 | iocom->flags &= ~(HAMMER2_IOCOMF_WREQ | HAMMER2_IOCOMF_WWORK); |
| 02454b3e MD |
1212 | ioq->hbytes = 0; |
| 1213 | ioq->abytes = 0; | |
| 7dc0f844 | 1214 | |
| 9ab15106 | 1215 | while ((msg = TAILQ_FIRST(&ioq->msgq)) != NULL) { |
| 78476205 | 1216 | TAILQ_REMOVE(&ioq->msgq, msg, qentry); |
| 9ab15106 | 1217 | --ioq->msgcount; |
| 7dc0f844 | 1218 | hammer2_state_cleanuptx(iocom, msg); |
| 9ab15106 | 1219 | } |
| 9ab15106 MD |
1220 | } |
| 1221 | ||
| 1222 | /* | |
| 8c280d5d | 1223 | * Write a message to an iocom, with additional state processing. |
| 78476205 MD |
1224 | */ |
| 1225 | void | |
| 29ead430 | 1226 | hammer2_msg_write(hammer2_msg_t *msg) |
| 78476205 | 1227 | { |
| 29ead430 | 1228 | hammer2_iocom_t *iocom = msg->router->iocom; |
| 8c280d5d | 1229 | hammer2_state_t *state; |
| 7dc0f844 | 1230 | char dummy; |
| 78476205 | 1231 | |
| 8c280d5d MD |
1232 | /* |
| 1233 | * Handle state processing, create state if necessary. | |
| 1234 | */ | |
| 7dc0f844 | 1235 | pthread_mutex_lock(&iocom->mtx); |
| 8c280d5d | 1236 | if ((state = msg->state) != NULL) { |
| 78476205 | 1237 | /* |
| 8c280d5d MD |
1238 | * Existing transaction (could be reply). It is also |
| 1239 | * possible for this to be the first reply (CREATE is set), | |
| 1240 | * in which case we populate state->txcmd. | |
| 29ead430 MD |
1241 | * |
| 1242 | * state->txcmd is adjusted to hold the final message cmd, | |
| 1243 | * and we also be sure to set the CREATE bit here. We did | |
| 1244 | * not set it in hammer2_msg_alloc() because that would have | |
| 1245 | * not been serialized (state could have gotten ripped out | |
| 1246 | * from under the message prior to it being transmitted). | |
| 78476205 | 1247 | */ |
| 29ead430 MD |
1248 | if ((msg->any.head.cmd & (HAMMER2_MSGF_CREATE | |
| 1249 | HAMMER2_MSGF_REPLY)) == | |
| 1250 | HAMMER2_MSGF_CREATE) { | |
| 1251 | state->txcmd = msg->any.head.cmd & ~HAMMER2_MSGF_DELETE; | |
| 1252 | } | |
| 8c280d5d MD |
1253 | msg->any.head.msgid = state->msgid; |
| 1254 | msg->any.head.spanid = state->spanid; | |
| 7dc0f844 MD |
1255 | assert(((state->txcmd ^ msg->any.head.cmd) & |
| 1256 | HAMMER2_MSGF_REPLY) == 0); | |
| 8c280d5d MD |
1257 | if (msg->any.head.cmd & HAMMER2_MSGF_CREATE) |
| 1258 | state->txcmd = msg->any.head.cmd & ~HAMMER2_MSGF_DELETE; | |
| 78476205 | 1259 | } else { |
| 8c280d5d | 1260 | msg->any.head.msgid = 0; |
| 29ead430 | 1261 | /* XXX set spanid by router */ |
| 8c280d5d MD |
1262 | } |
| 1263 | ||
| 1264 | /* | |
| 7dc0f844 MD |
1265 | * Queue it for output, wake up the I/O pthread. Note that the |
| 1266 | * I/O thread is responsible for generating the CRCs and encryption. | |
| 8c280d5d | 1267 | */ |
| 29ead430 | 1268 | TAILQ_INSERT_TAIL(&iocom->router.txmsgq, msg, qentry); |
| 7dc0f844 MD |
1269 | dummy = 0; |
| 1270 | write(iocom->wakeupfds[1], &dummy, 1); /* XXX optimize me */ | |
| 1271 | pthread_mutex_unlock(&iocom->mtx); | |
| 8c280d5d MD |
1272 | } |
| 1273 | ||
| 8c280d5d MD |
1274 | /* |
| 1275 | * This is a shortcut to formulate a reply to msg with a simple error code, | |
| 1276 | * It can reply to and terminate a transaction, or it can reply to a one-way | |
| 1277 | * messages. A HAMMER2_LNK_ERROR command code is utilized to encode | |
| 1278 | * the error code (which can be 0). Not all transactions are terminated | |
| 1279 | * with HAMMER2_LNK_ERROR status (the low level only cares about the | |
| 1280 | * MSGF_DELETE flag), but most are. | |
| 1281 | * | |
| 1282 | * Replies to one-way messages are a bit of an oxymoron but the feature | |
| 1283 | * is used by the debug (DBG) protocol. | |
| 1284 | * | |
| 1285 | * The reply contains no extended data. | |
| 1286 | */ | |
| 1287 | void | |
| 29ead430 | 1288 | hammer2_msg_reply(hammer2_msg_t *msg, uint32_t error) |
| 8c280d5d | 1289 | { |
| 29ead430 | 1290 | hammer2_iocom_t *iocom = msg->router->iocom; |
| 8c280d5d MD |
1291 | hammer2_state_t *state = msg->state; |
| 1292 | hammer2_msg_t *nmsg; | |
| 1293 | uint32_t cmd; | |
| 1294 | ||
| 1295 | ||
| 1296 | /* | |
| 1297 | * Reply with a simple error code and terminate the transaction. | |
| 1298 | */ | |
| 1299 | cmd = HAMMER2_LNK_ERROR; | |
| 1300 | ||
| 1301 | /* | |
| 1302 | * Check if our direction has even been initiated yet, set CREATE. | |
| 1303 | * | |
| 1304 | * Check what direction this is (command or reply direction). Note | |
| 1305 | * that txcmd might not have been initiated yet. | |
| 1306 | * | |
| 1307 | * If our direction has already been closed we just return without | |
| 1308 | * doing anything. | |
| 1309 | */ | |
| 1310 | if (state) { | |
| 1311 | if (state->txcmd & HAMMER2_MSGF_DELETE) | |
| 1312 | return; | |
| 7dc0f844 | 1313 | if (state->txcmd & HAMMER2_MSGF_REPLY) |
| 8c280d5d MD |
1314 | cmd |= HAMMER2_MSGF_REPLY; |
| 1315 | cmd |= HAMMER2_MSGF_DELETE; | |
| 1316 | } else { | |
| 1317 | if ((msg->any.head.cmd & HAMMER2_MSGF_REPLY) == 0) | |
| 1318 | cmd |= HAMMER2_MSGF_REPLY; | |
| 78476205 | 1319 | } |
| 8c280d5d | 1320 | |
| 29ead430 MD |
1321 | /* |
| 1322 | * Allocate the message and associate it with the existing state. | |
| 1323 | * We cannot pass MSGF_CREATE to msg_alloc() because that may | |
| 1324 | * allocate new state. We have our state already. | |
| 1325 | */ | |
| 1326 | nmsg = hammer2_msg_alloc(&iocom->router, 0, cmd, NULL, NULL); | |
| 1327 | if (state) { | |
| 1328 | if ((state->txcmd & HAMMER2_MSGF_CREATE) == 0) | |
| 1329 | nmsg->any.head.cmd |= HAMMER2_MSGF_CREATE; | |
| 1330 | } | |
| 78476205 | 1331 | nmsg->any.head.error = error; |
| 29ead430 MD |
1332 | nmsg->state = state; |
| 1333 | hammer2_msg_write(nmsg); | |
| 8c280d5d MD |
1334 | } |
| 1335 | ||
| 1336 | /* | |
| 1337 | * Similar to hammer2_msg_reply() but leave the transaction open. That is, | |
| 1338 | * we are generating a streaming reply or an intermediate acknowledgement | |
| 1339 | * of some sort as part of the higher level protocol, with more to come | |
| 1340 | * later. | |
| 1341 | */ | |
| 1342 | void | |
| 29ead430 | 1343 | hammer2_msg_result(hammer2_msg_t *msg, uint32_t error) |
| 8c280d5d | 1344 | { |
| 29ead430 | 1345 | hammer2_iocom_t *iocom = msg->router->iocom; |
| 8c280d5d MD |
1346 | hammer2_state_t *state = msg->state; |
| 1347 | hammer2_msg_t *nmsg; | |
| 1348 | uint32_t cmd; | |
| 1349 | ||
| 1350 | ||
| 1351 | /* | |
| 1352 | * Reply with a simple error code and terminate the transaction. | |
| 1353 | */ | |
| 1354 | cmd = HAMMER2_LNK_ERROR; | |
| 1355 | ||
| 1356 | /* | |
| 1357 | * Check if our direction has even been initiated yet, set CREATE. | |
| 1358 | * | |
| 1359 | * Check what direction this is (command or reply direction). Note | |
| 1360 | * that txcmd might not have been initiated yet. | |
| 1361 | * | |
| 1362 | * If our direction has already been closed we just return without | |
| 1363 | * doing anything. | |
| 1364 | */ | |
| 1365 | if (state) { | |
| 1366 | if (state->txcmd & HAMMER2_MSGF_DELETE) | |
| 1367 | return; | |
| 7dc0f844 | 1368 | if (state->txcmd & HAMMER2_MSGF_REPLY) |
| 8c280d5d MD |
1369 | cmd |= HAMMER2_MSGF_REPLY; |
| 1370 | /* continuing transaction, do not set MSGF_DELETE */ | |
| 1371 | } else { | |
| 1372 | if ((msg->any.head.cmd & HAMMER2_MSGF_REPLY) == 0) | |
| 1373 | cmd |= HAMMER2_MSGF_REPLY; | |
| 1374 | } | |
| 1375 | ||
| 29ead430 MD |
1376 | nmsg = hammer2_msg_alloc(&iocom->router, 0, cmd, NULL, NULL); |
| 1377 | if (state) { | |
| 1378 | if ((state->txcmd & HAMMER2_MSGF_CREATE) == 0) | |
| 1379 | nmsg->any.head.cmd |= HAMMER2_MSGF_CREATE; | |
| 1380 | } | |
| 8c280d5d MD |
1381 | nmsg->any.head.error = error; |
| 1382 | nmsg->state = state; | |
| 29ead430 | 1383 | hammer2_msg_write(nmsg); |
| 8c280d5d MD |
1384 | } |
| 1385 | ||
| 1386 | /* | |
| 1387 | * Terminate a transaction given a state structure by issuing a DELETE. | |
| 1388 | */ | |
| 1389 | void | |
| 1390 | hammer2_state_reply(hammer2_state_t *state, uint32_t error) | |
| 1391 | { | |
| 1392 | hammer2_msg_t *nmsg; | |
| 1393 | uint32_t cmd = HAMMER2_LNK_ERROR | HAMMER2_MSGF_DELETE; | |
| 1394 | ||
| 1395 | /* | |
| 1396 | * Nothing to do if we already transmitted a delete | |
| 1397 | */ | |
| 1398 | if (state->txcmd & HAMMER2_MSGF_DELETE) | |
| 1399 | return; | |
| 1400 | ||
| 1401 | /* | |
| 8c280d5d MD |
1402 | * Set REPLY if the other end initiated the command. Otherwise |
| 1403 | * we are the command direction. | |
| 1404 | */ | |
| 7dc0f844 | 1405 | if (state->txcmd & HAMMER2_MSGF_REPLY) |
| 8c280d5d MD |
1406 | cmd |= HAMMER2_MSGF_REPLY; |
| 1407 | ||
| 29ead430 MD |
1408 | nmsg = hammer2_msg_alloc(&state->iocom->router, 0, cmd, NULL, NULL); |
| 1409 | if (state) { | |
| 1410 | if ((state->txcmd & HAMMER2_MSGF_CREATE) == 0) | |
| 1411 | nmsg->any.head.cmd |= HAMMER2_MSGF_CREATE; | |
| 1412 | } | |
| 8c280d5d MD |
1413 | nmsg->any.head.error = error; |
| 1414 | nmsg->state = state; | |
| 29ead430 | 1415 | hammer2_msg_write(nmsg); |
| 78476205 MD |
1416 | } |
| 1417 | ||
| 1418 | /************************************************************************ | |
| 1419 | * TRANSACTION STATE HANDLING * | |
| 1420 | ************************************************************************ | |
| 1421 | * | |
| 1422 | */ | |
| 1423 | ||
| 78476205 MD |
1424 | /* |
| 1425 | * Process state tracking for a message after reception, prior to | |
| 1426 | * execution. | |
| 1427 | * | |
| 1428 | * Called with msglk held and the msg dequeued. | |
| 1429 | * | |
| 1430 | * All messages are called with dummy state and return actual state. | |
| 1431 | * (One-off messages often just return the same dummy state). | |
| 1432 | * | |
| 1433 | * May request that caller discard the message by setting *discardp to 1. | |
| 1434 | * The returned state is not used in this case and is allowed to be NULL. | |
| 1435 | * | |
| 1436 | * -- | |
| 1437 | * | |
| 1438 | * These routines handle persistent and command/reply message state via the | |
| 1439 | * CREATE and DELETE flags. The first message in a command or reply sequence | |
| 1440 | * sets CREATE, the last message in a command or reply sequence sets DELETE. | |
| 4a2e0eae | 1441 | * |
| 78476205 MD |
1442 | * There can be any number of intermediate messages belonging to the same |
| 1443 | * sequence sent inbetween the CREATE message and the DELETE message, | |
| 1444 | * which set neither flag. This represents a streaming command or reply. | |
| 1445 | * | |
| 1446 | * Any command message received with CREATE set expects a reply sequence to | |
| 1447 | * be returned. Reply sequences work the same as command sequences except the | |
| 1448 | * REPLY bit is also sent. Both the command side and reply side can | |
| 1449 | * degenerate into a single message with both CREATE and DELETE set. Note | |
| 1450 | * that one side can be streaming and the other side not, or neither, or both. | |
| 1451 | * | |
| 1452 | * The msgid is unique for the initiator. That is, two sides sending a new | |
| 1453 | * message can use the same msgid without colliding. | |
| 1454 | * | |
| 1455 | * -- | |
| 1456 | * | |
| 1457 | * ABORT sequences work by setting the ABORT flag along with normal message | |
| 1458 | * state. However, ABORTs can also be sent on half-closed messages, that is | |
| 1459 | * even if the command or reply side has already sent a DELETE, as long as | |
| 1460 | * the message has not been fully closed it can still send an ABORT+DELETE | |
| 1461 | * to terminate the half-closed message state. | |
| 1462 | * | |
| 1463 | * Since ABORT+DELETEs can race we silently discard ABORT's for message | |
| 1464 | * state which has already been fully closed. REPLY+ABORT+DELETEs can | |
| 1465 | * also race, and in this situation the other side might have already | |
| 1466 | * initiated a new unrelated command with the same message id. Since | |
| 1467 | * the abort has not set the CREATE flag the situation can be detected | |
| 1468 | * and the message will also be discarded. | |
| 1469 | * | |
| 1470 | * Non-blocking requests can be initiated with ABORT+CREATE[+DELETE]. | |
| 1471 | * The ABORT request is essentially integrated into the command instead | |
| 1472 | * of being sent later on. In this situation the command implementation | |
| 1473 | * detects that CREATE and ABORT are both set (vs ABORT alone) and can | |
| 1474 | * special-case non-blocking operation for the command. | |
| 1475 | * | |
| 1476 | * NOTE! Messages with ABORT set without CREATE or DELETE are considered | |
| 1477 | * to be mid-stream aborts for command/reply sequences. ABORTs on | |
| 1478 | * one-way messages are not supported. | |
| 1479 | * | |
| 1480 | * NOTE! If a command sequence does not support aborts the ABORT flag is | |
| 1481 | * simply ignored. | |
| 1482 | * | |
| 1483 | * -- | |
| 1484 | * | |
| 1485 | * One-off messages (no reply expected) are sent with neither CREATE or DELETE | |
| 1486 | * set. One-off messages cannot be aborted and typically aren't processed | |
| 1487 | * by these routines. The REPLY bit can be used to distinguish whether a | |
| 1488 | * one-off message is a command or reply. For example, one-off replies | |
| 1489 | * will typically just contain status updates. | |
| 9ab15106 | 1490 | */ |
| 78476205 MD |
1491 | static int |
| 1492 | hammer2_state_msgrx(hammer2_iocom_t *iocom, hammer2_msg_t *msg) | |
| 1493 | { | |
| 1494 | hammer2_state_t *state; | |
| 1495 | hammer2_state_t dummy; | |
| 1496 | int error; | |
| 1497 | ||
| 1498 | /* | |
| 1499 | * Lock RB tree and locate existing persistent state, if any. | |
| 1500 | * | |
| 1501 | * If received msg is a command state is on staterd_tree. | |
| 1502 | * If received msg is a reply state is on statewr_tree. | |
| 1503 | */ | |
| 78476205 MD |
1504 | |
| 1505 | dummy.msgid = msg->any.head.msgid; | |
| 8c280d5d | 1506 | dummy.spanid = msg->any.head.spanid; |
| 7dc0f844 | 1507 | pthread_mutex_lock(&iocom->mtx); |
| 78476205 MD |
1508 | if (msg->any.head.cmd & HAMMER2_MSGF_REPLY) { |
| 1509 | state = RB_FIND(hammer2_state_tree, | |
| 29ead430 | 1510 | &iocom->router.statewr_tree, &dummy); |
| 78476205 MD |
1511 | } else { |
| 1512 | state = RB_FIND(hammer2_state_tree, | |
| 29ead430 | 1513 | &iocom->router.staterd_tree, &dummy); |
| 78476205 MD |
1514 | } |
| 1515 | msg->state = state; | |
| 7dc0f844 | 1516 | pthread_mutex_unlock(&iocom->mtx); |
| 78476205 MD |
1517 | |
| 1518 | /* | |
| 1519 | * Short-cut one-off or mid-stream messages (state may be NULL). | |
| 1520 | */ | |
| 1521 | if ((msg->any.head.cmd & (HAMMER2_MSGF_CREATE | HAMMER2_MSGF_DELETE | | |
| 1522 | HAMMER2_MSGF_ABORT)) == 0) { | |
| 78476205 MD |
1523 | return(0); |
| 1524 | } | |
| 1525 | ||
| 1526 | /* | |
| 1527 | * Switch on CREATE, DELETE, REPLY, and also handle ABORT from | |
| 1528 | * inside the case statements. | |
| 1529 | */ | |
| 1530 | switch(msg->any.head.cmd & (HAMMER2_MSGF_CREATE | HAMMER2_MSGF_DELETE | | |
| 1531 | HAMMER2_MSGF_REPLY)) { | |
| 1532 | case HAMMER2_MSGF_CREATE: | |
| 1533 | case HAMMER2_MSGF_CREATE | HAMMER2_MSGF_DELETE: | |
| 1534 | /* | |
| 1535 | * New persistant command received. | |
| 1536 | */ | |
| 1537 | if (state) { | |
| 81666e1b MD |
1538 | fprintf(stderr, "duplicate-trans %s\n", |
| 1539 | hammer2_msg_str(msg)); | |
| 78476205 | 1540 | error = HAMMER2_IOQ_ERROR_TRANS; |
| cf715800 | 1541 | assert(0); |
| 78476205 MD |
1542 | break; |
| 1543 | } | |
| 1544 | state = malloc(sizeof(*state)); | |
| 1545 | bzero(state, sizeof(*state)); | |
| 1546 | state->iocom = iocom; | |
| 1547 | state->flags = HAMMER2_STATE_DYNAMIC; | |
| 1548 | state->msg = msg; | |
| 7dc0f844 | 1549 | state->txcmd = HAMMER2_MSGF_REPLY; |
| 78476205 | 1550 | state->rxcmd = msg->any.head.cmd & ~HAMMER2_MSGF_DELETE; |
| 78476205 | 1551 | state->flags |= HAMMER2_STATE_INSERTED; |
| 8c280d5d MD |
1552 | state->msgid = msg->any.head.msgid; |
| 1553 | state->spanid = msg->any.head.spanid; | |
| 78476205 | 1554 | msg->state = state; |
| cf715800 | 1555 | pthread_mutex_lock(&iocom->mtx); |
| 29ead430 MD |
1556 | RB_INSERT(hammer2_state_tree, |
| 1557 | &iocom->router.staterd_tree, state); | |
| cf715800 | 1558 | pthread_mutex_unlock(&iocom->mtx); |
| 78476205 | 1559 | error = 0; |
| cf715800 MD |
1560 | if (DebugOpt) { |
| 1561 | fprintf(stderr, "create state %p id=%08x on iocom staterd %p\n", | |
| 1562 | state, (uint32_t)state->msgid, iocom); | |
| 1563 | } | |
| 78476205 MD |
1564 | break; |
| 1565 | case HAMMER2_MSGF_DELETE: | |
| 1566 | /* | |
| 1567 | * Persistent state is expected but might not exist if an | |
| 1568 | * ABORT+DELETE races the close. | |
| 1569 | */ | |
| 1570 | if (state == NULL) { | |
| 1571 | if (msg->any.head.cmd & HAMMER2_MSGF_ABORT) { | |
| 1572 | error = HAMMER2_IOQ_ERROR_EALREADY; | |
| 1573 | } else { | |
| 81666e1b MD |
1574 | fprintf(stderr, "missing-state %s\n", |
| 1575 | hammer2_msg_str(msg)); | |
| 78476205 | 1576 | error = HAMMER2_IOQ_ERROR_TRANS; |
| cf715800 | 1577 | assert(0); |
| 78476205 MD |
1578 | } |
| 1579 | break; | |
| 1580 | } | |
| 1581 | ||
| 1582 | /* | |
| 1583 | * Handle another ABORT+DELETE case if the msgid has already | |
| 1584 | * been reused. | |
| 1585 | */ | |
| 1586 | if ((state->rxcmd & HAMMER2_MSGF_CREATE) == 0) { | |
| 1587 | if (msg->any.head.cmd & HAMMER2_MSGF_ABORT) { | |
| 1588 | error = HAMMER2_IOQ_ERROR_EALREADY; | |
| 1589 | } else { | |
| 81666e1b MD |
1590 | fprintf(stderr, "reused-state %s\n", |
| 1591 | hammer2_msg_str(msg)); | |
| 78476205 | 1592 | error = HAMMER2_IOQ_ERROR_TRANS; |
| cf715800 | 1593 | assert(0); |
| 78476205 MD |
1594 | } |
| 1595 | break; | |
| 1596 | } | |
| 1597 | error = 0; | |
| 1598 | break; | |
| 1599 | default: | |
| 1600 | /* | |
| 1601 | * Check for mid-stream ABORT command received, otherwise | |
| 1602 | * allow. | |
| 1603 | */ | |
| 1604 | if (msg->any.head.cmd & HAMMER2_MSGF_ABORT) { | |
| 1605 | if (state == NULL || | |
| 1606 | (state->rxcmd & HAMMER2_MSGF_CREATE) == 0) { | |
| 1607 | error = HAMMER2_IOQ_ERROR_EALREADY; | |
| 1608 | break; | |
| 1609 | } | |
| 1610 | } | |
| 1611 | error = 0; | |
| 1612 | break; | |
| 1613 | case HAMMER2_MSGF_REPLY | HAMMER2_MSGF_CREATE: | |
| 1614 | case HAMMER2_MSGF_REPLY | HAMMER2_MSGF_CREATE | HAMMER2_MSGF_DELETE: | |
| 1615 | /* | |
| 1616 | * When receiving a reply with CREATE set the original | |
| 1617 | * persistent state message should already exist. | |
| 1618 | */ | |
| 1619 | if (state == NULL) { | |
| 81666e1b MD |
1620 | fprintf(stderr, "no-state(r) %s\n", |
| 1621 | hammer2_msg_str(msg)); | |
| 78476205 | 1622 | error = HAMMER2_IOQ_ERROR_TRANS; |
| cf715800 | 1623 | assert(0); |
| 78476205 MD |
1624 | break; |
| 1625 | } | |
| 7dc0f844 MD |
1626 | assert(((state->rxcmd ^ msg->any.head.cmd) & |
| 1627 | HAMMER2_MSGF_REPLY) == 0); | |
| 78476205 MD |
1628 | state->rxcmd = msg->any.head.cmd & ~HAMMER2_MSGF_DELETE; |
| 1629 | error = 0; | |
| 1630 | break; | |
| 1631 | case HAMMER2_MSGF_REPLY | HAMMER2_MSGF_DELETE: | |
| 1632 | /* | |
| 1633 | * Received REPLY+ABORT+DELETE in case where msgid has | |
| 1634 | * already been fully closed, ignore the message. | |
| 1635 | */ | |
| 1636 | if (state == NULL) { | |
| 1637 | if (msg->any.head.cmd & HAMMER2_MSGF_ABORT) { | |
| 1638 | error = HAMMER2_IOQ_ERROR_EALREADY; | |
| 1639 | } else { | |
| 81666e1b MD |
1640 | fprintf(stderr, "no-state(r,d) %s\n", |
| 1641 | hammer2_msg_str(msg)); | |
| 78476205 | 1642 | error = HAMMER2_IOQ_ERROR_TRANS; |
| cf715800 | 1643 | assert(0); |
| 78476205 MD |
1644 | } |
| 1645 | break; | |
| 1646 | } | |
| 1647 | ||
| 1648 | /* | |
| 1649 | * Received REPLY+ABORT+DELETE in case where msgid has | |
| 1650 | * already been reused for an unrelated message, | |
| 1651 | * ignore the message. | |
| 1652 | */ | |
| 1653 | if ((state->rxcmd & HAMMER2_MSGF_CREATE) == 0) { | |
| 1654 | if (msg->any.head.cmd & HAMMER2_MSGF_ABORT) { | |
| 1655 | error = HAMMER2_IOQ_ERROR_EALREADY; | |
| 1656 | } else { | |
| 81666e1b MD |
1657 | fprintf(stderr, "reused-state(r,d) %s\n", |
| 1658 | hammer2_msg_str(msg)); | |
| 78476205 | 1659 | error = HAMMER2_IOQ_ERROR_TRANS; |
| cf715800 | 1660 | assert(0); |
| 78476205 MD |
1661 | } |
| 1662 | break; | |
| 1663 | } | |
| 1664 | error = 0; | |
| 1665 | break; | |
| 1666 | case HAMMER2_MSGF_REPLY: | |
| 1667 | /* | |
| 1668 | * Check for mid-stream ABORT reply received to sent command. | |
| 1669 | */ | |
| 1670 | if (msg->any.head.cmd & HAMMER2_MSGF_ABORT) { | |
| 1671 | if (state == NULL || | |
| 1672 | (state->rxcmd & HAMMER2_MSGF_CREATE) == 0) { | |
| 1673 | error = HAMMER2_IOQ_ERROR_EALREADY; | |
| 1674 | break; | |
| 1675 | } | |
| 1676 | } | |
| 1677 | error = 0; | |
| 1678 | break; | |
| 1679 | } | |
| 78476205 MD |
1680 | return (error); |
| 1681 | } | |
| 1682 | ||
| 9ab15106 | 1683 | void |
| 78476205 | 1684 | hammer2_state_cleanuprx(hammer2_iocom_t *iocom, hammer2_msg_t *msg) |
| 9ab15106 | 1685 | { |
| 78476205 MD |
1686 | hammer2_state_t *state; |
| 1687 | ||
| 1688 | if ((state = msg->state) == NULL) { | |
| 1b195a98 MD |
1689 | /* |
| 1690 | * Free a non-transactional message, there is no state | |
| 1691 | * to worry about. | |
| 1692 | */ | |
| 29ead430 | 1693 | hammer2_msg_free(msg); |
| 78476205 | 1694 | } else if (msg->any.head.cmd & HAMMER2_MSGF_DELETE) { |
| 1b195a98 MD |
1695 | /* |
| 1696 | * Message terminating transaction, destroy the related | |
| 1697 | * state, the original message, and this message (if it | |
| 1698 | * isn't the original message due to a CREATE|DELETE). | |
| 1699 | */ | |
| 7dc0f844 | 1700 | pthread_mutex_lock(&iocom->mtx); |
| 78476205 MD |
1701 | state->rxcmd |= HAMMER2_MSGF_DELETE; |
| 1702 | if (state->txcmd & HAMMER2_MSGF_DELETE) { | |
| 1703 | if (state->msg == msg) | |
| 1704 | state->msg = NULL; | |
| 1705 | assert(state->flags & HAMMER2_STATE_INSERTED); | |
| 7dc0f844 MD |
1706 | if (state->rxcmd & HAMMER2_MSGF_REPLY) { |
| 1707 | assert(msg->any.head.cmd & HAMMER2_MSGF_REPLY); | |
| 78476205 | 1708 | RB_REMOVE(hammer2_state_tree, |
| 29ead430 | 1709 | &iocom->router.statewr_tree, state); |
| 78476205 | 1710 | } else { |
| 7dc0f844 | 1711 | assert((msg->any.head.cmd & HAMMER2_MSGF_REPLY) == 0); |
| 78476205 | 1712 | RB_REMOVE(hammer2_state_tree, |
| 29ead430 | 1713 | &iocom->router.staterd_tree, state); |
| 78476205 MD |
1714 | } |
| 1715 | state->flags &= ~HAMMER2_STATE_INSERTED; | |
| 78476205 MD |
1716 | hammer2_state_free(state); |
| 1717 | } else { | |
| 7dc0f844 | 1718 | ; |
| 78476205 | 1719 | } |
| 7dc0f844 | 1720 | pthread_mutex_unlock(&iocom->mtx); |
| 29ead430 | 1721 | hammer2_msg_free(msg); |
| 78476205 | 1722 | } else if (state->msg != msg) { |
| 1b195a98 MD |
1723 | /* |
| 1724 | * Message not terminating transaction, leave state intact | |
| 1725 | * and free message if it isn't the CREATE message. | |
| 1726 | */ | |
| 29ead430 | 1727 | hammer2_msg_free(msg); |
| 9ab15106 | 1728 | } |
| 78476205 MD |
1729 | } |
| 1730 | ||
| 78476205 MD |
1731 | static void |
| 1732 | hammer2_state_cleanuptx(hammer2_iocom_t *iocom, hammer2_msg_t *msg) | |
| 1733 | { | |
| 1734 | hammer2_state_t *state; | |
| 1735 | ||
| 1736 | if ((state = msg->state) == NULL) { | |
| 29ead430 | 1737 | hammer2_msg_free(msg); |
| 78476205 | 1738 | } else if (msg->any.head.cmd & HAMMER2_MSGF_DELETE) { |
| 7dc0f844 | 1739 | pthread_mutex_lock(&iocom->mtx); |
| 78476205 MD |
1740 | state->txcmd |= HAMMER2_MSGF_DELETE; |
| 1741 | if (state->rxcmd & HAMMER2_MSGF_DELETE) { | |
| 1742 | if (state->msg == msg) | |
| 1743 | state->msg = NULL; | |
| 1744 | assert(state->flags & HAMMER2_STATE_INSERTED); | |
| 7dc0f844 MD |
1745 | if (state->txcmd & HAMMER2_MSGF_REPLY) { |
| 1746 | assert(msg->any.head.cmd & HAMMER2_MSGF_REPLY); | |
| 78476205 | 1747 | RB_REMOVE(hammer2_state_tree, |
| 29ead430 | 1748 | &iocom->router.staterd_tree, state); |
| 78476205 | 1749 | } else { |
| 7dc0f844 | 1750 | assert((msg->any.head.cmd & HAMMER2_MSGF_REPLY) == 0); |
| 78476205 | 1751 | RB_REMOVE(hammer2_state_tree, |
| 29ead430 | 1752 | &iocom->router.statewr_tree, state); |
| 78476205 MD |
1753 | } |
| 1754 | state->flags &= ~HAMMER2_STATE_INSERTED; | |
| 78476205 MD |
1755 | hammer2_state_free(state); |
| 1756 | } else { | |
| 7dc0f844 | 1757 | ; |
| 78476205 | 1758 | } |
| 7dc0f844 | 1759 | pthread_mutex_unlock(&iocom->mtx); |
| 29ead430 | 1760 | hammer2_msg_free(msg); |
| 78476205 | 1761 | } else if (state->msg != msg) { |
| 29ead430 | 1762 | hammer2_msg_free(msg); |
| 78476205 MD |
1763 | } |
| 1764 | } | |
| 1765 | ||
| 7dc0f844 MD |
1766 | /* |
| 1767 | * Called with iocom locked | |
| 1768 | */ | |
| 78476205 MD |
1769 | void |
| 1770 | hammer2_state_free(hammer2_state_t *state) | |
| 1771 | { | |
| 1772 | hammer2_iocom_t *iocom = state->iocom; | |
| 1773 | hammer2_msg_t *msg; | |
| 7dc0f844 MD |
1774 | char dummy; |
| 1775 | ||
| 81666e1b | 1776 | if (DebugOpt) { |
| cf715800 MD |
1777 | fprintf(stderr, "terminate state %p id=%08x\n", |
| 1778 | state, (uint32_t)state->msgid); | |
| 81666e1b | 1779 | } |
| 7dc0f844 | 1780 | assert(state->any.any == NULL); |
| 78476205 MD |
1781 | msg = state->msg; |
| 1782 | state->msg = NULL; | |
| 78476205 | 1783 | if (msg) |
| 29ead430 | 1784 | hammer2_msg_free_locked(msg); |
| 78476205 | 1785 | free(state); |
| 7dc0f844 MD |
1786 | |
| 1787 | /* | |
| 1788 | * When an iocom error is present we are trying to close down the | |
| 1789 | * iocom, but we have to wait for all states to terminate before | |
| 1790 | * we can do so. The iocom rx code will terminate the receive side | |
| 1791 | * for all transactions by simulating incoming DELETE messages, | |
| 1792 | * but the state doesn't go away until both sides are terminated. | |
| 1793 | * | |
| 1794 | * We may have to wake up the rx code. | |
| 1795 | */ | |
| 1796 | if (iocom->ioq_rx.error && | |
| 29ead430 MD |
1797 | RB_EMPTY(&iocom->router.staterd_tree) && |
| 1798 | RB_EMPTY(&iocom->router.statewr_tree)) { | |
| 7dc0f844 MD |
1799 | dummy = 0; |
| 1800 | write(iocom->wakeupfds[1], &dummy, 1); | |
| 1801 | } | |
| 78476205 MD |
1802 | } |
| 1803 | ||
| 81666e1b MD |
1804 | const char * |
| 1805 | hammer2_basecmd_str(uint32_t cmd) | |
| 1806 | { | |
| 1807 | static char buf[64]; | |
| 1808 | char protobuf[32]; | |
| 1809 | char cmdbuf[32]; | |
| 1810 | const char *protostr; | |
| 1811 | const char *cmdstr; | |
| 1812 | ||
| 1813 | switch(cmd & HAMMER2_MSGF_PROTOS) { | |
| 1814 | case HAMMER2_MSG_PROTO_LNK: | |
| 1815 | protostr = "LNK_"; | |
| 1816 | break; | |
| 1817 | case HAMMER2_MSG_PROTO_DBG: | |
| 1818 | protostr = "DBG_"; | |
| 1819 | break; | |
| 1820 | case HAMMER2_MSG_PROTO_DOM: | |
| 1821 | protostr = "DOM_"; | |
| 1822 | break; | |
| 1823 | case HAMMER2_MSG_PROTO_CAC: | |
| 1824 | protostr = "CAC_"; | |
| 1825 | break; | |
| 1826 | case HAMMER2_MSG_PROTO_QRM: | |
| 1827 | protostr = "QRM_"; | |
| 1828 | break; | |
| 1829 | case HAMMER2_MSG_PROTO_BLK: | |
| 1830 | protostr = "BLK_"; | |
| 1831 | break; | |
| 1832 | case HAMMER2_MSG_PROTO_VOP: | |
| 1833 | protostr = "VOP_"; | |
| 1834 | break; | |
| 1835 | default: | |
| 1836 | snprintf(protobuf, sizeof(protobuf), "%x_", | |
| 1837 | (cmd & HAMMER2_MSGF_PROTOS) >> 20); | |
| 1838 | protostr = protobuf; | |
| 1839 | break; | |
| 1840 | } | |
| 1841 | ||
| 1842 | switch(cmd & (HAMMER2_MSGF_PROTOS | | |
| 1843 | HAMMER2_MSGF_CMDS | | |
| 1844 | HAMMER2_MSGF_SIZE)) { | |
| 1845 | case HAMMER2_LNK_PAD: | |
| 1846 | cmdstr = "PAD"; | |
| 1847 | break; | |
| 1848 | case HAMMER2_LNK_PING: | |
| 1849 | cmdstr = "PING"; | |
| 1850 | break; | |
| 1851 | case HAMMER2_LNK_AUTH: | |
| 1852 | cmdstr = "AUTH"; | |
| 1853 | break; | |
| 1854 | case HAMMER2_LNK_CONN: | |
| 1855 | cmdstr = "CONN"; | |
| 1856 | break; | |
| 1857 | case HAMMER2_LNK_SPAN: | |
| 1858 | cmdstr = "SPAN"; | |
| 1859 | break; | |
| 1860 | case HAMMER2_LNK_ERROR: | |
| 1861 | if (cmd & HAMMER2_MSGF_DELETE) | |
| 1862 | cmdstr = "RETURN"; | |
| 1863 | else | |
| 1864 | cmdstr = "RESULT"; | |
| 1865 | break; | |
| 1866 | case HAMMER2_DBG_SHELL: | |
| 1867 | cmdstr = "SHELL"; | |
| 1868 | break; | |
| 1869 | default: | |
| 1870 | snprintf(cmdbuf, sizeof(cmdbuf), | |
| 1871 | "%06x", (cmd & (HAMMER2_MSGF_PROTOS | | |
| 1872 | HAMMER2_MSGF_CMDS | | |
| 1873 | HAMMER2_MSGF_SIZE))); | |
| 1874 | cmdstr = cmdbuf; | |
| 1875 | break; | |
| 1876 | } | |
| 1877 | snprintf(buf, sizeof(buf), "%s%s", protostr, cmdstr); | |
| 1878 | return (buf); | |
| 1879 | } | |
| 1880 | ||
| 1881 | const char * | |
| 1882 | hammer2_msg_str(hammer2_msg_t *msg) | |
| 1883 | { | |
| 1884 | hammer2_state_t *state; | |
| 1885 | static char buf[256]; | |
| 1886 | char errbuf[16]; | |
| 1887 | char statebuf[64]; | |
| 1888 | char flagbuf[64]; | |
| 1889 | const char *statestr; | |
| 1890 | const char *errstr; | |
| 1891 | uint32_t basecmd; | |
| 1892 | int i; | |
| 1893 | ||
| 1894 | /* | |
| 1895 | * Parse the state | |
| 1896 | */ | |
| 1897 | if ((state = msg->state) != NULL) { | |
| 1898 | basecmd = (state->rxcmd & HAMMER2_MSGF_REPLY) ? | |
| 1899 | state->txcmd : state->rxcmd; | |
| 1900 | snprintf(statebuf, sizeof(statebuf), | |
| 1901 | " %s=%s,L=%s%s,R=%s%s", | |
| 1902 | ((state->txcmd & HAMMER2_MSGF_REPLY) ? | |
| 1903 | "rcvcmd" : "sndcmd"), | |
| 1904 | hammer2_basecmd_str(basecmd), | |
| 1905 | ((state->txcmd & HAMMER2_MSGF_CREATE) ? "C" : ""), | |
| 1906 | ((state->txcmd & HAMMER2_MSGF_DELETE) ? "D" : ""), | |
| 1907 | ((state->rxcmd & HAMMER2_MSGF_CREATE) ? "C" : ""), | |
| 1908 | ((state->rxcmd & HAMMER2_MSGF_DELETE) ? "D" : "") | |
| 1909 | ); | |
| 1910 | statestr = statebuf; | |
| 1911 | } else { | |
| 1912 | statestr = ""; | |
| 1913 | } | |
| 1914 | ||
| 1915 | /* | |
| 1916 | * Parse the error | |
| 1917 | */ | |
| 1918 | switch(msg->any.head.error) { | |
| 1919 | case 0: | |
| 1920 | errstr = ""; | |
| 1921 | break; | |
| 1922 | case HAMMER2_IOQ_ERROR_SYNC: | |
| 1923 | errstr = "err=IOQ:NOSYNC"; | |
| 1924 | break; | |
| 1925 | case HAMMER2_IOQ_ERROR_EOF: | |
| 1926 | errstr = "err=IOQ:STREAMEOF"; | |
| 1927 | break; | |
| 1928 | case HAMMER2_IOQ_ERROR_SOCK: | |
| 1929 | errstr = "err=IOQ:SOCKERR"; | |
| 1930 | break; | |
| 1931 | case HAMMER2_IOQ_ERROR_FIELD: | |
| 1932 | errstr = "err=IOQ:BADFIELD"; | |
| 1933 | break; | |
| 1934 | case HAMMER2_IOQ_ERROR_HCRC: | |
| 1935 | errstr = "err=IOQ:BADHCRC"; | |
| 1936 | break; | |
| 1937 | case HAMMER2_IOQ_ERROR_XCRC: | |
| 1938 | errstr = "err=IOQ:BADXCRC"; | |
| 1939 | break; | |
| 1940 | case HAMMER2_IOQ_ERROR_ACRC: | |
| 1941 | errstr = "err=IOQ:BADACRC"; | |
| 1942 | break; | |
| 1943 | case HAMMER2_IOQ_ERROR_STATE: | |
| 1944 | errstr = "err=IOQ:BADSTATE"; | |
| 1945 | break; | |
| 1946 | case HAMMER2_IOQ_ERROR_NOPEER: | |
| 1947 | errstr = "err=IOQ:PEERCONFIG"; | |
| 1948 | break; | |
| 1949 | case HAMMER2_IOQ_ERROR_NORKEY: | |
| 1950 | errstr = "err=IOQ:BADRKEY"; | |
| 1951 | break; | |
| 1952 | case HAMMER2_IOQ_ERROR_NOLKEY: | |
| 1953 | errstr = "err=IOQ:BADLKEY"; | |
| 1954 | break; | |
| 1955 | case HAMMER2_IOQ_ERROR_KEYXCHGFAIL: | |
| 1956 | errstr = "err=IOQ:BADKEYXCHG"; | |
| 1957 | break; | |
| 1958 | case HAMMER2_IOQ_ERROR_KEYFMT: | |
| 1959 | errstr = "err=IOQ:BADFMT"; | |
| 1960 | break; | |
| 1961 | case HAMMER2_IOQ_ERROR_BADURANDOM: | |
| 1962 | errstr = "err=IOQ:BADRANDOM"; | |
| 1963 | break; | |
| 1964 | case HAMMER2_IOQ_ERROR_MSGSEQ: | |
| 1965 | errstr = "err=IOQ:BADSEQ"; | |
| 1966 | break; | |
| 1967 | case HAMMER2_IOQ_ERROR_EALREADY: | |
| 1968 | errstr = "err=IOQ:DUPMSG"; | |
| 1969 | break; | |
| 1970 | case HAMMER2_IOQ_ERROR_TRANS: | |
| 1971 | errstr = "err=IOQ:BADTRANS"; | |
| 1972 | break; | |
| 1973 | case HAMMER2_MSG_ERR_NOSUPP: | |
| 1974 | errstr = "err=NOSUPPORT"; | |
| 1975 | break; | |
| 1976 | default: | |
| 1977 | snprintf(errbuf, sizeof(errbuf), | |
| 1978 | " err=%d", msg->any.head.error); | |
| 1979 | errstr = errbuf; | |
| 1980 | break; | |
| 1981 | } | |
| 1982 | ||
| 1983 | /* | |
| 1984 | * Message flags | |
| 1985 | */ | |
| 1986 | i = 0; | |
| 1987 | if (msg->any.head.cmd & (HAMMER2_MSGF_CREATE | HAMMER2_MSGF_DELETE | | |
| 1988 | HAMMER2_MSGF_ABORT | HAMMER2_MSGF_REPLY)) { | |
| 1989 | flagbuf[i++] = '|'; | |
| 1990 | if (msg->any.head.cmd & HAMMER2_MSGF_CREATE) | |
| 1991 | flagbuf[i++] = 'C'; | |
| 1992 | if (msg->any.head.cmd & HAMMER2_MSGF_DELETE) | |
| 1993 | flagbuf[i++] = 'D'; | |
| 1994 | if (msg->any.head.cmd & HAMMER2_MSGF_REPLY) | |
| 1995 | flagbuf[i++] = 'R'; | |
| 1996 | if (msg->any.head.cmd & HAMMER2_MSGF_ABORT) | |
| 1997 | flagbuf[i++] = 'A'; | |
| 1998 | } | |
| 1999 | flagbuf[i] = 0; | |
| 2000 | ||
| 2001 | /* | |
| 2002 | * Generate the buf | |
| 2003 | */ | |
| 2004 | snprintf(buf, sizeof(buf), | |
| 2005 | "msg=%s%s %s id=%08x span=%08x %s", | |
| 2006 | hammer2_basecmd_str(msg->any.head.cmd), | |
| 2007 | flagbuf, | |
| 2008 | errstr, | |
| 2009 | (uint32_t)(intmax_t)msg->any.head.msgid, /* for brevity */ | |
| 2010 | (uint32_t)(intmax_t)msg->any.head.spanid, /* for brevity */ | |
| 2011 | statestr); | |
| 2012 | ||
| 2013 | return(buf); | |
| 2014 | } |