Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Functions operating on SOCK_STREAM and buffers. |
| 3 | * |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 4 | * Copyright 2000-2009 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 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 | |
Willy Tarreau | 6b4aad4 | 2009-01-18 21:59:13 +0100 | [diff] [blame] | 13 | #define _GNU_SOURCE |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 14 | #include <errno.h> |
| 15 | #include <fcntl.h> |
| 16 | #include <stdio.h> |
| 17 | #include <stdlib.h> |
| 18 | |
Willy Tarreau | fb14edc | 2009-06-14 15:24:37 +0200 | [diff] [blame] | 19 | #include <netinet/tcp.h> |
| 20 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | #include <sys/socket.h> |
| 22 | #include <sys/stat.h> |
| 23 | #include <sys/types.h> |
| 24 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 25 | #include <common/compat.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 26 | #include <common/config.h> |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 27 | #include <common/debug.h> |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 28 | #include <common/standard.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 29 | #include <common/ticks.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 30 | #include <common/time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 31 | |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 32 | #include <proto/buffers.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 33 | #include <proto/client.h> |
| 34 | #include <proto/fd.h> |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 35 | #include <proto/pipe.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 36 | #include <proto/stream_sock.h> |
| 37 | #include <proto/task.h> |
| 38 | |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 39 | #include <types/global.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 40 | |
Willy Tarreau | 6b4aad4 | 2009-01-18 21:59:13 +0100 | [diff] [blame] | 41 | /* On recent Linux kernels, the splice() syscall may be used for faster data copy. |
| 42 | * But it's not always defined on some OS versions, and it even happens that some |
| 43 | * definitions are wrong with some glibc due to an offset bug in syscall(). |
| 44 | */ |
| 45 | |
| 46 | #if defined(CONFIG_HAP_LINUX_SPLICE) |
| 47 | #include <unistd.h> |
| 48 | #include <sys/syscall.h> |
| 49 | |
| 50 | #ifndef SPLICE_F_MOVE |
| 51 | #define SPLICE_F_MOVE 0x1 |
| 52 | #endif |
| 53 | |
| 54 | #ifndef SPLICE_F_NONBLOCK |
| 55 | #define SPLICE_F_NONBLOCK 0x2 |
| 56 | #endif |
| 57 | |
| 58 | #ifndef SPLICE_F_MORE |
| 59 | #define SPLICE_F_MORE 0x4 |
| 60 | #endif |
| 61 | |
| 62 | #ifndef __NR_splice |
| 63 | #if defined(__powerpc__) || defined(__powerpc64__) |
| 64 | #define __NR_splice 283 |
| 65 | #elif defined(__sparc__) || defined(__sparc64__) |
| 66 | #define __NR_splice 232 |
| 67 | #elif defined(__x86_64__) |
| 68 | #define __NR_splice 275 |
| 69 | #elif defined(__alpha__) |
| 70 | #define __NR_splice 468 |
| 71 | #elif defined (__i386__) |
| 72 | #define __NR_splice 313 |
| 73 | #else |
| 74 | #warning unsupported architecture, guessing __NR_splice=313 like x86... |
| 75 | #define __NR_splice 313 |
| 76 | #endif /* $arch */ |
| 77 | |
| 78 | _syscall6(int, splice, int, fdin, loff_t *, off_in, int, fdout, loff_t *, off_out, size_t, len, unsigned long, flags) |
| 79 | |
| 80 | #endif /* __NR_splice */ |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 81 | |
| 82 | /* A pipe contains 16 segments max, and it's common to see segments of 1448 bytes |
| 83 | * because of timestamps. Use this as a hint for not looping on splice(). |
| 84 | */ |
| 85 | #define SPLICE_FULL_HINT 16*1448 |
| 86 | |
| 87 | /* Returns : |
| 88 | * -1 if splice is not possible or not possible anymore and we must switch to |
| 89 | * user-land copy (eg: to_forward reached) |
| 90 | * 0 when we know that polling is required to get more data (EAGAIN) |
| 91 | * 1 for all other cases (we can safely try again, or if an activity has been |
| 92 | * detected (DATA/NULL/ERR)) |
| 93 | * Sets : |
| 94 | * BF_READ_NULL |
| 95 | * BF_READ_PARTIAL |
| 96 | * BF_WRITE_PARTIAL (during copy) |
| 97 | * BF_EMPTY (during copy) |
| 98 | * SI_FL_ERR |
| 99 | * SI_FL_WAIT_ROOM |
| 100 | * (SI_FL_WAIT_RECV) |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 101 | * |
| 102 | * This function automatically allocates a pipe from the pipe pool. It also |
| 103 | * carefully ensures to clear b->pipe whenever it leaves the pipe empty. |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 104 | */ |
| 105 | static int stream_sock_splice_in(struct buffer *b, struct stream_interface *si) |
| 106 | { |
| 107 | int fd = si->fd; |
| 108 | int ret, max, total = 0; |
| 109 | int retval = 1; |
| 110 | |
| 111 | if (!b->to_forward) |
| 112 | return -1; |
| 113 | |
| 114 | if (!(b->flags & BF_KERN_SPLICING)) |
| 115 | return -1; |
| 116 | |
| 117 | if (b->l) { |
| 118 | /* We're embarrassed, there are already data pending in |
| 119 | * the buffer and we don't want to have them at two |
| 120 | * locations at a time. Let's indicate we need some |
| 121 | * place and ask the consumer to hurry. |
| 122 | */ |
| 123 | si->flags |= SI_FL_WAIT_ROOM; |
| 124 | EV_FD_CLR(fd, DIR_RD); |
| 125 | b->rex = TICK_ETERNITY; |
| 126 | b->cons->chk_snd(b->cons); |
| 127 | return 1; |
| 128 | } |
| 129 | |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 130 | if (unlikely(b->pipe == NULL)) { |
| 131 | if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) { |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 132 | b->flags &= ~BF_KERN_SPLICING; |
| 133 | return -1; |
| 134 | } |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 135 | } |
| 136 | |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 137 | /* At this point, b->pipe is valid */ |
| 138 | |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 139 | while (1) { |
| 140 | max = b->to_forward; |
| 141 | if (max <= 0) { |
| 142 | /* It looks like the buffer + the pipe already contain |
| 143 | * the maximum amount of data to be transferred. Try to |
| 144 | * send those data immediately on the other side if it |
| 145 | * is currently waiting. |
| 146 | */ |
| 147 | retval = -1; /* end of forwarding */ |
| 148 | break; |
| 149 | } |
| 150 | |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 151 | ret = splice(fd, NULL, b->pipe->prod, NULL, max, |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 152 | SPLICE_F_MOVE|SPLICE_F_NONBLOCK); |
| 153 | |
| 154 | if (ret <= 0) { |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 155 | if (ret == 0) { |
Willy Tarreau | 98b306b | 2009-01-25 11:11:32 +0100 | [diff] [blame] | 156 | /* connection closed. This is only detected by |
| 157 | * recent kernels (>= 2.6.27.13). |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 158 | */ |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 159 | b->flags |= BF_READ_NULL; |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 160 | retval = 1; /* no need for further polling */ |
| 161 | break; |
| 162 | } |
| 163 | |
| 164 | if (errno == EAGAIN) { |
| 165 | /* there are two reasons for EAGAIN : |
| 166 | * - nothing in the socket buffer (standard) |
| 167 | * - pipe is full |
Willy Tarreau | 98b306b | 2009-01-25 11:11:32 +0100 | [diff] [blame] | 168 | * - the connection is closed (kernel < 2.6.27.13) |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 169 | * Since we don't know if pipe is full, we'll |
| 170 | * stop if the pipe is not empty. Anyway, we |
| 171 | * will almost always fill/empty the pipe. |
| 172 | */ |
| 173 | |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 174 | if (b->pipe->data) { |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 175 | si->flags |= SI_FL_WAIT_ROOM; |
| 176 | retval = 1; |
| 177 | break; |
| 178 | } |
| 179 | |
Willy Tarreau | 98b306b | 2009-01-25 11:11:32 +0100 | [diff] [blame] | 180 | /* We don't know if the connection was closed. |
| 181 | * But if we're called upon POLLIN with an empty |
| 182 | * pipe and get EAGAIN, it is suspect enought to |
| 183 | * try to fall back to the normal recv scheme |
| 184 | * which will be able to deal with the situation. |
| 185 | */ |
| 186 | retval = -1; |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 187 | break; |
| 188 | } |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 189 | /* here we have another error */ |
| 190 | si->flags |= SI_FL_ERR; |
| 191 | retval = 1; |
| 192 | break; |
| 193 | } /* ret <= 0 */ |
| 194 | |
| 195 | b->to_forward -= ret; |
| 196 | total += ret; |
| 197 | b->total += ret; |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 198 | b->pipe->data += ret; |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 199 | b->flags |= BF_READ_PARTIAL; |
| 200 | b->flags &= ~BF_EMPTY; /* to prevent shutdowns */ |
| 201 | |
Willy Tarreau | 6f4a82c | 2009-03-21 20:43:57 +0100 | [diff] [blame] | 202 | if (b->pipe->data >= SPLICE_FULL_HINT || |
| 203 | ret >= global.tune.recv_enough) { |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 204 | /* We've read enough of it for this time. */ |
| 205 | retval = 1; |
| 206 | break; |
| 207 | } |
| 208 | } /* while */ |
| 209 | |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 210 | if (unlikely(!b->pipe->data)) { |
| 211 | put_pipe(b->pipe); |
| 212 | b->pipe = NULL; |
| 213 | } |
| 214 | |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 215 | return retval; |
| 216 | } |
| 217 | |
Willy Tarreau | 6b4aad4 | 2009-01-18 21:59:13 +0100 | [diff] [blame] | 218 | #endif /* CONFIG_HAP_LINUX_SPLICE */ |
| 219 | |
| 220 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 221 | /* |
Willy Tarreau | d797128 | 2006-07-29 18:36:34 +0200 | [diff] [blame] | 222 | * this function is called on a read event from a stream socket. |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 223 | * It returns 0 if we have a high confidence that we will not be |
| 224 | * able to read more data without polling first. Returns non-zero |
| 225 | * otherwise. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 226 | */ |
Willy Tarreau | d797128 | 2006-07-29 18:36:34 +0200 | [diff] [blame] | 227 | int stream_sock_read(int fd) { |
Willy Tarreau | e5ed406 | 2008-08-30 03:17:31 +0200 | [diff] [blame] | 228 | struct stream_interface *si = fdtab[fd].owner; |
Willy Tarreau | 48adac5 | 2008-08-30 04:58:38 +0200 | [diff] [blame] | 229 | struct buffer *b = si->ib; |
Willy Tarreau | 8a7af60 | 2008-05-03 23:07:14 +0200 | [diff] [blame] | 230 | int ret, max, retval, cur_read; |
Willy Tarreau | b8949f1 | 2007-03-23 22:39:59 +0100 | [diff] [blame] | 231 | int read_poll = MAX_READ_POLL_LOOPS; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 232 | |
| 233 | #ifdef DEBUG_FULL |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 234 | fprintf(stderr,"stream_sock_read : fd=%d, ev=0x%02x, owner=%p\n", fd, fdtab[fd].ev, fdtab[fd].owner); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 235 | #endif |
| 236 | |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 237 | retval = 1; |
| 238 | |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 239 | /* stop immediately on errors */ |
| 240 | if (fdtab[fd].state == FD_STERROR || (fdtab[fd].ev & FD_POLL_ERR)) |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 241 | goto out_error; |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 242 | |
| 243 | /* stop here if we reached the end of data */ |
| 244 | if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP) |
| 245 | goto out_shutdown_r; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 246 | |
Willy Tarreau | d06e711 | 2009-03-29 10:18:41 +0200 | [diff] [blame] | 247 | /* maybe we were called immediately after an asynchronous shutr */ |
| 248 | if (b->flags & BF_SHUTR) |
| 249 | goto out_wakeup; |
| 250 | |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 251 | #if defined(CONFIG_HAP_LINUX_SPLICE) |
| 252 | if (b->to_forward && b->flags & BF_KERN_SPLICING) { |
Willy Tarreau | 98b306b | 2009-01-25 11:11:32 +0100 | [diff] [blame] | 253 | |
| 254 | /* Under Linux, if FD_POLL_HUP is set, we have reached the end. |
| 255 | * Since older splice() implementations were buggy and returned |
| 256 | * EAGAIN on end of read, let's bypass the call to splice() now. |
| 257 | */ |
| 258 | if (fdtab[fd].ev & FD_POLL_HUP) |
| 259 | goto out_shutdown_r; |
| 260 | |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 261 | retval = stream_sock_splice_in(b, si); |
| 262 | |
| 263 | if (retval >= 0) { |
| 264 | if (si->flags & SI_FL_ERR) |
| 265 | goto out_error; |
| 266 | if (b->flags & BF_READ_NULL) |
| 267 | goto out_shutdown_r; |
| 268 | goto out_wakeup; |
| 269 | } |
| 270 | /* splice not possible (anymore), let's go on on standard copy */ |
| 271 | } |
| 272 | #endif |
Willy Tarreau | 8a7af60 | 2008-05-03 23:07:14 +0200 | [diff] [blame] | 273 | cur_read = 0; |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 274 | while (1) { |
| 275 | /* |
| 276 | * 1. compute the maximum block size we can read at once. |
| 277 | */ |
Willy Tarreau | 03d60bb | 2009-01-09 11:13:00 +0100 | [diff] [blame] | 278 | if (b->l == 0) { |
| 279 | /* let's realign the buffer to optimize I/O */ |
| 280 | b->r = b->w = b->lr = b->data; |
| 281 | max = b->max_len; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 282 | } |
| 283 | else if (b->r > b->w) { |
Willy Tarreau | 03d60bb | 2009-01-09 11:13:00 +0100 | [diff] [blame] | 284 | max = b->data + b->max_len - b->r; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 285 | } |
| 286 | else { |
| 287 | max = b->w - b->r; |
Willy Tarreau | 03d60bb | 2009-01-09 11:13:00 +0100 | [diff] [blame] | 288 | if (max > b->max_len) |
| 289 | max = b->max_len; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 290 | } |
Willy Tarreau | 74ab2ac | 2008-11-23 17:23:07 +0100 | [diff] [blame] | 291 | |
Willy Tarreau | 9c0fe59 | 2009-01-18 16:25:31 +0100 | [diff] [blame] | 292 | if (max == 0) { |
| 293 | b->flags |= BF_FULL; |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 294 | si->flags |= SI_FL_WAIT_ROOM; |
Willy Tarreau | 9c0fe59 | 2009-01-18 16:25:31 +0100 | [diff] [blame] | 295 | break; |
| 296 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 297 | |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 298 | /* |
| 299 | * 2. read the largest possible block |
| 300 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 301 | #ifndef MSG_NOSIGNAL |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 302 | { |
| 303 | int skerr; |
| 304 | socklen_t lskerr = sizeof(skerr); |
| 305 | |
| 306 | ret = getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr); |
| 307 | if (ret == -1 || skerr) |
| 308 | ret = -1; |
| 309 | else |
| 310 | ret = recv(fd, b->r, max, 0); |
| 311 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 312 | #else |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 313 | ret = recv(fd, b->r, max, MSG_NOSIGNAL); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 314 | #endif |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 315 | if (ret > 0) { |
| 316 | b->r += ret; |
| 317 | b->l += ret; |
Willy Tarreau | 8a7af60 | 2008-05-03 23:07:14 +0200 | [diff] [blame] | 318 | cur_read += ret; |
Willy Tarreau | b38903c | 2008-11-23 21:33:29 +0100 | [diff] [blame] | 319 | |
Willy Tarreau | 0abebcc | 2009-01-08 00:09:41 +0100 | [diff] [blame] | 320 | /* if we're allowed to directly forward data, we must update send_max */ |
| 321 | if (b->to_forward > 0) { |
| 322 | int fwd = MIN(b->to_forward, ret); |
| 323 | b->send_max += fwd; |
| 324 | b->to_forward -= fwd; |
| 325 | } |
Willy Tarreau | f890dc9 | 2008-12-13 21:12:26 +0100 | [diff] [blame] | 326 | |
Willy Tarreau | b38903c | 2008-11-23 21:33:29 +0100 | [diff] [blame] | 327 | if (fdtab[fd].state == FD_STCONN) |
| 328 | fdtab[fd].state = FD_STREADY; |
| 329 | |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 330 | b->flags |= BF_READ_PARTIAL; |
Willy Tarreau | e393fe2 | 2008-08-16 22:18:07 +0200 | [diff] [blame] | 331 | b->flags &= ~BF_EMPTY; |
Willy Tarreau | 74ab2ac | 2008-11-23 17:23:07 +0100 | [diff] [blame] | 332 | |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 333 | if (b->r == b->data + BUFSIZE) { |
| 334 | b->r = b->data; /* wrap around the buffer */ |
| 335 | } |
Willy Tarreau | 9641e8f | 2007-03-23 23:02:09 +0100 | [diff] [blame] | 336 | |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 337 | b->total += ret; |
Willy Tarreau | 9641e8f | 2007-03-23 23:02:09 +0100 | [diff] [blame] | 338 | |
Willy Tarreau | 03d60bb | 2009-01-09 11:13:00 +0100 | [diff] [blame] | 339 | if (b->l >= b->max_len) { |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 340 | /* The buffer is now full, there's no point in going through |
| 341 | * the loop again. |
| 342 | */ |
Willy Tarreau | 8a7af60 | 2008-05-03 23:07:14 +0200 | [diff] [blame] | 343 | if (!(b->flags & BF_STREAMER_FAST) && (cur_read == b->l)) { |
| 344 | b->xfer_small = 0; |
| 345 | b->xfer_large++; |
| 346 | if (b->xfer_large >= 3) { |
| 347 | /* we call this buffer a fast streamer if it manages |
| 348 | * to be filled in one call 3 consecutive times. |
| 349 | */ |
| 350 | b->flags |= (BF_STREAMER | BF_STREAMER_FAST); |
| 351 | //fputc('+', stderr); |
| 352 | } |
| 353 | } |
| 354 | else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) && |
| 355 | (cur_read <= BUFSIZE / 2)) { |
| 356 | b->xfer_large = 0; |
| 357 | b->xfer_small++; |
| 358 | if (b->xfer_small >= 2) { |
| 359 | /* if the buffer has been at least half full twice, |
| 360 | * we receive faster than we send, so at least it |
| 361 | * is not a "fast streamer". |
| 362 | */ |
| 363 | b->flags &= ~BF_STREAMER_FAST; |
| 364 | //fputc('-', stderr); |
| 365 | } |
| 366 | } |
| 367 | else { |
| 368 | b->xfer_small = 0; |
| 369 | b->xfer_large = 0; |
| 370 | } |
Willy Tarreau | 9c0fe59 | 2009-01-18 16:25:31 +0100 | [diff] [blame] | 371 | |
| 372 | b->flags |= BF_FULL; |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 373 | si->flags |= SI_FL_WAIT_ROOM; |
Willy Tarreau | 9c0fe59 | 2009-01-18 16:25:31 +0100 | [diff] [blame] | 374 | break; |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 375 | } |
| 376 | |
Willy Tarreau | ab3e1d3 | 2007-06-03 14:10:36 +0200 | [diff] [blame] | 377 | /* if too many bytes were missing from last read, it means that |
| 378 | * it's pointless trying to read again because the system does |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 379 | * not have them in buffers. BTW, if FD_POLL_HUP was present, |
| 380 | * it means that we have reached the end and that the connection |
| 381 | * is closed. |
Willy Tarreau | ab3e1d3 | 2007-06-03 14:10:36 +0200 | [diff] [blame] | 382 | */ |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 383 | if (ret < max) { |
Willy Tarreau | 8a7af60 | 2008-05-03 23:07:14 +0200 | [diff] [blame] | 384 | if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) && |
| 385 | (cur_read <= BUFSIZE / 2)) { |
| 386 | b->xfer_large = 0; |
| 387 | b->xfer_small++; |
| 388 | if (b->xfer_small >= 3) { |
| 389 | /* we have read less than half of the buffer in |
| 390 | * one pass, and this happened at least 3 times. |
| 391 | * This is definitely not a streamer. |
| 392 | */ |
| 393 | b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST); |
| 394 | //fputc('!', stderr); |
| 395 | } |
| 396 | } |
Willy Tarreau | 2bea3a1 | 2008-08-28 09:47:43 +0200 | [diff] [blame] | 397 | /* unfortunately, on level-triggered events, POLL_HUP |
| 398 | * is generally delivered AFTER the system buffer is |
| 399 | * empty, so this one might never match. |
| 400 | */ |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 401 | if (fdtab[fd].ev & FD_POLL_HUP) |
| 402 | goto out_shutdown_r; |
Willy Tarreau | 2bea3a1 | 2008-08-28 09:47:43 +0200 | [diff] [blame] | 403 | |
| 404 | /* if a streamer has read few data, it may be because we |
| 405 | * have exhausted system buffers. It's not worth trying |
| 406 | * again. |
| 407 | */ |
| 408 | if (b->flags & BF_STREAMER) |
| 409 | break; |
Willy Tarreau | ab3e1d3 | 2007-06-03 14:10:36 +0200 | [diff] [blame] | 410 | |
Willy Tarreau | 6f4a82c | 2009-03-21 20:43:57 +0100 | [diff] [blame] | 411 | /* generally if we read something smaller than 1 or 2 MSS, |
| 412 | * it means that either we have exhausted the system's |
| 413 | * buffers (streamer or question-response protocol) or |
| 414 | * that the connection will be closed. Streamers are |
| 415 | * easily detected so we return early. For other cases, |
| 416 | * it's still better to perform a last read to be sure, |
| 417 | * because it may save one complete poll/read/wakeup cycle |
| 418 | * in case of shutdown. |
| 419 | */ |
| 420 | if (ret < MIN_RET_FOR_READ_LOOP && b->flags & BF_STREAMER) |
| 421 | break; |
| 422 | |
| 423 | /* if we read a large block smaller than what we requested, |
| 424 | * it's almost certain we'll never get anything more. |
| 425 | */ |
| 426 | if (ret >= global.tune.recv_enough) |
| 427 | break; |
| 428 | } |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 429 | |
Willy Tarreau | 1b194fe | 2009-03-21 21:10:04 +0100 | [diff] [blame] | 430 | if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 431 | break; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 432 | } |
| 433 | else if (ret == 0) { |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 434 | /* connection closed */ |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 435 | goto out_shutdown_r; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 436 | } |
Willy Tarreau | 9f19529 | 2007-04-15 21:26:58 +0200 | [diff] [blame] | 437 | else if (errno == EAGAIN) { |
| 438 | /* Ignore EAGAIN but inform the poller that there is |
Willy Tarreau | af78d0f | 2009-01-08 10:09:08 +0100 | [diff] [blame] | 439 | * nothing to read left if we did not read much, ie |
| 440 | * less than what we were still expecting to read. |
| 441 | * But we may have done some work justifying to notify |
| 442 | * the task. |
Willy Tarreau | 9f19529 | 2007-04-15 21:26:58 +0200 | [diff] [blame] | 443 | */ |
Willy Tarreau | af78d0f | 2009-01-08 10:09:08 +0100 | [diff] [blame] | 444 | if (cur_read < MIN_RET_FOR_READ_LOOP) |
| 445 | retval = 0; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 446 | break; |
| 447 | } |
| 448 | else { |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 449 | goto out_error; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 450 | } |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 451 | } /* while (1) */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 452 | |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 453 | out_wakeup: |
Willy Tarreau | 9c0fe59 | 2009-01-18 16:25:31 +0100 | [diff] [blame] | 454 | /* We might have some data the consumer is waiting for */ |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 455 | if ((b->send_max || b->pipe) && (b->cons->flags & SI_FL_WAIT_DATA)) { |
| 456 | int last_len = b->pipe ? b->pipe->data : 0; |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 457 | |
Willy Tarreau | 3ffeba1 | 2008-12-14 14:42:35 +0100 | [diff] [blame] | 458 | b->cons->chk_snd(b->cons); |
| 459 | |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 460 | /* check if the consumer has freed some space */ |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 461 | if (!(b->flags & BF_FULL) && |
| 462 | (!last_len || !b->pipe || b->pipe->data < last_len)) |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 463 | si->flags &= ~SI_FL_WAIT_ROOM; |
| 464 | } |
| 465 | |
| 466 | if (si->flags & SI_FL_WAIT_ROOM) { |
Willy Tarreau | 9c0fe59 | 2009-01-18 16:25:31 +0100 | [diff] [blame] | 467 | EV_FD_CLR(fd, DIR_RD); |
| 468 | b->rex = TICK_ETERNITY; |
| 469 | } |
Willy Tarreau | d06e711 | 2009-03-29 10:18:41 +0200 | [diff] [blame] | 470 | else if ((b->flags & (BF_SHUTR|BF_READ_PARTIAL|BF_FULL|BF_READ_NOEXP)) == BF_READ_PARTIAL) |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 471 | b->rex = tick_add_ifset(now_ms, b->rto); |
Willy Tarreau | 9c0fe59 | 2009-01-18 16:25:31 +0100 | [diff] [blame] | 472 | |
Willy Tarreau | 6b66f3e | 2008-12-14 17:31:54 +0100 | [diff] [blame] | 473 | /* we have to wake up if there is a special event or if we don't have |
| 474 | * any more data to forward. |
| 475 | */ |
Willy Tarreau | 1b194fe | 2009-03-21 21:10:04 +0100 | [diff] [blame] | 476 | if ((b->flags & (BF_READ_NULL|BF_READ_ERROR|BF_SHUTR|BF_READ_DONTWAIT)) || |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 477 | !b->to_forward || |
| 478 | si->state != SI_ST_EST || |
| 479 | b->cons->state != SI_ST_EST || |
| 480 | (si->flags & SI_FL_ERR)) |
Willy Tarreau | 6b66f3e | 2008-12-14 17:31:54 +0100 | [diff] [blame] | 481 | task_wakeup(si->owner, TASK_WOKEN_IO); |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 482 | |
Willy Tarreau | 1b194fe | 2009-03-21 21:10:04 +0100 | [diff] [blame] | 483 | b->flags &= ~BF_READ_DONTWAIT; |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 484 | fdtab[fd].ev &= ~FD_POLL_IN; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 485 | return retval; |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 486 | |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 487 | out_shutdown_r: |
Willy Tarreau | e5ed406 | 2008-08-30 03:17:31 +0200 | [diff] [blame] | 488 | /* we received a shutdown */ |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 489 | fdtab[fd].ev &= ~FD_POLL_HUP; |
| 490 | b->flags |= BF_READ_NULL; |
Willy Tarreau | 99126c3 | 2008-11-27 10:30:51 +0100 | [diff] [blame] | 491 | stream_sock_shutr(si); |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 492 | goto out_wakeup; |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 493 | |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 494 | out_error: |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 495 | /* Read error on the file descriptor. We mark the FD as STERROR so |
| 496 | * that we don't use it anymore. The error is reported to the stream |
| 497 | * interface which will take proper action. We must not perturbate the |
| 498 | * buffer because the stream interface wants to ensure transparent |
| 499 | * connection retries. |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 500 | */ |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 501 | |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 502 | fdtab[fd].state = FD_STERROR; |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 503 | fdtab[fd].ev &= ~FD_POLL_STICKY; |
Willy Tarreau | 1714e0f | 2009-03-28 20:54:53 +0100 | [diff] [blame] | 504 | EV_FD_REM(fd); |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 505 | si->flags |= SI_FL_ERR; |
Willy Tarreau | 9c0fe59 | 2009-01-18 16:25:31 +0100 | [diff] [blame] | 506 | retval = 1; |
| 507 | goto out_wakeup; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 508 | } |
| 509 | |
| 510 | |
| 511 | /* |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 512 | * This function is called to send buffer data to a stream socket. |
| 513 | * It returns -1 in case of unrecoverable error, 0 if the caller needs to poll |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 514 | * before calling it again, otherwise 1. If a pipe was associated with the |
| 515 | * buffer and it empties it, it releases it as well. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 516 | */ |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 517 | static int stream_sock_write_loop(struct stream_interface *si, struct buffer *b) |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 518 | { |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 519 | int write_poll = MAX_WRITE_POLL_LOOPS; |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 520 | int retval = 1; |
| 521 | int ret, max; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 522 | |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 523 | #if defined(CONFIG_HAP_LINUX_SPLICE) |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 524 | while (b->pipe) { |
| 525 | ret = splice(b->pipe->cons, NULL, si->fd, NULL, b->pipe->data, |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 526 | SPLICE_F_MOVE|SPLICE_F_NONBLOCK); |
| 527 | if (ret <= 0) { |
| 528 | if (ret == 0 || errno == EAGAIN) { |
| 529 | retval = 0; |
| 530 | return retval; |
| 531 | } |
| 532 | /* here we have another error */ |
| 533 | retval = -1; |
| 534 | return retval; |
| 535 | } |
| 536 | |
| 537 | b->flags |= BF_WRITE_PARTIAL; |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 538 | b->pipe->data -= ret; |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 539 | |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 540 | if (!b->pipe->data) { |
| 541 | put_pipe(b->pipe); |
| 542 | b->pipe = NULL; |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 543 | break; |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 544 | } |
Willy Tarreau | 5bd8c37 | 2009-01-19 00:32:22 +0100 | [diff] [blame] | 545 | |
| 546 | if (--write_poll <= 0) |
| 547 | return retval; |
| 548 | } |
| 549 | |
| 550 | /* At this point, the pipe is empty, but we may still have data pending |
| 551 | * in the normal buffer. |
| 552 | */ |
| 553 | if (!b->l) { |
| 554 | b->flags |= BF_EMPTY; |
| 555 | return retval; |
| 556 | } |
| 557 | #endif |
Willy Tarreau | d2def0f | 2009-01-18 17:37:33 +0100 | [diff] [blame] | 558 | if (!b->send_max) |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 559 | return retval; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 560 | |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 561 | /* when we're in this loop, we already know that there is no spliced |
| 562 | * data left, and that there are sendable buffered data. |
| 563 | */ |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 564 | while (1) { |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 565 | if (b->r > b->w) |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 566 | max = b->r - b->w; |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 567 | else |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 568 | max = b->data + BUFSIZE - b->w; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 569 | |
Willy Tarreau | f890dc9 | 2008-12-13 21:12:26 +0100 | [diff] [blame] | 570 | /* limit the amount of outgoing data if required */ |
| 571 | if (max > b->send_max) |
| 572 | max = b->send_max; |
| 573 | |
Willy Tarreau | fb14edc | 2009-06-14 15:24:37 +0200 | [diff] [blame] | 574 | |
| 575 | #ifdef TCP_CORK |
| 576 | /* |
| 577 | * Check if we want to cork output before sending. This typically occurs |
| 578 | * when there are data left in the buffer, or when we reached the end of |
| 579 | * buffer but we know we will close, so we try to merge the ongoing FIN |
| 580 | * with the last data segment. |
| 581 | */ |
| 582 | if ((fdtab[si->fd].flags & (FD_FL_TCP|FD_FL_TCP_CORK)) == FD_FL_TCP) { |
| 583 | if (unlikely((b->send_max == b->l && |
| 584 | (b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_WRITE_ENA|BF_SHUTR)) == |
| 585 | (BF_WRITE_ENA|BF_SHUTR)))) { |
| 586 | /* we have to unconditionally reset TCP_NODELAY for CORK */ |
| 587 | setsockopt(si->fd, IPPROTO_TCP, TCP_NODELAY, (char *) &zero, sizeof(zero)); |
| 588 | setsockopt(si->fd, SOL_TCP, TCP_CORK, (char *) &one, sizeof(one)); |
| 589 | fdtab[si->fd].flags = (fdtab[si->fd].flags & ~FD_FL_TCP_NODELAY) | FD_FL_TCP_CORK; |
| 590 | } |
| 591 | } |
| 592 | #endif |
| 593 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 594 | #ifndef MSG_NOSIGNAL |
| 595 | { |
| 596 | int skerr; |
| 597 | socklen_t lskerr = sizeof(skerr); |
| 598 | |
Willy Tarreau | 87bed62 | 2009-03-08 22:25:28 +0100 | [diff] [blame] | 599 | ret = getsockopt(si->fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr); |
Willy Tarreau | c642348 | 2006-10-15 14:59:03 +0200 | [diff] [blame] | 600 | if (ret == -1 || skerr) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 601 | ret = -1; |
| 602 | else |
Willy Tarreau | 87bed62 | 2009-03-08 22:25:28 +0100 | [diff] [blame] | 603 | ret = send(si->fd, b->w, max, MSG_DONTWAIT); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 604 | } |
| 605 | #else |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 606 | ret = send(si->fd, b->w, max, MSG_DONTWAIT | MSG_NOSIGNAL); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 607 | #endif |
| 608 | |
| 609 | if (ret > 0) { |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 610 | if (fdtab[si->fd].state == FD_STCONN) |
| 611 | fdtab[si->fd].state = FD_STREADY; |
Willy Tarreau | b38903c | 2008-11-23 21:33:29 +0100 | [diff] [blame] | 612 | |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 613 | b->flags |= BF_WRITE_PARTIAL; |
Willy Tarreau | e393fe2 | 2008-08-16 22:18:07 +0200 | [diff] [blame] | 614 | |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 615 | b->w += ret; |
| 616 | if (b->w == b->data + BUFSIZE) |
| 617 | b->w = b->data; /* wrap around the buffer */ |
| 618 | |
| 619 | b->l -= ret; |
| 620 | if (likely(b->l < b->max_len)) |
Willy Tarreau | e393fe2 | 2008-08-16 22:18:07 +0200 | [diff] [blame] | 621 | b->flags &= ~BF_FULL; |
Willy Tarreau | 74ab2ac | 2008-11-23 17:23:07 +0100 | [diff] [blame] | 622 | |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 623 | if (likely(!b->l)) { |
| 624 | /* optimize data alignment in the buffer */ |
| 625 | b->r = b->w = b->lr = b->data; |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 626 | if (likely(!b->pipe)) |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 627 | b->flags |= BF_EMPTY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 628 | } |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 629 | |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 630 | b->send_max -= ret; |
| 631 | if (!b->send_max || !b->l) |
| 632 | break; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 633 | |
Willy Tarreau | ab3e1d3 | 2007-06-03 14:10:36 +0200 | [diff] [blame] | 634 | /* if the system buffer is full, don't insist */ |
| 635 | if (ret < max) |
| 636 | break; |
| 637 | |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 638 | if (--write_poll <= 0) |
| 639 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 640 | } |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 641 | else if (ret == 0 || errno == EAGAIN) { |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 642 | /* nothing written, we need to poll for write first */ |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 643 | retval = 0; |
| 644 | break; |
| 645 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 646 | else { |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 647 | /* bad, we got an error */ |
| 648 | retval = -1; |
| 649 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 650 | } |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 651 | } /* while (1) */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 652 | |
Willy Tarreau | fb14edc | 2009-06-14 15:24:37 +0200 | [diff] [blame] | 653 | /* check if we need to uncork the output, for instance when the |
| 654 | * output buffer is empty but not shutr(). |
| 655 | */ |
| 656 | if (unlikely((fdtab[si->fd].flags & (FD_FL_TCP|FD_FL_TCP_NODELAY)) == FD_FL_TCP && (b->flags & BF_EMPTY))) { |
| 657 | if ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_WRITE_ENA|BF_SHUTR)) != (BF_WRITE_ENA|BF_SHUTR)) { |
| 658 | #ifdef TCP_CORK |
| 659 | if (fdtab[si->fd].flags & FD_FL_TCP_CORK) |
| 660 | setsockopt(si->fd, SOL_TCP, TCP_CORK, (char *) &zero, sizeof(zero)); |
| 661 | #endif |
| 662 | setsockopt(si->fd, IPPROTO_TCP, TCP_NODELAY, (char *) &one, sizeof(one)); |
| 663 | fdtab[si->fd].flags = (fdtab[si->fd].flags & ~FD_FL_TCP_CORK) | FD_FL_TCP_NODELAY; |
| 664 | } |
| 665 | } |
| 666 | |
| 667 | |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 668 | return retval; |
| 669 | } |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 670 | |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 671 | |
| 672 | /* |
| 673 | * This function is called on a write event from a stream socket. |
| 674 | * It returns 0 if the caller needs to poll before calling it again, otherwise |
| 675 | * non-zero. |
| 676 | */ |
| 677 | int stream_sock_write(int fd) |
| 678 | { |
| 679 | struct stream_interface *si = fdtab[fd].owner; |
| 680 | struct buffer *b = si->ob; |
| 681 | int retval = 1; |
| 682 | |
| 683 | #ifdef DEBUG_FULL |
| 684 | fprintf(stderr,"stream_sock_write : fd=%d, owner=%p\n", fd, fdtab[fd].owner); |
| 685 | #endif |
| 686 | |
| 687 | retval = 1; |
| 688 | if (fdtab[fd].state == FD_STERROR || (fdtab[fd].ev & FD_POLL_ERR)) |
| 689 | goto out_error; |
| 690 | |
Willy Tarreau | d06e711 | 2009-03-29 10:18:41 +0200 | [diff] [blame] | 691 | /* we might have been called just after an asynchronous shutw */ |
| 692 | if (b->flags & BF_SHUTW) |
| 693 | goto out_wakeup; |
| 694 | |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 695 | if (likely(!(b->flags & BF_EMPTY))) { |
| 696 | /* OK there are data waiting to be sent */ |
| 697 | retval = stream_sock_write_loop(si, b); |
| 698 | if (retval < 0) |
| 699 | goto out_error; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 700 | } |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 701 | else { |
| 702 | /* may be we have received a connection acknowledgement in TCP mode without data */ |
| 703 | if (likely(fdtab[fd].state == FD_STCONN)) { |
| 704 | /* We have no data to send to check the connection, and |
| 705 | * getsockopt() will not inform us whether the connection |
| 706 | * is still pending. So we'll reuse connect() to check the |
| 707 | * state of the socket. This has the advantage of givig us |
| 708 | * the following info : |
| 709 | * - error |
| 710 | * - connecting (EALREADY, EINPROGRESS) |
| 711 | * - connected (EISCONN, 0) |
| 712 | */ |
| 713 | if ((connect(fd, fdtab[fd].peeraddr, fdtab[fd].peerlen) == 0)) |
| 714 | errno = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 715 | |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 716 | if (errno == EALREADY || errno == EINPROGRESS) { |
| 717 | retval = 0; |
| 718 | goto out_may_wakeup; |
| 719 | } |
Willy Tarreau | 3ffeba1 | 2008-12-14 14:42:35 +0100 | [diff] [blame] | 720 | |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 721 | if (errno && errno != EISCONN) |
| 722 | goto out_error; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 723 | |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 724 | /* OK we just need to indicate that we got a connection |
| 725 | * and that we wrote nothing. |
| 726 | */ |
| 727 | b->flags |= BF_WRITE_NULL; |
| 728 | fdtab[fd].state = FD_STREADY; |
| 729 | } |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 730 | |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 731 | /* Funny, we were called to write something but there wasn't |
| 732 | * anything. We can get there, for example if we were woken up |
| 733 | * on a write event to finish the splice, but the send_max is 0 |
| 734 | * so we cannot write anything from the buffer. Let's disable |
| 735 | * the write event and pretend we never came there. |
| 736 | */ |
| 737 | } |
| 738 | |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 739 | if (!b->pipe && !b->send_max) { |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 740 | /* the connection is established but we can't write. Either the |
| 741 | * buffer is empty, or we just refrain from sending because the |
| 742 | * send_max limit was reached. Maybe we just wrote the last |
| 743 | * chunk and need to close. |
| 744 | */ |
| 745 | if (((b->flags & (BF_SHUTW|BF_EMPTY|BF_HIJACK|BF_WRITE_ENA|BF_SHUTR)) == |
| 746 | (BF_EMPTY|BF_WRITE_ENA|BF_SHUTR)) && |
| 747 | (si->state == SI_ST_EST)) { |
| 748 | stream_sock_shutw(si); |
| 749 | goto out_wakeup; |
| 750 | } |
| 751 | |
Willy Tarreau | d06e711 | 2009-03-29 10:18:41 +0200 | [diff] [blame] | 752 | if ((b->flags & (BF_EMPTY|BF_SHUTW)) == BF_EMPTY) |
Willy Tarreau | ac128fe | 2009-01-09 13:05:19 +0100 | [diff] [blame] | 753 | si->flags |= SI_FL_WAIT_DATA; |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 754 | |
Willy Tarreau | ac128fe | 2009-01-09 13:05:19 +0100 | [diff] [blame] | 755 | EV_FD_CLR(fd, DIR_WR); |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 756 | b->wex = TICK_ETERNITY; |
Willy Tarreau | ac128fe | 2009-01-09 13:05:19 +0100 | [diff] [blame] | 757 | } |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 758 | |
| 759 | out_may_wakeup: |
| 760 | if (b->flags & BF_WRITE_ACTIVITY) { |
| 761 | /* update timeout if we have written something */ |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 762 | if ((b->send_max || b->pipe) && |
Willy Tarreau | d2def0f | 2009-01-18 17:37:33 +0100 | [diff] [blame] | 763 | (b->flags & (BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL) |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 764 | b->wex = tick_add_ifset(now_ms, b->wto); |
| 765 | |
| 766 | out_wakeup: |
| 767 | if (tick_isset(si->ib->rex)) { |
| 768 | /* Note: to prevent the client from expiring read timeouts |
| 769 | * during writes, we refresh it. A better solution would be |
| 770 | * to merge read+write timeouts into a unique one, although |
| 771 | * that needs some study particularly on full-duplex TCP |
| 772 | * connections. |
| 773 | */ |
| 774 | si->ib->rex = tick_add_ifset(now_ms, si->ib->rto); |
| 775 | } |
| 776 | |
| 777 | /* the producer might be waiting for more room to store data */ |
Willy Tarreau | d06e711 | 2009-03-29 10:18:41 +0200 | [diff] [blame] | 778 | if (likely((b->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL)) == BF_WRITE_PARTIAL && |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 779 | (b->prod->flags & SI_FL_WAIT_ROOM))) |
| 780 | b->prod->chk_rcv(b->prod); |
| 781 | |
| 782 | /* we have to wake up if there is a special event or if we don't have |
| 783 | * any more data to forward and it's not planned to send any more. |
| 784 | */ |
| 785 | if (likely((b->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) || |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 786 | (!b->to_forward && !b->send_max && !b->pipe) || |
Willy Tarreau | 0c2fc1f | 2009-01-18 15:30:37 +0100 | [diff] [blame] | 787 | si->state != SI_ST_EST || |
| 788 | b->prod->state != SI_ST_EST)) |
| 789 | task_wakeup(si->owner, TASK_WOKEN_IO); |
| 790 | } |
| 791 | |
| 792 | fdtab[fd].ev &= ~FD_POLL_OUT; |
| 793 | return retval; |
Willy Tarreau | ac128fe | 2009-01-09 13:05:19 +0100 | [diff] [blame] | 794 | |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 795 | out_error: |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 796 | /* Write error on the file descriptor. We mark the FD as STERROR so |
| 797 | * that we don't use it anymore. The error is reported to the stream |
| 798 | * interface which will take proper action. We must not perturbate the |
| 799 | * buffer because the stream interface wants to ensure transparent |
| 800 | * connection retries. |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 801 | */ |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 802 | |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 803 | fdtab[fd].state = FD_STERROR; |
Willy Tarreau | d6f087e | 2008-01-18 17:20:13 +0100 | [diff] [blame] | 804 | fdtab[fd].ev &= ~FD_POLL_STICKY; |
Willy Tarreau | 1714e0f | 2009-03-28 20:54:53 +0100 | [diff] [blame] | 805 | EV_FD_REM(fd); |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 806 | si->flags |= SI_FL_ERR; |
Willy Tarreau | e5ed406 | 2008-08-30 03:17:31 +0200 | [diff] [blame] | 807 | task_wakeup(si->owner, TASK_WOKEN_IO); |
| 808 | return 1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 809 | } |
| 810 | |
Willy Tarreau | 48adac5 | 2008-08-30 04:58:38 +0200 | [diff] [blame] | 811 | /* |
Willy Tarreau | 3c6ab2e | 2008-09-04 11:19:41 +0200 | [diff] [blame] | 812 | * This function performs a shutdown-write on a stream interface in a connected or |
| 813 | * init state (it does nothing for other states). It either shuts the write side |
Willy Tarreau | 99126c3 | 2008-11-27 10:30:51 +0100 | [diff] [blame] | 814 | * or closes the file descriptor and marks itself as closed. The buffer flags are |
| 815 | * updated to reflect the new state. |
Willy Tarreau | 48adac5 | 2008-08-30 04:58:38 +0200 | [diff] [blame] | 816 | */ |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 817 | void stream_sock_shutw(struct stream_interface *si) |
Willy Tarreau | 48adac5 | 2008-08-30 04:58:38 +0200 | [diff] [blame] | 818 | { |
Willy Tarreau | 99126c3 | 2008-11-27 10:30:51 +0100 | [diff] [blame] | 819 | if (si->ob->flags & BF_SHUTW) |
| 820 | return; |
| 821 | si->ob->flags |= BF_SHUTW; |
| 822 | si->ob->wex = TICK_ETERNITY; |
Willy Tarreau | b0ef735 | 2008-12-14 13:26:20 +0100 | [diff] [blame] | 823 | si->flags &= ~SI_FL_WAIT_DATA; |
Willy Tarreau | 99126c3 | 2008-11-27 10:30:51 +0100 | [diff] [blame] | 824 | |
Willy Tarreau | b38903c | 2008-11-23 21:33:29 +0100 | [diff] [blame] | 825 | switch (si->state) { |
Willy Tarreau | b38903c | 2008-11-23 21:33:29 +0100 | [diff] [blame] | 826 | case SI_ST_EST: |
| 827 | if (!(si->ib->flags & BF_SHUTR)) { |
| 828 | EV_FD_CLR(si->fd, DIR_WR); |
| 829 | shutdown(si->fd, SHUT_WR); |
| 830 | return; |
| 831 | } |
| 832 | /* fall through */ |
| 833 | case SI_ST_CON: |
Willy Tarreau | 8bfa426 | 2008-11-27 09:25:45 +0100 | [diff] [blame] | 834 | /* we may have to close a pending connection, and mark the |
| 835 | * response buffer as shutr |
| 836 | */ |
Willy Tarreau | 48adac5 | 2008-08-30 04:58:38 +0200 | [diff] [blame] | 837 | fd_delete(si->fd); |
Willy Tarreau | fe3718a | 2008-11-30 18:14:12 +0100 | [diff] [blame] | 838 | /* fall through */ |
| 839 | case SI_ST_CER: |
Willy Tarreau | 7f00651 | 2008-12-07 14:04:04 +0100 | [diff] [blame] | 840 | si->state = SI_ST_DIS; |
| 841 | default: |
Willy Tarreau | d06e711 | 2009-03-29 10:18:41 +0200 | [diff] [blame] | 842 | si->flags &= ~SI_FL_WAIT_ROOM; |
Willy Tarreau | 99126c3 | 2008-11-27 10:30:51 +0100 | [diff] [blame] | 843 | si->ib->flags |= BF_SHUTR; |
Willy Tarreau | fe3718a | 2008-11-30 18:14:12 +0100 | [diff] [blame] | 844 | si->ib->rex = TICK_ETERNITY; |
Willy Tarreau | 127334e | 2009-03-28 10:47:26 +0100 | [diff] [blame] | 845 | si->exp = TICK_ETERNITY; |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 846 | return; |
Willy Tarreau | 48adac5 | 2008-08-30 04:58:38 +0200 | [diff] [blame] | 847 | } |
Willy Tarreau | 48adac5 | 2008-08-30 04:58:38 +0200 | [diff] [blame] | 848 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 849 | |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 850 | /* |
Willy Tarreau | 3c6ab2e | 2008-09-04 11:19:41 +0200 | [diff] [blame] | 851 | * This function performs a shutdown-read on a stream interface in a connected or |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 852 | * init state (it does nothing for other states). It either shuts the read side |
Willy Tarreau | 99126c3 | 2008-11-27 10:30:51 +0100 | [diff] [blame] | 853 | * or closes the file descriptor and marks itself as closed. The buffer flags are |
| 854 | * updated to reflect the new state. |
Willy Tarreau | 3c6ab2e | 2008-09-04 11:19:41 +0200 | [diff] [blame] | 855 | */ |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 856 | void stream_sock_shutr(struct stream_interface *si) |
Willy Tarreau | 3c6ab2e | 2008-09-04 11:19:41 +0200 | [diff] [blame] | 857 | { |
Willy Tarreau | 99126c3 | 2008-11-27 10:30:51 +0100 | [diff] [blame] | 858 | if (si->ib->flags & BF_SHUTR) |
| 859 | return; |
| 860 | si->ib->flags |= BF_SHUTR; |
| 861 | si->ib->rex = TICK_ETERNITY; |
Willy Tarreau | b0ef735 | 2008-12-14 13:26:20 +0100 | [diff] [blame] | 862 | si->flags &= ~SI_FL_WAIT_ROOM; |
Willy Tarreau | 99126c3 | 2008-11-27 10:30:51 +0100 | [diff] [blame] | 863 | |
Willy Tarreau | 8bfa426 | 2008-11-27 09:25:45 +0100 | [diff] [blame] | 864 | if (si->state != SI_ST_EST && si->state != SI_ST_CON) |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 865 | return; |
Willy Tarreau | 3c6ab2e | 2008-09-04 11:19:41 +0200 | [diff] [blame] | 866 | |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 867 | if (si->ob->flags & BF_SHUTW) { |
Willy Tarreau | 3c6ab2e | 2008-09-04 11:19:41 +0200 | [diff] [blame] | 868 | fd_delete(si->fd); |
Willy Tarreau | 74ab2ac | 2008-11-23 17:23:07 +0100 | [diff] [blame] | 869 | si->state = SI_ST_DIS; |
Willy Tarreau | 127334e | 2009-03-28 10:47:26 +0100 | [diff] [blame] | 870 | si->exp = TICK_ETERNITY; |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 871 | return; |
Willy Tarreau | 3c6ab2e | 2008-09-04 11:19:41 +0200 | [diff] [blame] | 872 | } |
| 873 | EV_FD_CLR(si->fd, DIR_RD); |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 874 | return; |
Willy Tarreau | 3c6ab2e | 2008-09-04 11:19:41 +0200 | [diff] [blame] | 875 | } |
| 876 | |
| 877 | /* |
Willy Tarreau | 3a16b2c | 2008-08-28 08:54:27 +0200 | [diff] [blame] | 878 | * Updates a connected stream_sock file descriptor status and timeouts |
| 879 | * according to the buffers' flags. It should only be called once after the |
| 880 | * buffer flags have settled down, and before they are cleared. It doesn't |
| 881 | * harm to call it as often as desired (it just slightly hurts performance). |
| 882 | */ |
Willy Tarreau | b025325 | 2008-11-30 21:37:12 +0100 | [diff] [blame] | 883 | void stream_sock_data_finish(struct stream_interface *si) |
Willy Tarreau | 3a16b2c | 2008-08-28 08:54:27 +0200 | [diff] [blame] | 884 | { |
Willy Tarreau | b025325 | 2008-11-30 21:37:12 +0100 | [diff] [blame] | 885 | struct buffer *ib = si->ib; |
| 886 | struct buffer *ob = si->ob; |
| 887 | int fd = si->fd; |
Willy Tarreau | 3a16b2c | 2008-08-28 08:54:27 +0200 | [diff] [blame] | 888 | |
Willy Tarreau | e5ed406 | 2008-08-30 03:17:31 +0200 | [diff] [blame] | 889 | DPRINTF(stderr,"[%u] %s: fd=%d owner=%p ib=%p, ob=%p, exp(r,w)=%u,%u ibf=%08x obf=%08x ibl=%d obl=%d si=%d\n", |
Willy Tarreau | 3a16b2c | 2008-08-28 08:54:27 +0200 | [diff] [blame] | 890 | now_ms, __FUNCTION__, |
| 891 | fd, fdtab[fd].owner, |
| 892 | ib, ob, |
| 893 | ib->rex, ob->wex, |
| 894 | ib->flags, ob->flags, |
Willy Tarreau | b025325 | 2008-11-30 21:37:12 +0100 | [diff] [blame] | 895 | ib->l, ob->l, si->state); |
Willy Tarreau | 3a16b2c | 2008-08-28 08:54:27 +0200 | [diff] [blame] | 896 | |
| 897 | /* Check if we need to close the read side */ |
| 898 | if (!(ib->flags & BF_SHUTR)) { |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 899 | /* Read not closed, update FD status and timeout for reads */ |
Willy Tarreau | 3a16b2c | 2008-08-28 08:54:27 +0200 | [diff] [blame] | 900 | if (ib->flags & (BF_FULL|BF_HIJACK)) { |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 901 | /* stop reading */ |
Willy Tarreau | b0ef735 | 2008-12-14 13:26:20 +0100 | [diff] [blame] | 902 | if ((ib->flags & (BF_FULL|BF_HIJACK)) == BF_FULL) |
| 903 | si->flags |= SI_FL_WAIT_ROOM; |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 904 | EV_FD_COND_C(fd, DIR_RD); |
| 905 | ib->rex = TICK_ETERNITY; |
| 906 | } |
| 907 | else { |
| 908 | /* (re)start reading and update timeout. Note: we don't recompute the timeout |
| 909 | * everytime we get here, otherwise it would risk never to expire. We only |
| 910 | * update it if is was not yet set, or if we already got some read status. |
| 911 | */ |
Willy Tarreau | b0ef735 | 2008-12-14 13:26:20 +0100 | [diff] [blame] | 912 | si->flags &= ~SI_FL_WAIT_ROOM; |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 913 | EV_FD_COND_S(fd, DIR_RD); |
Willy Tarreau | 86491c3 | 2008-12-14 09:04:47 +0100 | [diff] [blame] | 914 | if (!(ib->flags & BF_READ_NOEXP) && |
| 915 | (!tick_isset(ib->rex) || ib->flags & BF_READ_ACTIVITY)) |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 916 | ib->rex = tick_add_ifset(now_ms, ib->rto); |
| 917 | } |
| 918 | } |
| 919 | |
| 920 | /* Check if we need to close the write side */ |
| 921 | if (!(ob->flags & BF_SHUTW)) { |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 922 | /* Write not closed, update FD status and timeout for writes */ |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 923 | if ((ob->send_max == 0 && !ob->pipe) || |
Willy Tarreau | 3ffeba1 | 2008-12-14 14:42:35 +0100 | [diff] [blame] | 924 | (ob->flags & BF_EMPTY) || |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 925 | (ob->flags & (BF_HIJACK|BF_WRITE_ENA)) == 0) { |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 926 | /* stop writing */ |
Willy Tarreau | b0ef735 | 2008-12-14 13:26:20 +0100 | [diff] [blame] | 927 | if ((ob->flags & (BF_EMPTY|BF_HIJACK|BF_WRITE_ENA)) == (BF_EMPTY|BF_WRITE_ENA)) |
| 928 | si->flags |= SI_FL_WAIT_DATA; |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 929 | EV_FD_COND_C(fd, DIR_WR); |
| 930 | ob->wex = TICK_ETERNITY; |
| 931 | } |
| 932 | else { |
| 933 | /* (re)start writing and update timeout. Note: we don't recompute the timeout |
| 934 | * everytime we get here, otherwise it would risk never to expire. We only |
| 935 | * update it if is was not yet set, or if we already got some write status. |
| 936 | */ |
Willy Tarreau | b0ef735 | 2008-12-14 13:26:20 +0100 | [diff] [blame] | 937 | si->flags &= ~SI_FL_WAIT_DATA; |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 938 | EV_FD_COND_S(fd, DIR_WR); |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 939 | if (!tick_isset(ob->wex) || ob->flags & BF_WRITE_ACTIVITY) { |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 940 | ob->wex = tick_add_ifset(now_ms, ob->wto); |
Willy Tarreau | d06e711 | 2009-03-29 10:18:41 +0200 | [diff] [blame] | 941 | if (tick_isset(ib->rex)) { |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 942 | /* Note: depending on the protocol, we don't know if we're waiting |
| 943 | * for incoming data or not. So in order to prevent the socket from |
| 944 | * expiring read timeouts during writes, we refresh the read timeout, |
| 945 | * except if it was already infinite. |
| 946 | */ |
Willy Tarreau | d06e711 | 2009-03-29 10:18:41 +0200 | [diff] [blame] | 947 | ib->rex = tick_add_ifset(now_ms, ib->rto); |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 948 | } |
| 949 | } |
| 950 | } |
| 951 | } |
Willy Tarreau | 2d21279 | 2008-08-27 21:41:35 +0200 | [diff] [blame] | 952 | } |
| 953 | |
Willy Tarreau | 3ffeba1 | 2008-12-14 14:42:35 +0100 | [diff] [blame] | 954 | /* This function is used for inter-stream-interface calls. It is called by the |
| 955 | * consumer to inform the producer side that it may be interested in checking |
| 956 | * for free space in the buffer. Note that it intentionally does not update |
| 957 | * timeouts, so that we can still check them later at wake-up. |
| 958 | */ |
| 959 | void stream_sock_chk_rcv(struct stream_interface *si) |
| 960 | { |
| 961 | struct buffer *ib = si->ib; |
| 962 | |
| 963 | DPRINTF(stderr,"[%u] %s: fd=%d owner=%p ib=%p, ob=%p, exp(r,w)=%u,%u ibf=%08x obf=%08x ibl=%d obl=%d si=%d\n", |
| 964 | now_ms, __FUNCTION__, |
Vincenzo Farruggia | 9b97cff | 2009-01-30 16:49:10 +0000 | [diff] [blame] | 965 | si->fd, fdtab[si->fd].owner, |
| 966 | ib, si->ob, |
| 967 | ib->rex, si->ob->wex, |
| 968 | ib->flags, si->ob->flags, |
| 969 | ib->l, si->ob->l, si->state); |
Willy Tarreau | 3ffeba1 | 2008-12-14 14:42:35 +0100 | [diff] [blame] | 970 | |
| 971 | if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR))) |
| 972 | return; |
| 973 | |
| 974 | if (ib->flags & (BF_FULL|BF_HIJACK)) { |
| 975 | /* stop reading */ |
| 976 | if ((ib->flags & (BF_FULL|BF_HIJACK)) == BF_FULL) |
| 977 | si->flags |= SI_FL_WAIT_ROOM; |
| 978 | EV_FD_COND_C(si->fd, DIR_RD); |
| 979 | } |
| 980 | else { |
| 981 | /* (re)start reading */ |
| 982 | si->flags &= ~SI_FL_WAIT_ROOM; |
| 983 | EV_FD_COND_S(si->fd, DIR_RD); |
| 984 | } |
| 985 | } |
| 986 | |
| 987 | |
| 988 | /* This function is used for inter-stream-interface calls. It is called by the |
| 989 | * producer to inform the consumer side that it may be interested in checking |
| 990 | * for data in the buffer. Note that it intentionally does not update timeouts, |
| 991 | * so that we can still check them later at wake-up. |
| 992 | */ |
| 993 | void stream_sock_chk_snd(struct stream_interface *si) |
| 994 | { |
| 995 | struct buffer *ob = si->ob; |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 996 | int retval; |
Willy Tarreau | 3ffeba1 | 2008-12-14 14:42:35 +0100 | [diff] [blame] | 997 | |
| 998 | DPRINTF(stderr,"[%u] %s: fd=%d owner=%p ib=%p, ob=%p, exp(r,w)=%u,%u ibf=%08x obf=%08x ibl=%d obl=%d si=%d\n", |
| 999 | now_ms, __FUNCTION__, |
Vincenzo Farruggia | 9b97cff | 2009-01-30 16:49:10 +0000 | [diff] [blame] | 1000 | si->fd, fdtab[si->fd].owner, |
| 1001 | si->ib, ob, |
| 1002 | si->ib->rex, ob->wex, |
| 1003 | si->ib->flags, ob->flags, |
| 1004 | si->ib->l, ob->l, si->state); |
Willy Tarreau | 3ffeba1 | 2008-12-14 14:42:35 +0100 | [diff] [blame] | 1005 | |
| 1006 | if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW))) |
| 1007 | return; |
| 1008 | |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 1009 | if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */ |
| 1010 | (fdtab[si->fd].ev & FD_POLL_OUT) || /* we'll be called anyway */ |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 1011 | !(ob->send_max || ob->pipe) || /* called with nothing to send ! */ |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 1012 | !(ob->flags & (BF_HIJACK|BF_WRITE_ENA))) /* we may not write */ |
| 1013 | return; |
| 1014 | |
| 1015 | retval = stream_sock_write_loop(si, ob); |
| 1016 | if (retval < 0) { |
| 1017 | /* Write error on the file descriptor. We mark the FD as STERROR so |
| 1018 | * that we don't use it anymore and we notify the task. |
| 1019 | */ |
| 1020 | fdtab[si->fd].state = FD_STERROR; |
| 1021 | fdtab[si->fd].ev &= ~FD_POLL_STICKY; |
Willy Tarreau | 1714e0f | 2009-03-28 20:54:53 +0100 | [diff] [blame] | 1022 | EV_FD_REM(si->fd); |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 1023 | si->flags |= SI_FL_ERR; |
| 1024 | goto out_wakeup; |
| 1025 | } |
| 1026 | |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 1027 | if (retval > 0 || (ob->send_max == 0 && !ob->pipe)) { |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 1028 | /* the connection is established but we can't write. Either the |
| 1029 | * buffer is empty, or we just refrain from sending because the |
| 1030 | * send_max limit was reached. Maybe we just wrote the last |
| 1031 | * chunk and need to close. |
| 1032 | */ |
| 1033 | if (((ob->flags & (BF_SHUTW|BF_EMPTY|BF_HIJACK|BF_WRITE_ENA|BF_SHUTR)) == |
| 1034 | (BF_EMPTY|BF_WRITE_ENA|BF_SHUTR)) && |
| 1035 | (si->state == SI_ST_EST)) { |
| 1036 | stream_sock_shutw(si); |
| 1037 | goto out_wakeup; |
| 1038 | } |
Willy Tarreau | d06e711 | 2009-03-29 10:18:41 +0200 | [diff] [blame] | 1039 | |
| 1040 | if ((ob->flags & (BF_SHUTW|BF_EMPTY|BF_HIJACK|BF_WRITE_ENA)) == (BF_EMPTY|BF_WRITE_ENA)) |
Willy Tarreau | 3ffeba1 | 2008-12-14 14:42:35 +0100 | [diff] [blame] | 1041 | si->flags |= SI_FL_WAIT_DATA; |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 1042 | ob->wex = TICK_ETERNITY; |
Willy Tarreau | 3ffeba1 | 2008-12-14 14:42:35 +0100 | [diff] [blame] | 1043 | } |
| 1044 | else { |
| 1045 | /* (re)start writing. */ |
| 1046 | si->flags &= ~SI_FL_WAIT_DATA; |
| 1047 | EV_FD_COND_S(si->fd, DIR_WR); |
| 1048 | } |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 1049 | |
Willy Tarreau | c961946 | 2009-03-09 22:40:57 +0100 | [diff] [blame] | 1050 | if (likely(ob->flags & BF_WRITE_ACTIVITY)) { |
| 1051 | /* update timeout if we have written something */ |
| 1052 | if ((ob->send_max || ob->pipe) && |
| 1053 | (ob->flags & (BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL) |
| 1054 | ob->wex = tick_add_ifset(now_ms, ob->wto); |
| 1055 | |
| 1056 | if (tick_isset(si->ib->rex)) { |
| 1057 | /* Note: to prevent the client from expiring read timeouts |
| 1058 | * during writes, we refresh it. A better solution would be |
| 1059 | * to merge read+write timeouts into a unique one, although |
| 1060 | * that needs some study particularly on full-duplex TCP |
| 1061 | * connections. |
| 1062 | */ |
| 1063 | si->ib->rex = tick_add_ifset(now_ms, si->ib->rto); |
| 1064 | } |
| 1065 | } |
| 1066 | |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 1067 | /* in case of special condition (error, shutdown, end of write...), we |
| 1068 | * have to notify the task. |
| 1069 | */ |
| 1070 | if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) || |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 1071 | (!ob->to_forward && !ob->send_max && !ob->pipe) || |
Willy Tarreau | a456f2a | 2009-01-18 17:38:44 +0100 | [diff] [blame] | 1072 | si->state != SI_ST_EST)) { |
| 1073 | out_wakeup: |
| 1074 | task_wakeup(si->owner, TASK_WOKEN_IO); |
| 1075 | } |
Willy Tarreau | 3ffeba1 | 2008-12-14 14:42:35 +0100 | [diff] [blame] | 1076 | } |
| 1077 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1078 | |
| 1079 | /* |
| 1080 | * Local variables: |
| 1081 | * c-indent-level: 8 |
| 1082 | * c-basic-offset: 8 |
| 1083 | * End: |
| 1084 | */ |