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