blob: 438ff0a5e82a9ca6ce5a1e22b8f80504af5356e6 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Functions operating on SOCK_STREAM and buffers.
3 *
Willy Tarreau3eba98a2009-01-25 13:56:13 +01004 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
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 Tarreau6b4aad42009-01-18 21:59:13 +010013#define _GNU_SOURCE
Willy Tarreaubaaee002006-06-26 02:48:02 +020014#include <errno.h>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18
Willy Tarreaufb14edc2009-06-14 15:24:37 +020019#include <netinet/tcp.h>
20
Willy Tarreaubaaee002006-06-26 02:48:02 +020021#include <sys/socket.h>
22#include <sys/stat.h>
23#include <sys/types.h>
24
Willy Tarreau2dd0d472006-06-29 17:53:05 +020025#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020026#include <common/config.h>
Willy Tarreaud6f087e2008-01-18 17:20:13 +010027#include <common/debug.h>
Willy Tarreau83749182007-04-15 20:56:27 +020028#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020029#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
Willy Tarreau2d212792008-08-27 21:41:35 +020032#include <proto/buffers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020033#include <proto/client.h>
34#include <proto/fd.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010035#include <proto/pipe.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <proto/stream_sock.h>
37#include <proto/task.h>
38
Willy Tarreau5bd8c372009-01-19 00:32:22 +010039#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040
Willy Tarreau6b4aad42009-01-18 21:59:13 +010041/* 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 Tarreau5bd8c372009-01-19 00:32:22 +010081
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 Tarreau3eba98a2009-01-25 13:56:13 +0100101 *
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 Tarreau5bd8c372009-01-19 00:32:22 +0100104 */
105static 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 Tarreau3eba98a2009-01-25 13:56:13 +0100130 if (unlikely(b->pipe == NULL)) {
131 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100132 b->flags &= ~BF_KERN_SPLICING;
133 return -1;
134 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100135 }
136
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100137 /* At this point, b->pipe is valid */
138
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100139 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 Tarreau3eba98a2009-01-25 13:56:13 +0100151 ret = splice(fd, NULL, b->pipe->prod, NULL, max,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100152 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
153
154 if (ret <= 0) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100155 if (ret == 0) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100156 /* connection closed. This is only detected by
157 * recent kernels (>= 2.6.27.13).
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100158 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100159 b->flags |= BF_READ_NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100160 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 Tarreau98b306b2009-01-25 11:11:32 +0100168 * - the connection is closed (kernel < 2.6.27.13)
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100169 * 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 Tarreau3eba98a2009-01-25 13:56:13 +0100174 if (b->pipe->data) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100175 si->flags |= SI_FL_WAIT_ROOM;
176 retval = 1;
177 break;
178 }
179
Willy Tarreau98b306b2009-01-25 11:11:32 +0100180 /* 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 Tarreau5bd8c372009-01-19 00:32:22 +0100187 break;
188 }
Willy Tarreaudc340a92009-06-28 23:10:19 +0200189
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 Tarreau5bd8c372009-01-19 00:32:22 +0100199 /* 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 Tarreau3eba98a2009-01-25 13:56:13 +0100208 b->pipe->data += ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100209 b->flags |= BF_READ_PARTIAL;
210 b->flags &= ~BF_EMPTY; /* to prevent shutdowns */
211
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100212 if (b->pipe->data >= SPLICE_FULL_HINT ||
213 ret >= global.tune.recv_enough) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100214 /* We've read enough of it for this time. */
215 retval = 1;
216 break;
217 }
218 } /* while */
219
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100220 if (unlikely(!b->pipe->data)) {
221 put_pipe(b->pipe);
222 b->pipe = NULL;
223 }
224
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100225 return retval;
226}
227
Willy Tarreau6b4aad42009-01-18 21:59:13 +0100228#endif /* CONFIG_HAP_LINUX_SPLICE */
229
230
Willy Tarreaubaaee002006-06-26 02:48:02 +0200231/*
Willy Tarreaud7971282006-07-29 18:36:34 +0200232 * this function is called on a read event from a stream socket.
Willy Tarreau83749182007-04-15 20:56:27 +0200233 * 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 Tarreaubaaee002006-06-26 02:48:02 +0200236 */
Willy Tarreaud7971282006-07-29 18:36:34 +0200237int stream_sock_read(int fd) {
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200238 struct stream_interface *si = fdtab[fd].owner;
Willy Tarreau48adac52008-08-30 04:58:38 +0200239 struct buffer *b = si->ib;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200240 int ret, max, retval, cur_read;
Willy Tarreaub8949f12007-03-23 22:39:59 +0100241 int read_poll = MAX_READ_POLL_LOOPS;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200242
243#ifdef DEBUG_FULL
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100244 fprintf(stderr,"stream_sock_read : fd=%d, ev=0x%02x, owner=%p\n", fd, fdtab[fd].ev, fdtab[fd].owner);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200245#endif
246
Willy Tarreau83749182007-04-15 20:56:27 +0200247 retval = 1;
248
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100249 /* stop immediately on errors */
250 if (fdtab[fd].state == FD_STERROR || (fdtab[fd].ev & FD_POLL_ERR))
Willy Tarreau6996e152007-04-30 14:37:43 +0200251 goto out_error;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100252
253 /* stop here if we reached the end of data */
254 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
255 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200256
Willy Tarreaud06e7112009-03-29 10:18:41 +0200257 /* maybe we were called immediately after an asynchronous shutr */
258 if (b->flags & BF_SHUTR)
259 goto out_wakeup;
260
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100261#if defined(CONFIG_HAP_LINUX_SPLICE)
262 if (b->to_forward && b->flags & BF_KERN_SPLICING) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100263
264 /* Under Linux, if FD_POLL_HUP is set, we have reached the end.
265 * Since older splice() implementations were buggy and returned
266 * EAGAIN on end of read, let's bypass the call to splice() now.
267 */
268 if (fdtab[fd].ev & FD_POLL_HUP)
269 goto out_shutdown_r;
270
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100271 retval = stream_sock_splice_in(b, si);
272
273 if (retval >= 0) {
274 if (si->flags & SI_FL_ERR)
275 goto out_error;
276 if (b->flags & BF_READ_NULL)
277 goto out_shutdown_r;
278 goto out_wakeup;
279 }
280 /* splice not possible (anymore), let's go on on standard copy */
281 }
282#endif
Willy Tarreau8a7af602008-05-03 23:07:14 +0200283 cur_read = 0;
Willy Tarreau6996e152007-04-30 14:37:43 +0200284 while (1) {
285 /*
286 * 1. compute the maximum block size we can read at once.
287 */
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100288 if (b->l == 0) {
289 /* let's realign the buffer to optimize I/O */
290 b->r = b->w = b->lr = b->data;
291 max = b->max_len;
Willy Tarreau83749182007-04-15 20:56:27 +0200292 }
293 else if (b->r > b->w) {
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100294 max = b->data + b->max_len - b->r;
Willy Tarreau83749182007-04-15 20:56:27 +0200295 }
296 else {
297 max = b->w - b->r;
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100298 if (max > b->max_len)
299 max = b->max_len;
Willy Tarreau83749182007-04-15 20:56:27 +0200300 }
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100301
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100302 if (max == 0) {
303 b->flags |= BF_FULL;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100304 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100305 break;
306 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200307
Willy Tarreau6996e152007-04-30 14:37:43 +0200308 /*
309 * 2. read the largest possible block
310 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200311#ifndef MSG_NOSIGNAL
Willy Tarreau83749182007-04-15 20:56:27 +0200312 {
313 int skerr;
314 socklen_t lskerr = sizeof(skerr);
315
316 ret = getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
317 if (ret == -1 || skerr)
318 ret = -1;
319 else
320 ret = recv(fd, b->r, max, 0);
321 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200322#else
Willy Tarreau83749182007-04-15 20:56:27 +0200323 ret = recv(fd, b->r, max, MSG_NOSIGNAL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200324#endif
Willy Tarreau83749182007-04-15 20:56:27 +0200325 if (ret > 0) {
326 b->r += ret;
327 b->l += ret;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200328 cur_read += ret;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100329
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100330 /* if we're allowed to directly forward data, we must update send_max */
331 if (b->to_forward > 0) {
332 int fwd = MIN(b->to_forward, ret);
333 b->send_max += fwd;
334 b->to_forward -= fwd;
335 }
Willy Tarreauf890dc92008-12-13 21:12:26 +0100336
Willy Tarreaub38903c2008-11-23 21:33:29 +0100337 if (fdtab[fd].state == FD_STCONN)
338 fdtab[fd].state = FD_STREADY;
339
Willy Tarreau3da77c52008-08-29 09:58:42 +0200340 b->flags |= BF_READ_PARTIAL;
Willy Tarreaue393fe22008-08-16 22:18:07 +0200341 b->flags &= ~BF_EMPTY;
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100342
Willy Tarreau83749182007-04-15 20:56:27 +0200343 if (b->r == b->data + BUFSIZE) {
344 b->r = b->data; /* wrap around the buffer */
345 }
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100346
Willy Tarreau83749182007-04-15 20:56:27 +0200347 b->total += ret;
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100348
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100349 if (b->l >= b->max_len) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200350 /* The buffer is now full, there's no point in going through
351 * the loop again.
352 */
Willy Tarreau8a7af602008-05-03 23:07:14 +0200353 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == b->l)) {
354 b->xfer_small = 0;
355 b->xfer_large++;
356 if (b->xfer_large >= 3) {
357 /* we call this buffer a fast streamer if it manages
358 * to be filled in one call 3 consecutive times.
359 */
360 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
361 //fputc('+', stderr);
362 }
363 }
364 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
365 (cur_read <= BUFSIZE / 2)) {
366 b->xfer_large = 0;
367 b->xfer_small++;
368 if (b->xfer_small >= 2) {
369 /* if the buffer has been at least half full twice,
370 * we receive faster than we send, so at least it
371 * is not a "fast streamer".
372 */
373 b->flags &= ~BF_STREAMER_FAST;
374 //fputc('-', stderr);
375 }
376 }
377 else {
378 b->xfer_small = 0;
379 b->xfer_large = 0;
380 }
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100381
382 b->flags |= BF_FULL;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100383 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100384 break;
Willy Tarreau6996e152007-04-30 14:37:43 +0200385 }
386
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200387 /* if too many bytes were missing from last read, it means that
388 * it's pointless trying to read again because the system does
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100389 * not have them in buffers. BTW, if FD_POLL_HUP was present,
390 * it means that we have reached the end and that the connection
391 * is closed.
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200392 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100393 if (ret < max) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200394 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
395 (cur_read <= BUFSIZE / 2)) {
396 b->xfer_large = 0;
397 b->xfer_small++;
398 if (b->xfer_small >= 3) {
399 /* we have read less than half of the buffer in
400 * one pass, and this happened at least 3 times.
401 * This is definitely not a streamer.
402 */
403 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
404 //fputc('!', stderr);
405 }
406 }
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200407 /* unfortunately, on level-triggered events, POLL_HUP
408 * is generally delivered AFTER the system buffer is
409 * empty, so this one might never match.
410 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100411 if (fdtab[fd].ev & FD_POLL_HUP)
412 goto out_shutdown_r;
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200413
414 /* if a streamer has read few data, it may be because we
415 * have exhausted system buffers. It's not worth trying
416 * again.
417 */
418 if (b->flags & BF_STREAMER)
419 break;
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200420
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100421 /* generally if we read something smaller than 1 or 2 MSS,
422 * it means that either we have exhausted the system's
423 * buffers (streamer or question-response protocol) or
424 * that the connection will be closed. Streamers are
425 * easily detected so we return early. For other cases,
426 * it's still better to perform a last read to be sure,
427 * because it may save one complete poll/read/wakeup cycle
428 * in case of shutdown.
429 */
430 if (ret < MIN_RET_FOR_READ_LOOP && b->flags & BF_STREAMER)
431 break;
432
433 /* if we read a large block smaller than what we requested,
434 * it's almost certain we'll never get anything more.
435 */
436 if (ret >= global.tune.recv_enough)
437 break;
438 }
Willy Tarreau83749182007-04-15 20:56:27 +0200439
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100440 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200441 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200442 }
443 else if (ret == 0) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200444 /* connection closed */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100445 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200446 }
Willy Tarreau9f195292007-04-15 21:26:58 +0200447 else if (errno == EAGAIN) {
448 /* Ignore EAGAIN but inform the poller that there is
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100449 * nothing to read left if we did not read much, ie
450 * less than what we were still expecting to read.
451 * But we may have done some work justifying to notify
452 * the task.
Willy Tarreau9f195292007-04-15 21:26:58 +0200453 */
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100454 if (cur_read < MIN_RET_FOR_READ_LOOP)
455 retval = 0;
Willy Tarreau83749182007-04-15 20:56:27 +0200456 break;
457 }
458 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200459 goto out_error;
Willy Tarreau83749182007-04-15 20:56:27 +0200460 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200461 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200462
Willy Tarreau6996e152007-04-30 14:37:43 +0200463 out_wakeup:
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100464 /* We might have some data the consumer is waiting for */
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100465 if ((b->send_max || b->pipe) && (b->cons->flags & SI_FL_WAIT_DATA)) {
466 int last_len = b->pipe ? b->pipe->data : 0;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100467
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100468 b->cons->chk_snd(b->cons);
469
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100470 /* check if the consumer has freed some space */
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100471 if (!(b->flags & BF_FULL) &&
472 (!last_len || !b->pipe || b->pipe->data < last_len))
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100473 si->flags &= ~SI_FL_WAIT_ROOM;
474 }
475
476 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100477 EV_FD_CLR(fd, DIR_RD);
478 b->rex = TICK_ETERNITY;
479 }
Willy Tarreaud06e7112009-03-29 10:18:41 +0200480 else if ((b->flags & (BF_SHUTR|BF_READ_PARTIAL|BF_FULL|BF_READ_NOEXP)) == BF_READ_PARTIAL)
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100481 b->rex = tick_add_ifset(now_ms, b->rto);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100482
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100483 /* we have to wake up if there is a special event or if we don't have
484 * any more data to forward.
485 */
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100486 if ((b->flags & (BF_READ_NULL|BF_READ_ERROR|BF_SHUTR|BF_READ_DONTWAIT)) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100487 !b->to_forward ||
488 si->state != SI_ST_EST ||
489 b->cons->state != SI_ST_EST ||
490 (si->flags & SI_FL_ERR))
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100491 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100492
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100493 b->flags &= ~BF_READ_DONTWAIT;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100494 fdtab[fd].ev &= ~FD_POLL_IN;
Willy Tarreau83749182007-04-15 20:56:27 +0200495 return retval;
Willy Tarreau6996e152007-04-30 14:37:43 +0200496
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100497 out_shutdown_r:
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200498 /* we received a shutdown */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100499 fdtab[fd].ev &= ~FD_POLL_HUP;
500 b->flags |= BF_READ_NULL;
Willy Tarreau99126c32008-11-27 10:30:51 +0100501 stream_sock_shutr(si);
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200502 goto out_wakeup;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100503
Willy Tarreau6996e152007-04-30 14:37:43 +0200504 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100505 /* Read error on the file descriptor. We mark the FD as STERROR so
506 * that we don't use it anymore. The error is reported to the stream
507 * interface which will take proper action. We must not perturbate the
508 * buffer because the stream interface wants to ensure transparent
509 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200510 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100511
Willy Tarreau6996e152007-04-30 14:37:43 +0200512 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100513 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100514 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100515 si->flags |= SI_FL_ERR;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100516 retval = 1;
517 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200518}
519
520
521/*
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100522 * This function is called to send buffer data to a stream socket.
523 * It returns -1 in case of unrecoverable error, 0 if the caller needs to poll
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100524 * before calling it again, otherwise 1. If a pipe was associated with the
525 * buffer and it empties it, it releases it as well.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200526 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100527static int stream_sock_write_loop(struct stream_interface *si, struct buffer *b)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100528{
Willy Tarreau83749182007-04-15 20:56:27 +0200529 int write_poll = MAX_WRITE_POLL_LOOPS;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100530 int retval = 1;
531 int ret, max;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200532
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100533#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100534 while (b->pipe) {
535 ret = splice(b->pipe->cons, NULL, si->fd, NULL, b->pipe->data,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100536 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
537 if (ret <= 0) {
538 if (ret == 0 || errno == EAGAIN) {
539 retval = 0;
540 return retval;
541 }
542 /* here we have another error */
543 retval = -1;
544 return retval;
545 }
546
547 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100548 b->pipe->data -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100549
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100550 if (!b->pipe->data) {
551 put_pipe(b->pipe);
552 b->pipe = NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100553 break;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100554 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100555
556 if (--write_poll <= 0)
557 return retval;
558 }
559
560 /* At this point, the pipe is empty, but we may still have data pending
561 * in the normal buffer.
562 */
563 if (!b->l) {
564 b->flags |= BF_EMPTY;
565 return retval;
566 }
567#endif
Willy Tarreaud2def0f2009-01-18 17:37:33 +0100568 if (!b->send_max)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100569 return retval;
Willy Tarreau83749182007-04-15 20:56:27 +0200570
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100571 /* when we're in this loop, we already know that there is no spliced
572 * data left, and that there are sendable buffered data.
573 */
Willy Tarreau6996e152007-04-30 14:37:43 +0200574 while (1) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100575 if (b->r > b->w)
Willy Tarreau83749182007-04-15 20:56:27 +0200576 max = b->r - b->w;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100577 else
Willy Tarreau83749182007-04-15 20:56:27 +0200578 max = b->data + BUFSIZE - b->w;
Willy Tarreau83749182007-04-15 20:56:27 +0200579
Willy Tarreauf890dc92008-12-13 21:12:26 +0100580 /* limit the amount of outgoing data if required */
581 if (max > b->send_max)
582 max = b->send_max;
583
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200584
585#ifdef TCP_CORK
586 /*
587 * Check if we want to cork output before sending. This typically occurs
588 * when there are data left in the buffer, or when we reached the end of
589 * buffer but we know we will close, so we try to merge the ongoing FIN
590 * with the last data segment.
591 */
Willy Tarreau5d707e12009-06-28 11:09:07 +0200592 if ((fdtab[si->fd].flags & (FD_FL_TCP|FD_FL_TCP_NOLING|FD_FL_TCP_CORK)) == FD_FL_TCP) {
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200593 if (unlikely((b->send_max == b->l &&
594 (b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_WRITE_ENA|BF_SHUTR)) ==
595 (BF_WRITE_ENA|BF_SHUTR)))) {
596 /* we have to unconditionally reset TCP_NODELAY for CORK */
597 setsockopt(si->fd, IPPROTO_TCP, TCP_NODELAY, (char *) &zero, sizeof(zero));
598 setsockopt(si->fd, SOL_TCP, TCP_CORK, (char *) &one, sizeof(one));
599 fdtab[si->fd].flags = (fdtab[si->fd].flags & ~FD_FL_TCP_NODELAY) | FD_FL_TCP_CORK;
600 }
601 }
602#endif
603
Willy Tarreaubaaee002006-06-26 02:48:02 +0200604#ifndef MSG_NOSIGNAL
605 {
606 int skerr;
607 socklen_t lskerr = sizeof(skerr);
608
Willy Tarreau87bed622009-03-08 22:25:28 +0100609 ret = getsockopt(si->fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
Willy Tarreauc6423482006-10-15 14:59:03 +0200610 if (ret == -1 || skerr)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200611 ret = -1;
612 else
Willy Tarreau87bed622009-03-08 22:25:28 +0100613 ret = send(si->fd, b->w, max, MSG_DONTWAIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200614 }
615#else
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100616 ret = send(si->fd, b->w, max, MSG_DONTWAIT | MSG_NOSIGNAL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200617#endif
618
619 if (ret > 0) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100620 if (fdtab[si->fd].state == FD_STCONN)
621 fdtab[si->fd].state = FD_STREADY;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100622
Willy Tarreau3da77c52008-08-29 09:58:42 +0200623 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreaue393fe22008-08-16 22:18:07 +0200624
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100625 b->w += ret;
626 if (b->w == b->data + BUFSIZE)
627 b->w = b->data; /* wrap around the buffer */
628
629 b->l -= ret;
630 if (likely(b->l < b->max_len))
Willy Tarreaue393fe22008-08-16 22:18:07 +0200631 b->flags &= ~BF_FULL;
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100632
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100633 if (likely(!b->l)) {
634 /* optimize data alignment in the buffer */
635 b->r = b->w = b->lr = b->data;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100636 if (likely(!b->pipe))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100637 b->flags |= BF_EMPTY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200638 }
Willy Tarreau83749182007-04-15 20:56:27 +0200639
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100640 b->send_max -= ret;
641 if (!b->send_max || !b->l)
642 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200643
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200644 /* if the system buffer is full, don't insist */
645 if (ret < max)
646 break;
647
Willy Tarreau6996e152007-04-30 14:37:43 +0200648 if (--write_poll <= 0)
649 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200650 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200651 else if (ret == 0 || errno == EAGAIN) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100652 /* nothing written, we need to poll for write first */
Willy Tarreau83749182007-04-15 20:56:27 +0200653 retval = 0;
654 break;
655 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200656 else {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100657 /* bad, we got an error */
658 retval = -1;
659 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200660 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200661 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200662
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200663 /* check if we need to uncork the output, for instance when the
664 * output buffer is empty but not shutr().
665 */
666 if (unlikely((fdtab[si->fd].flags & (FD_FL_TCP|FD_FL_TCP_NODELAY)) == FD_FL_TCP && (b->flags & BF_EMPTY))) {
667 if ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK|BF_WRITE_ENA|BF_SHUTR)) != (BF_WRITE_ENA|BF_SHUTR)) {
668#ifdef TCP_CORK
669 if (fdtab[si->fd].flags & FD_FL_TCP_CORK)
670 setsockopt(si->fd, SOL_TCP, TCP_CORK, (char *) &zero, sizeof(zero));
671#endif
672 setsockopt(si->fd, IPPROTO_TCP, TCP_NODELAY, (char *) &one, sizeof(one));
673 fdtab[si->fd].flags = (fdtab[si->fd].flags & ~FD_FL_TCP_CORK) | FD_FL_TCP_NODELAY;
674 }
675 }
676
677
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100678 return retval;
679}
Willy Tarreau6996e152007-04-30 14:37:43 +0200680
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100681
682/*
683 * This function is called on a write event from a stream socket.
684 * It returns 0 if the caller needs to poll before calling it again, otherwise
685 * non-zero.
686 */
687int stream_sock_write(int fd)
688{
689 struct stream_interface *si = fdtab[fd].owner;
690 struct buffer *b = si->ob;
691 int retval = 1;
692
693#ifdef DEBUG_FULL
694 fprintf(stderr,"stream_sock_write : fd=%d, owner=%p\n", fd, fdtab[fd].owner);
695#endif
696
697 retval = 1;
698 if (fdtab[fd].state == FD_STERROR || (fdtab[fd].ev & FD_POLL_ERR))
699 goto out_error;
700
Willy Tarreaud06e7112009-03-29 10:18:41 +0200701 /* we might have been called just after an asynchronous shutw */
702 if (b->flags & BF_SHUTW)
703 goto out_wakeup;
704
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100705 if (likely(!(b->flags & BF_EMPTY))) {
706 /* OK there are data waiting to be sent */
707 retval = stream_sock_write_loop(si, b);
708 if (retval < 0)
709 goto out_error;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200710 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100711 else {
712 /* may be we have received a connection acknowledgement in TCP mode without data */
713 if (likely(fdtab[fd].state == FD_STCONN)) {
714 /* We have no data to send to check the connection, and
715 * getsockopt() will not inform us whether the connection
716 * is still pending. So we'll reuse connect() to check the
717 * state of the socket. This has the advantage of givig us
718 * the following info :
719 * - error
720 * - connecting (EALREADY, EINPROGRESS)
721 * - connected (EISCONN, 0)
722 */
723 if ((connect(fd, fdtab[fd].peeraddr, fdtab[fd].peerlen) == 0))
724 errno = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200725
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100726 if (errno == EALREADY || errno == EINPROGRESS) {
727 retval = 0;
728 goto out_may_wakeup;
729 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100730
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100731 if (errno && errno != EISCONN)
732 goto out_error;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200733
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100734 /* OK we just need to indicate that we got a connection
735 * and that we wrote nothing.
736 */
737 b->flags |= BF_WRITE_NULL;
738 fdtab[fd].state = FD_STREADY;
739 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200740
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100741 /* Funny, we were called to write something but there wasn't
742 * anything. We can get there, for example if we were woken up
743 * on a write event to finish the splice, but the send_max is 0
744 * so we cannot write anything from the buffer. Let's disable
745 * the write event and pretend we never came there.
746 */
747 }
748
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100749 if (!b->pipe && !b->send_max) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100750 /* the connection is established but we can't write. Either the
751 * buffer is empty, or we just refrain from sending because the
752 * send_max limit was reached. Maybe we just wrote the last
753 * chunk and need to close.
754 */
755 if (((b->flags & (BF_SHUTW|BF_EMPTY|BF_HIJACK|BF_WRITE_ENA|BF_SHUTR)) ==
756 (BF_EMPTY|BF_WRITE_ENA|BF_SHUTR)) &&
757 (si->state == SI_ST_EST)) {
758 stream_sock_shutw(si);
759 goto out_wakeup;
760 }
761
Willy Tarreaud06e7112009-03-29 10:18:41 +0200762 if ((b->flags & (BF_EMPTY|BF_SHUTW)) == BF_EMPTY)
Willy Tarreauac128fe2009-01-09 13:05:19 +0100763 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100764
Willy Tarreauac128fe2009-01-09 13:05:19 +0100765 EV_FD_CLR(fd, DIR_WR);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100766 b->wex = TICK_ETERNITY;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100767 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100768
769 out_may_wakeup:
770 if (b->flags & BF_WRITE_ACTIVITY) {
771 /* update timeout if we have written something */
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100772 if ((b->send_max || b->pipe) &&
Willy Tarreaud2def0f2009-01-18 17:37:33 +0100773 (b->flags & (BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100774 b->wex = tick_add_ifset(now_ms, b->wto);
775
776 out_wakeup:
777 if (tick_isset(si->ib->rex)) {
778 /* Note: to prevent the client from expiring read timeouts
779 * during writes, we refresh it. A better solution would be
780 * to merge read+write timeouts into a unique one, although
781 * that needs some study particularly on full-duplex TCP
782 * connections.
783 */
784 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
785 }
786
787 /* the producer might be waiting for more room to store data */
Willy Tarreaud06e7112009-03-29 10:18:41 +0200788 if (likely((b->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL)) == BF_WRITE_PARTIAL &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100789 (b->prod->flags & SI_FL_WAIT_ROOM)))
790 b->prod->chk_rcv(b->prod);
791
792 /* we have to wake up if there is a special event or if we don't have
793 * any more data to forward and it's not planned to send any more.
794 */
795 if (likely((b->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100796 (!b->to_forward && !b->send_max && !b->pipe) ||
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100797 si->state != SI_ST_EST ||
798 b->prod->state != SI_ST_EST))
799 task_wakeup(si->owner, TASK_WOKEN_IO);
800 }
801
802 fdtab[fd].ev &= ~FD_POLL_OUT;
803 return retval;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100804
Willy Tarreau6996e152007-04-30 14:37:43 +0200805 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100806 /* Write error on the file descriptor. We mark the FD as STERROR so
807 * that we don't use it anymore. The error is reported to the stream
808 * interface which will take proper action. We must not perturbate the
809 * buffer because the stream interface wants to ensure transparent
810 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200811 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100812
Willy Tarreau6996e152007-04-30 14:37:43 +0200813 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100814 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100815 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100816 si->flags |= SI_FL_ERR;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200817 task_wakeup(si->owner, TASK_WOKEN_IO);
818 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200819}
820
Willy Tarreau48adac52008-08-30 04:58:38 +0200821/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200822 * This function performs a shutdown-write on a stream interface in a connected or
823 * init state (it does nothing for other states). It either shuts the write side
Willy Tarreau99126c32008-11-27 10:30:51 +0100824 * or closes the file descriptor and marks itself as closed. The buffer flags are
825 * updated to reflect the new state.
Willy Tarreau48adac52008-08-30 04:58:38 +0200826 */
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100827void stream_sock_shutw(struct stream_interface *si)
Willy Tarreau48adac52008-08-30 04:58:38 +0200828{
Willy Tarreau99126c32008-11-27 10:30:51 +0100829 if (si->ob->flags & BF_SHUTW)
830 return;
831 si->ob->flags |= BF_SHUTW;
832 si->ob->wex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100833 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau99126c32008-11-27 10:30:51 +0100834
Willy Tarreaub38903c2008-11-23 21:33:29 +0100835 switch (si->state) {
Willy Tarreaub38903c2008-11-23 21:33:29 +0100836 case SI_ST_EST:
837 if (!(si->ib->flags & BF_SHUTR)) {
838 EV_FD_CLR(si->fd, DIR_WR);
839 shutdown(si->fd, SHUT_WR);
840 return;
841 }
Willy Tarreau5d707e12009-06-28 11:09:07 +0200842
843 if (fdtab[si->fd].flags & FD_FL_TCP_NOLING) {
844 /* we have to shut before closing if we disable lingering */
845 EV_FD_CLR(si->fd, DIR_WR);
846 shutdown(si->fd, SHUT_WR);
847 }
Willy Tarreaub38903c2008-11-23 21:33:29 +0100848 /* fall through */
849 case SI_ST_CON:
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100850 /* we may have to close a pending connection, and mark the
851 * response buffer as shutr
852 */
Willy Tarreau48adac52008-08-30 04:58:38 +0200853 fd_delete(si->fd);
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100854 /* fall through */
855 case SI_ST_CER:
Willy Tarreau7f006512008-12-07 14:04:04 +0100856 si->state = SI_ST_DIS;
857 default:
Willy Tarreaud06e7112009-03-29 10:18:41 +0200858 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100859 si->ib->flags |= BF_SHUTR;
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100860 si->ib->rex = TICK_ETERNITY;
Willy Tarreau127334e2009-03-28 10:47:26 +0100861 si->exp = TICK_ETERNITY;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100862 return;
Willy Tarreau48adac52008-08-30 04:58:38 +0200863 }
Willy Tarreau48adac52008-08-30 04:58:38 +0200864}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200865
Willy Tarreau2d212792008-08-27 21:41:35 +0200866/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200867 * This function performs a shutdown-read on a stream interface in a connected or
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100868 * init state (it does nothing for other states). It either shuts the read side
Willy Tarreau99126c32008-11-27 10:30:51 +0100869 * or closes the file descriptor and marks itself as closed. The buffer flags are
870 * updated to reflect the new state.
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200871 */
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100872void stream_sock_shutr(struct stream_interface *si)
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200873{
Willy Tarreau99126c32008-11-27 10:30:51 +0100874 if (si->ib->flags & BF_SHUTR)
875 return;
876 si->ib->flags |= BF_SHUTR;
877 si->ib->rex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100878 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100879
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100880 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100881 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200882
Willy Tarreaucff64112008-11-03 06:26:53 +0100883 if (si->ob->flags & BF_SHUTW) {
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200884 fd_delete(si->fd);
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100885 si->state = SI_ST_DIS;
Willy Tarreau127334e2009-03-28 10:47:26 +0100886 si->exp = TICK_ETERNITY;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100887 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200888 }
889 EV_FD_CLR(si->fd, DIR_RD);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100890 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200891}
892
893/*
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200894 * Updates a connected stream_sock file descriptor status and timeouts
895 * according to the buffers' flags. It should only be called once after the
896 * buffer flags have settled down, and before they are cleared. It doesn't
897 * harm to call it as often as desired (it just slightly hurts performance).
898 */
Willy Tarreaub0253252008-11-30 21:37:12 +0100899void stream_sock_data_finish(struct stream_interface *si)
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200900{
Willy Tarreaub0253252008-11-30 21:37:12 +0100901 struct buffer *ib = si->ib;
902 struct buffer *ob = si->ob;
903 int fd = si->fd;
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200904
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200905 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 Tarreau3a16b2c2008-08-28 08:54:27 +0200906 now_ms, __FUNCTION__,
907 fd, fdtab[fd].owner,
908 ib, ob,
909 ib->rex, ob->wex,
910 ib->flags, ob->flags,
Willy Tarreaub0253252008-11-30 21:37:12 +0100911 ib->l, ob->l, si->state);
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200912
913 /* Check if we need to close the read side */
914 if (!(ib->flags & BF_SHUTR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200915 /* Read not closed, update FD status and timeout for reads */
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200916 if (ib->flags & (BF_FULL|BF_HIJACK)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200917 /* stop reading */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100918 if ((ib->flags & (BF_FULL|BF_HIJACK)) == BF_FULL)
919 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau2d212792008-08-27 21:41:35 +0200920 EV_FD_COND_C(fd, DIR_RD);
921 ib->rex = TICK_ETERNITY;
922 }
923 else {
924 /* (re)start reading and update timeout. Note: we don't recompute the timeout
925 * everytime we get here, otherwise it would risk never to expire. We only
926 * update it if is was not yet set, or if we already got some read status.
927 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100928 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau2d212792008-08-27 21:41:35 +0200929 EV_FD_COND_S(fd, DIR_RD);
Willy Tarreau86491c32008-12-14 09:04:47 +0100930 if (!(ib->flags & BF_READ_NOEXP) &&
931 (!tick_isset(ib->rex) || ib->flags & BF_READ_ACTIVITY))
Willy Tarreau2d212792008-08-27 21:41:35 +0200932 ib->rex = tick_add_ifset(now_ms, ib->rto);
933 }
934 }
935
936 /* Check if we need to close the write side */
937 if (!(ob->flags & BF_SHUTW)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200938 /* Write not closed, update FD status and timeout for writes */
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100939 if ((ob->send_max == 0 && !ob->pipe) ||
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100940 (ob->flags & BF_EMPTY) ||
Willy Tarreau3da77c52008-08-29 09:58:42 +0200941 (ob->flags & (BF_HIJACK|BF_WRITE_ENA)) == 0) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200942 /* stop writing */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100943 if ((ob->flags & (BF_EMPTY|BF_HIJACK|BF_WRITE_ENA)) == (BF_EMPTY|BF_WRITE_ENA))
944 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau2d212792008-08-27 21:41:35 +0200945 EV_FD_COND_C(fd, DIR_WR);
946 ob->wex = TICK_ETERNITY;
947 }
948 else {
949 /* (re)start writing and update timeout. Note: we don't recompute the timeout
950 * everytime we get here, otherwise it would risk never to expire. We only
951 * update it if is was not yet set, or if we already got some write status.
952 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100953 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau2d212792008-08-27 21:41:35 +0200954 EV_FD_COND_S(fd, DIR_WR);
Willy Tarreau3da77c52008-08-29 09:58:42 +0200955 if (!tick_isset(ob->wex) || ob->flags & BF_WRITE_ACTIVITY) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200956 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreaud06e7112009-03-29 10:18:41 +0200957 if (tick_isset(ib->rex)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200958 /* Note: depending on the protocol, we don't know if we're waiting
959 * for incoming data or not. So in order to prevent the socket from
960 * expiring read timeouts during writes, we refresh the read timeout,
961 * except if it was already infinite.
962 */
Willy Tarreaud06e7112009-03-29 10:18:41 +0200963 ib->rex = tick_add_ifset(now_ms, ib->rto);
Willy Tarreau2d212792008-08-27 21:41:35 +0200964 }
965 }
966 }
967 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200968}
969
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100970/* This function is used for inter-stream-interface calls. It is called by the
971 * consumer to inform the producer side that it may be interested in checking
972 * for free space in the buffer. Note that it intentionally does not update
973 * timeouts, so that we can still check them later at wake-up.
974 */
975void stream_sock_chk_rcv(struct stream_interface *si)
976{
977 struct buffer *ib = si->ib;
978
979 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",
980 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +0000981 si->fd, fdtab[si->fd].owner,
982 ib, si->ob,
983 ib->rex, si->ob->wex,
984 ib->flags, si->ob->flags,
985 ib->l, si->ob->l, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100986
987 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
988 return;
989
990 if (ib->flags & (BF_FULL|BF_HIJACK)) {
991 /* stop reading */
992 if ((ib->flags & (BF_FULL|BF_HIJACK)) == BF_FULL)
993 si->flags |= SI_FL_WAIT_ROOM;
994 EV_FD_COND_C(si->fd, DIR_RD);
995 }
996 else {
997 /* (re)start reading */
998 si->flags &= ~SI_FL_WAIT_ROOM;
999 EV_FD_COND_S(si->fd, DIR_RD);
1000 }
1001}
1002
1003
1004/* This function is used for inter-stream-interface calls. It is called by the
1005 * producer to inform the consumer side that it may be interested in checking
1006 * for data in the buffer. Note that it intentionally does not update timeouts,
1007 * so that we can still check them later at wake-up.
1008 */
1009void stream_sock_chk_snd(struct stream_interface *si)
1010{
1011 struct buffer *ob = si->ob;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001012 int retval;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001013
1014 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",
1015 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +00001016 si->fd, fdtab[si->fd].owner,
1017 si->ib, ob,
1018 si->ib->rex, ob->wex,
1019 si->ib->flags, ob->flags,
1020 si->ib->l, ob->l, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001021
1022 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
1023 return;
1024
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001025 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
1026 (fdtab[si->fd].ev & FD_POLL_OUT) || /* we'll be called anyway */
Willy Tarreau3eba98a2009-01-25 13:56:13 +01001027 !(ob->send_max || ob->pipe) || /* called with nothing to send ! */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001028 !(ob->flags & (BF_HIJACK|BF_WRITE_ENA))) /* we may not write */
1029 return;
1030
1031 retval = stream_sock_write_loop(si, ob);
1032 if (retval < 0) {
1033 /* Write error on the file descriptor. We mark the FD as STERROR so
1034 * that we don't use it anymore and we notify the task.
1035 */
1036 fdtab[si->fd].state = FD_STERROR;
1037 fdtab[si->fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +01001038 EV_FD_REM(si->fd);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001039 si->flags |= SI_FL_ERR;
1040 goto out_wakeup;
1041 }
1042
Willy Tarreau3eba98a2009-01-25 13:56:13 +01001043 if (retval > 0 || (ob->send_max == 0 && !ob->pipe)) {
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001044 /* the connection is established but we can't write. Either the
1045 * buffer is empty, or we just refrain from sending because the
1046 * send_max limit was reached. Maybe we just wrote the last
1047 * chunk and need to close.
1048 */
1049 if (((ob->flags & (BF_SHUTW|BF_EMPTY|BF_HIJACK|BF_WRITE_ENA|BF_SHUTR)) ==
1050 (BF_EMPTY|BF_WRITE_ENA|BF_SHUTR)) &&
1051 (si->state == SI_ST_EST)) {
1052 stream_sock_shutw(si);
1053 goto out_wakeup;
1054 }
Willy Tarreaud06e7112009-03-29 10:18:41 +02001055
1056 if ((ob->flags & (BF_SHUTW|BF_EMPTY|BF_HIJACK|BF_WRITE_ENA)) == (BF_EMPTY|BF_WRITE_ENA))
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001057 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001058 ob->wex = TICK_ETERNITY;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001059 }
1060 else {
1061 /* (re)start writing. */
1062 si->flags &= ~SI_FL_WAIT_DATA;
1063 EV_FD_COND_S(si->fd, DIR_WR);
1064 }
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001065
Willy Tarreauc9619462009-03-09 22:40:57 +01001066 if (likely(ob->flags & BF_WRITE_ACTIVITY)) {
1067 /* update timeout if we have written something */
1068 if ((ob->send_max || ob->pipe) &&
1069 (ob->flags & (BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
1070 ob->wex = tick_add_ifset(now_ms, ob->wto);
1071
1072 if (tick_isset(si->ib->rex)) {
1073 /* Note: to prevent the client from expiring read timeouts
1074 * during writes, we refresh it. A better solution would be
1075 * to merge read+write timeouts into a unique one, although
1076 * that needs some study particularly on full-duplex TCP
1077 * connections.
1078 */
1079 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
1080 }
1081 }
1082
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001083 /* in case of special condition (error, shutdown, end of write...), we
1084 * have to notify the task.
1085 */
1086 if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreau3eba98a2009-01-25 13:56:13 +01001087 (!ob->to_forward && !ob->send_max && !ob->pipe) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001088 si->state != SI_ST_EST)) {
1089 out_wakeup:
1090 task_wakeup(si->owner, TASK_WOKEN_IO);
1091 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001092}
1093
Willy Tarreaubaaee002006-06-26 02:48:02 +02001094
1095/*
1096 * Local variables:
1097 * c-indent-level: 8
1098 * c-basic-offset: 8
1099 * End:
1100 */