blob: e75bdafe836ce6401049817afce7bc656907e0e6 [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
19#include <sys/socket.h>
20#include <sys/stat.h>
21#include <sys/types.h>
22
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040023#include <netinet/tcp.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
Willy Tarreaua9de3332009-11-28 07:47:10 +010087/* how many data we attempt to splice at once when the buffer is configured for
88 * infinite forwarding */
89#define MAX_SPLICE_AT_ONCE (1<<30)
90
Willy Tarreau5bd8c372009-01-19 00:32:22 +010091/* Returns :
92 * -1 if splice is not possible or not possible anymore and we must switch to
93 * user-land copy (eg: to_forward reached)
94 * 0 when we know that polling is required to get more data (EAGAIN)
95 * 1 for all other cases (we can safely try again, or if an activity has been
96 * detected (DATA/NULL/ERR))
97 * Sets :
98 * BF_READ_NULL
99 * BF_READ_PARTIAL
100 * BF_WRITE_PARTIAL (during copy)
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200101 * BF_OUT_EMPTY (during copy)
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100102 * SI_FL_ERR
103 * SI_FL_WAIT_ROOM
104 * (SI_FL_WAIT_RECV)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100105 *
106 * This function automatically allocates a pipe from the pipe pool. It also
107 * carefully ensures to clear b->pipe whenever it leaves the pipe empty.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100108 */
109static int stream_sock_splice_in(struct buffer *b, struct stream_interface *si)
110{
111 int fd = si->fd;
Willy Tarreau31971e52009-09-20 12:07:52 +0200112 int ret;
113 unsigned long max;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100114 int retval = 1;
115
116 if (!b->to_forward)
117 return -1;
118
119 if (!(b->flags & BF_KERN_SPLICING))
120 return -1;
121
122 if (b->l) {
123 /* We're embarrassed, there are already data pending in
124 * the buffer and we don't want to have them at two
125 * locations at a time. Let's indicate we need some
126 * place and ask the consumer to hurry.
127 */
128 si->flags |= SI_FL_WAIT_ROOM;
129 EV_FD_CLR(fd, DIR_RD);
130 b->rex = TICK_ETERNITY;
131 b->cons->chk_snd(b->cons);
132 return 1;
133 }
134
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100135 if (unlikely(b->pipe == NULL)) {
136 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100137 b->flags &= ~BF_KERN_SPLICING;
138 return -1;
139 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100140 }
141
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100142 /* At this point, b->pipe is valid */
143
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100144 while (1) {
Willy Tarreaua9de3332009-11-28 07:47:10 +0100145 if (b->to_forward == BUF_INFINITE_FORWARD)
146 max = MAX_SPLICE_AT_ONCE;
147 else
148 max = b->to_forward;
149
Willy Tarreau31971e52009-09-20 12:07:52 +0200150 if (!max) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100151 /* It looks like the buffer + the pipe already contain
152 * the maximum amount of data to be transferred. Try to
153 * send those data immediately on the other side if it
154 * is currently waiting.
155 */
156 retval = -1; /* end of forwarding */
157 break;
158 }
159
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100160 ret = splice(fd, NULL, b->pipe->prod, NULL, max,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100161 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
162
163 if (ret <= 0) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100164 if (ret == 0) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100165 /* connection closed. This is only detected by
166 * recent kernels (>= 2.6.27.13).
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100167 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100168 b->flags |= BF_READ_NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100169 retval = 1; /* no need for further polling */
170 break;
171 }
172
173 if (errno == EAGAIN) {
174 /* there are two reasons for EAGAIN :
175 * - nothing in the socket buffer (standard)
176 * - pipe is full
Willy Tarreau98b306b2009-01-25 11:11:32 +0100177 * - the connection is closed (kernel < 2.6.27.13)
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100178 * Since we don't know if pipe is full, we'll
179 * stop if the pipe is not empty. Anyway, we
180 * will almost always fill/empty the pipe.
181 */
182
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100183 if (b->pipe->data) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100184 si->flags |= SI_FL_WAIT_ROOM;
185 retval = 1;
186 break;
187 }
188
Willy Tarreau98b306b2009-01-25 11:11:32 +0100189 /* We don't know if the connection was closed.
190 * But if we're called upon POLLIN with an empty
191 * pipe and get EAGAIN, it is suspect enought to
192 * try to fall back to the normal recv scheme
193 * which will be able to deal with the situation.
194 */
195 retval = -1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100196 break;
197 }
Willy Tarreaudc340a92009-06-28 23:10:19 +0200198
Willy Tarreaua9de3332009-11-28 07:47:10 +0100199 if (errno == ENOSYS || errno == EINVAL) {
Willy Tarreaudc340a92009-06-28 23:10:19 +0200200 /* splice not supported on this end, disable it */
201 b->flags &= ~BF_KERN_SPLICING;
202 si->flags &= ~SI_FL_CAP_SPLICE;
203 put_pipe(b->pipe);
204 b->pipe = NULL;
205 return -1;
206 }
207
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100208 /* here we have another error */
209 si->flags |= SI_FL_ERR;
210 retval = 1;
211 break;
212 } /* ret <= 0 */
213
Willy Tarreau31971e52009-09-20 12:07:52 +0200214 if (b->to_forward != BUF_INFINITE_FORWARD)
215 b->to_forward -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100216 b->total += ret;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100217 b->pipe->data += ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100218 b->flags |= BF_READ_PARTIAL;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200219 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100220
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100221 if (b->pipe->data >= SPLICE_FULL_HINT ||
222 ret >= global.tune.recv_enough) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100223 /* We've read enough of it for this time. */
224 retval = 1;
225 break;
226 }
227 } /* while */
228
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100229 if (unlikely(!b->pipe->data)) {
230 put_pipe(b->pipe);
231 b->pipe = NULL;
232 }
233
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100234 return retval;
235}
236
Willy Tarreau6b4aad42009-01-18 21:59:13 +0100237#endif /* CONFIG_HAP_LINUX_SPLICE */
238
239
Willy Tarreaubaaee002006-06-26 02:48:02 +0200240/*
Willy Tarreaud7971282006-07-29 18:36:34 +0200241 * this function is called on a read event from a stream socket.
Willy Tarreau83749182007-04-15 20:56:27 +0200242 * It returns 0 if we have a high confidence that we will not be
243 * able to read more data without polling first. Returns non-zero
244 * otherwise.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200245 */
Willy Tarreaud7971282006-07-29 18:36:34 +0200246int stream_sock_read(int fd) {
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200247 struct stream_interface *si = fdtab[fd].owner;
Willy Tarreau48adac52008-08-30 04:58:38 +0200248 struct buffer *b = si->ib;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200249 int ret, max, retval, cur_read;
Willy Tarreaub8949f12007-03-23 22:39:59 +0100250 int read_poll = MAX_READ_POLL_LOOPS;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200251
252#ifdef DEBUG_FULL
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100253 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 +0200254#endif
255
Willy Tarreau83749182007-04-15 20:56:27 +0200256 retval = 1;
257
Willy Tarreau71543652009-07-14 19:55:05 +0200258 /* stop immediately on errors. Note that we DON'T want to stop on
259 * POLL_ERR, as the poller might report a write error while there
260 * are still data available in the recv buffer. This typically
261 * happens when we send too large a request to a backend server
262 * which rejects it before reading it all.
263 */
264 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau6996e152007-04-30 14:37:43 +0200265 goto out_error;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100266
267 /* stop here if we reached the end of data */
268 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
269 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200270
Willy Tarreaud06e7112009-03-29 10:18:41 +0200271 /* maybe we were called immediately after an asynchronous shutr */
272 if (b->flags & BF_SHUTR)
273 goto out_wakeup;
274
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100275#if defined(CONFIG_HAP_LINUX_SPLICE)
276 if (b->to_forward && b->flags & BF_KERN_SPLICING) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100277
278 /* Under Linux, if FD_POLL_HUP is set, we have reached the end.
279 * Since older splice() implementations were buggy and returned
280 * EAGAIN on end of read, let's bypass the call to splice() now.
281 */
282 if (fdtab[fd].ev & FD_POLL_HUP)
283 goto out_shutdown_r;
284
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100285 retval = stream_sock_splice_in(b, si);
286
287 if (retval >= 0) {
288 if (si->flags & SI_FL_ERR)
289 goto out_error;
290 if (b->flags & BF_READ_NULL)
291 goto out_shutdown_r;
292 goto out_wakeup;
293 }
294 /* splice not possible (anymore), let's go on on standard copy */
295 }
296#endif
Willy Tarreau8a7af602008-05-03 23:07:14 +0200297 cur_read = 0;
Willy Tarreau6996e152007-04-30 14:37:43 +0200298 while (1) {
299 /*
300 * 1. compute the maximum block size we can read at once.
301 */
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100302 if (b->l == 0) {
303 /* let's realign the buffer to optimize I/O */
304 b->r = b->w = b->lr = b->data;
Willy Tarreau7c3c5412009-12-13 15:53:05 +0100305 max = buffer_max_len(b);
Willy Tarreau83749182007-04-15 20:56:27 +0200306 }
307 else if (b->r > b->w) {
Willy Tarreau7c3c5412009-12-13 15:53:05 +0100308 max = b->data + buffer_max_len(b) - b->r;
Willy Tarreau83749182007-04-15 20:56:27 +0200309 }
310 else {
311 max = b->w - b->r;
Willy Tarreau7c3c5412009-12-13 15:53:05 +0100312 if (max > buffer_max_len(b))
313 max = buffer_max_len(b);
Willy Tarreau83749182007-04-15 20:56:27 +0200314 }
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100315
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100316 if (max == 0) {
317 b->flags |= BF_FULL;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100318 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100319 break;
320 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200321
Willy Tarreau6996e152007-04-30 14:37:43 +0200322 /*
323 * 2. read the largest possible block
324 */
Willy Tarreaud6d06902009-08-19 11:22:33 +0200325 if (MSG_NOSIGNAL) {
326 ret = recv(fd, b->r, max, MSG_NOSIGNAL);
327 } else {
Willy Tarreau83749182007-04-15 20:56:27 +0200328 int skerr;
329 socklen_t lskerr = sizeof(skerr);
330
331 ret = getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
332 if (ret == -1 || skerr)
333 ret = -1;
334 else
335 ret = recv(fd, b->r, max, 0);
336 }
Willy Tarreaud6d06902009-08-19 11:22:33 +0200337
Willy Tarreau83749182007-04-15 20:56:27 +0200338 if (ret > 0) {
339 b->r += ret;
340 b->l += ret;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200341 cur_read += ret;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100342
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100343 /* if we're allowed to directly forward data, we must update send_max */
Willy Tarreau31971e52009-09-20 12:07:52 +0200344 if (b->to_forward && !(b->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
345 unsigned long fwd = ret;
346 if (b->to_forward != BUF_INFINITE_FORWARD) {
347 if (fwd > b->to_forward)
348 fwd = b->to_forward;
349 b->to_forward -= fwd;
350 }
351 b->send_max += fwd;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200352 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100353 }
Willy Tarreauf890dc92008-12-13 21:12:26 +0100354
Willy Tarreaub38903c2008-11-23 21:33:29 +0100355 if (fdtab[fd].state == FD_STCONN)
356 fdtab[fd].state = FD_STREADY;
357
Willy Tarreau3da77c52008-08-29 09:58:42 +0200358 b->flags |= BF_READ_PARTIAL;
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100359
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200360 if (b->r == b->data + b->size) {
Willy Tarreau83749182007-04-15 20:56:27 +0200361 b->r = b->data; /* wrap around the buffer */
362 }
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100363
Willy Tarreau83749182007-04-15 20:56:27 +0200364 b->total += ret;
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100365
Willy Tarreau7c3c5412009-12-13 15:53:05 +0100366 if (b->l >= buffer_max_len(b)) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200367 /* The buffer is now full, there's no point in going through
368 * the loop again.
369 */
Willy Tarreau8a7af602008-05-03 23:07:14 +0200370 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == b->l)) {
371 b->xfer_small = 0;
372 b->xfer_large++;
373 if (b->xfer_large >= 3) {
374 /* we call this buffer a fast streamer if it manages
375 * to be filled in one call 3 consecutive times.
376 */
377 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
378 //fputc('+', stderr);
379 }
380 }
381 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200382 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200383 b->xfer_large = 0;
384 b->xfer_small++;
385 if (b->xfer_small >= 2) {
386 /* if the buffer has been at least half full twice,
387 * we receive faster than we send, so at least it
388 * is not a "fast streamer".
389 */
390 b->flags &= ~BF_STREAMER_FAST;
391 //fputc('-', stderr);
392 }
393 }
394 else {
395 b->xfer_small = 0;
396 b->xfer_large = 0;
397 }
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100398
399 b->flags |= BF_FULL;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100400 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100401 break;
Willy Tarreau6996e152007-04-30 14:37:43 +0200402 }
403
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200404 /* if too many bytes were missing from last read, it means that
405 * it's pointless trying to read again because the system does
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100406 * not have them in buffers. BTW, if FD_POLL_HUP was present,
407 * it means that we have reached the end and that the connection
408 * is closed.
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200409 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100410 if (ret < max) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200411 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200412 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200413 b->xfer_large = 0;
414 b->xfer_small++;
415 if (b->xfer_small >= 3) {
416 /* we have read less than half of the buffer in
417 * one pass, and this happened at least 3 times.
418 * This is definitely not a streamer.
419 */
420 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
421 //fputc('!', stderr);
422 }
423 }
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200424 /* unfortunately, on level-triggered events, POLL_HUP
425 * is generally delivered AFTER the system buffer is
426 * empty, so this one might never match.
427 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100428 if (fdtab[fd].ev & FD_POLL_HUP)
429 goto out_shutdown_r;
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200430
431 /* if a streamer has read few data, it may be because we
432 * have exhausted system buffers. It's not worth trying
433 * again.
434 */
435 if (b->flags & BF_STREAMER)
436 break;
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200437
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100438 /* generally if we read something smaller than 1 or 2 MSS,
439 * it means that either we have exhausted the system's
440 * buffers (streamer or question-response protocol) or
441 * that the connection will be closed. Streamers are
442 * easily detected so we return early. For other cases,
443 * it's still better to perform a last read to be sure,
444 * because it may save one complete poll/read/wakeup cycle
445 * in case of shutdown.
446 */
447 if (ret < MIN_RET_FOR_READ_LOOP && b->flags & BF_STREAMER)
448 break;
449
450 /* if we read a large block smaller than what we requested,
451 * it's almost certain we'll never get anything more.
452 */
453 if (ret >= global.tune.recv_enough)
454 break;
455 }
Willy Tarreau83749182007-04-15 20:56:27 +0200456
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100457 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200458 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200459 }
460 else if (ret == 0) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200461 /* connection closed */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100462 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200463 }
Willy Tarreau9f195292007-04-15 21:26:58 +0200464 else if (errno == EAGAIN) {
465 /* Ignore EAGAIN but inform the poller that there is
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100466 * nothing to read left if we did not read much, ie
467 * less than what we were still expecting to read.
468 * But we may have done some work justifying to notify
469 * the task.
Willy Tarreau9f195292007-04-15 21:26:58 +0200470 */
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100471 if (cur_read < MIN_RET_FOR_READ_LOOP)
472 retval = 0;
Willy Tarreau83749182007-04-15 20:56:27 +0200473 break;
474 }
475 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200476 goto out_error;
Willy Tarreau83749182007-04-15 20:56:27 +0200477 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200478 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200479
Willy Tarreau6996e152007-04-30 14:37:43 +0200480 out_wakeup:
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100481 /* We might have some data the consumer is waiting for */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200482 if (!(b->flags & BF_OUT_EMPTY) && (b->cons->flags & SI_FL_WAIT_DATA)) {
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100483 int last_len = b->pipe ? b->pipe->data : 0;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100484
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100485 b->cons->chk_snd(b->cons);
486
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100487 /* check if the consumer has freed some space */
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100488 if (!(b->flags & BF_FULL) &&
489 (!last_len || !b->pipe || b->pipe->data < last_len))
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100490 si->flags &= ~SI_FL_WAIT_ROOM;
491 }
492
493 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100494 EV_FD_CLR(fd, DIR_RD);
495 b->rex = TICK_ETERNITY;
496 }
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200497 else if ((b->flags & (BF_SHUTR|BF_READ_PARTIAL|BF_FULL|BF_DONT_READ|BF_READ_NOEXP)) == BF_READ_PARTIAL)
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100498 b->rex = tick_add_ifset(now_ms, b->rto);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100499
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100500 /* we have to wake up if there is a special event or if we don't have
501 * any more data to forward.
502 */
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100503 if ((b->flags & (BF_READ_NULL|BF_READ_ERROR|BF_SHUTR|BF_READ_DONTWAIT)) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100504 !b->to_forward ||
505 si->state != SI_ST_EST ||
506 b->cons->state != SI_ST_EST ||
507 (si->flags & SI_FL_ERR))
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100508 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100509
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100510 b->flags &= ~BF_READ_DONTWAIT;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100511 fdtab[fd].ev &= ~FD_POLL_IN;
Willy Tarreau83749182007-04-15 20:56:27 +0200512 return retval;
Willy Tarreau6996e152007-04-30 14:37:43 +0200513
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100514 out_shutdown_r:
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200515 /* we received a shutdown */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100516 fdtab[fd].ev &= ~FD_POLL_HUP;
517 b->flags |= BF_READ_NULL;
Willy Tarreau520d95e2009-09-19 21:04:57 +0200518 if (b->flags & BF_AUTO_CLOSE)
Willy Tarreau418fd472009-09-06 21:37:23 +0200519 buffer_shutw_now(b);
Willy Tarreau99126c32008-11-27 10:30:51 +0100520 stream_sock_shutr(si);
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200521 goto out_wakeup;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100522
Willy Tarreau6996e152007-04-30 14:37:43 +0200523 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100524 /* Read error on the file descriptor. We mark the FD as STERROR so
525 * that we don't use it anymore. The error is reported to the stream
526 * interface which will take proper action. We must not perturbate the
527 * buffer because the stream interface wants to ensure transparent
528 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200529 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100530
Willy Tarreau6996e152007-04-30 14:37:43 +0200531 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100532 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100533 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100534 si->flags |= SI_FL_ERR;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100535 retval = 1;
536 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200537}
538
539
540/*
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100541 * This function is called to send buffer data to a stream socket.
542 * It returns -1 in case of unrecoverable error, 0 if the caller needs to poll
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100543 * before calling it again, otherwise 1. If a pipe was associated with the
544 * buffer and it empties it, it releases it as well.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200545 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100546static int stream_sock_write_loop(struct stream_interface *si, struct buffer *b)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100547{
Willy Tarreau83749182007-04-15 20:56:27 +0200548 int write_poll = MAX_WRITE_POLL_LOOPS;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100549 int retval = 1;
550 int ret, max;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200551
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100552#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100553 while (b->pipe) {
554 ret = splice(b->pipe->cons, NULL, si->fd, NULL, b->pipe->data,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100555 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
556 if (ret <= 0) {
557 if (ret == 0 || errno == EAGAIN) {
558 retval = 0;
559 return retval;
560 }
561 /* here we have another error */
562 retval = -1;
563 return retval;
564 }
565
566 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100567 b->pipe->data -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100568
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100569 if (!b->pipe->data) {
570 put_pipe(b->pipe);
571 b->pipe = NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100572 break;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100573 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100574
575 if (--write_poll <= 0)
576 return retval;
577 }
578
579 /* At this point, the pipe is empty, but we may still have data pending
580 * in the normal buffer.
581 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100582#endif
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200583 if (!b->send_max) {
584 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100585 return retval;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200586 }
Willy Tarreau83749182007-04-15 20:56:27 +0200587
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100588 /* when we're in this loop, we already know that there is no spliced
589 * data left, and that there are sendable buffered data.
590 */
Willy Tarreau6996e152007-04-30 14:37:43 +0200591 while (1) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100592 if (b->r > b->w)
Willy Tarreau83749182007-04-15 20:56:27 +0200593 max = b->r - b->w;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100594 else
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200595 max = b->data + b->size - b->w;
Willy Tarreau83749182007-04-15 20:56:27 +0200596
Willy Tarreauf890dc92008-12-13 21:12:26 +0100597 /* limit the amount of outgoing data if required */
598 if (max > b->send_max)
599 max = b->send_max;
600
Willy Tarreau6db06d32009-08-19 11:14:11 +0200601 /* check if we want to inform the kernel that we're interested in
602 * sending more data after this call. We want this if :
603 * - we're about to close after this last send and want to merge
604 * the ongoing FIN with the last segment.
605 * - we know we can't send everything at once and must get back
606 * here because of unaligned data
607 * The test is arranged so that the most common case does only 2
608 * tests.
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200609 */
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200610
Willy Tarreaud6d06902009-08-19 11:22:33 +0200611 if (MSG_NOSIGNAL) {
Willy Tarreau6db06d32009-08-19 11:14:11 +0200612 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
613
614 if (MSG_MORE &&
Willy Tarreau520d95e2009-09-19 21:04:57 +0200615 (((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == BF_SHUTW_NOW &&
Willy Tarreau6db06d32009-08-19 11:14:11 +0200616 (max == b->l)) ||
617 (max != b->l && max != b->send_max))
618 && (fdtab[si->fd].flags & FD_FL_TCP)) {
619 send_flag |= MSG_MORE;
620 }
621
622 ret = send(si->fd, b->w, max, send_flag);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200623 } else {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200624 int skerr;
625 socklen_t lskerr = sizeof(skerr);
626
Willy Tarreau87bed622009-03-08 22:25:28 +0100627 ret = getsockopt(si->fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
Willy Tarreauc6423482006-10-15 14:59:03 +0200628 if (ret == -1 || skerr)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200629 ret = -1;
630 else
Willy Tarreau87bed622009-03-08 22:25:28 +0100631 ret = send(si->fd, b->w, max, MSG_DONTWAIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200632 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200633
634 if (ret > 0) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100635 if (fdtab[si->fd].state == FD_STCONN)
636 fdtab[si->fd].state = FD_STREADY;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100637
Willy Tarreau3da77c52008-08-29 09:58:42 +0200638 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreaue393fe22008-08-16 22:18:07 +0200639
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100640 b->w += ret;
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200641 if (b->w == b->data + b->size)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100642 b->w = b->data; /* wrap around the buffer */
643
644 b->l -= ret;
Willy Tarreau7c3c5412009-12-13 15:53:05 +0100645 if (likely(b->l < buffer_max_len(b)))
Willy Tarreaue393fe22008-08-16 22:18:07 +0200646 b->flags &= ~BF_FULL;
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100647
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200648 if (likely(!b->l))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100649 /* optimize data alignment in the buffer */
650 b->r = b->w = b->lr = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200651
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100652 b->send_max -= ret;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200653 if (!b->send_max) {
654 if (likely(!b->pipe))
655 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100656 break;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200657 }
Willy Tarreau83749182007-04-15 20:56:27 +0200658
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200659 /* if the system buffer is full, don't insist */
660 if (ret < max)
661 break;
662
Willy Tarreau6996e152007-04-30 14:37:43 +0200663 if (--write_poll <= 0)
664 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200665 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200666 else if (ret == 0 || errno == EAGAIN) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100667 /* nothing written, we need to poll for write first */
Willy Tarreau83749182007-04-15 20:56:27 +0200668 retval = 0;
669 break;
670 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200671 else {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100672 /* bad, we got an error */
673 retval = -1;
674 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200675 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200676 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200677
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;
Willy Tarreau71543652009-07-14 19:55:05 +0200698 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100699 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 Tarreauba0b63d2009-09-20 08:09:44 +0200705 if (likely(!(b->flags & BF_OUT_EMPTY))) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100706 /* 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 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200723 if ((connect(fd, fdinfo[fd].peeraddr, fdinfo[fd].peerlen) == 0))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100724 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 Tarreauba0b63d2009-09-20 08:09:44 +0200749 if (b->flags & BF_OUT_EMPTY) {
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 */
Willy Tarreau520d95e2009-09-19 21:04:57 +0200755 if (((b->flags & (BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == BF_SHUTW_NOW) &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100756 (si->state == SI_ST_EST)) {
757 stream_sock_shutw(si);
758 goto out_wakeup;
759 }
760
Willy Tarreau59454bf2009-09-20 11:13:40 +0200761 if ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreauac128fe2009-01-09 13:05:19 +0100762 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100763
Willy Tarreauac128fe2009-01-09 13:05:19 +0100764 EV_FD_CLR(fd, DIR_WR);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100765 b->wex = TICK_ETERNITY;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100766 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100767
768 out_may_wakeup:
769 if (b->flags & BF_WRITE_ACTIVITY) {
770 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200771 if ((b->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100772 b->wex = tick_add_ifset(now_ms, b->wto);
773
774 out_wakeup:
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200775 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100776 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200777 * during writes, we refresh it. We only do this if the
778 * interface is not configured for "independant streams",
779 * because for some applications it's better not to do this,
780 * for instance when continuously exchanging small amounts
781 * of data which can full the socket buffers long before a
782 * write timeout is detected.
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100783 */
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 Tarreauf1ba4b32009-10-17 14:37:52 +0200788 if (likely((b->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL|BF_DONT_READ)) == 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 Tarreauba0b63d2009-09-20 08:09:44 +0200796 ((b->flags & BF_OUT_EMPTY) && !b->to_forward) ||
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 Tarreau418fd472009-09-06 21:37:23 +0200829 si->ob->flags &= ~BF_SHUTW_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100830 if (si->ob->flags & BF_SHUTW)
831 return;
832 si->ob->flags |= BF_SHUTW;
833 si->ob->wex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100834 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau99126c32008-11-27 10:30:51 +0100835
Willy Tarreaub38903c2008-11-23 21:33:29 +0100836 switch (si->state) {
Willy Tarreaub38903c2008-11-23 21:33:29 +0100837 case SI_ST_EST:
Willy Tarreau720058c2009-07-14 19:21:50 +0200838 /* we have to shut before closing, otherwise some short messages
839 * may never leave the system, especially when there are remaining
840 * unread data in the socket input buffer, or when nolinger is set.
841 */
842 EV_FD_CLR(si->fd, DIR_WR);
843 shutdown(si->fd, SHUT_WR);
844
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200845 if (!(si->ib->flags & (BF_SHUTR|BF_DONT_READ)))
Willy Tarreaub38903c2008-11-23 21:33:29 +0100846 return;
Willy Tarreau5d707e12009-06-28 11:09:07 +0200847
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 Tarreau418fd472009-09-06 21:37:23 +0200874 si->ib->flags &= ~BF_SHUTR_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100875 if (si->ib->flags & BF_SHUTR)
876 return;
877 si->ib->flags |= BF_SHUTR;
878 si->ib->rex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100879 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100880
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100881 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100882 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200883
Willy Tarreaucff64112008-11-03 06:26:53 +0100884 if (si->ob->flags & BF_SHUTW) {
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200885 fd_delete(si->fd);
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100886 si->state = SI_ST_DIS;
Willy Tarreau127334e2009-03-28 10:47:26 +0100887 si->exp = TICK_ETERNITY;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100888 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200889 }
890 EV_FD_CLR(si->fd, DIR_RD);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100891 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200892}
893
894/*
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200895 * Updates a connected stream_sock file descriptor status and timeouts
896 * according to the buffers' flags. It should only be called once after the
897 * buffer flags have settled down, and before they are cleared. It doesn't
898 * harm to call it as often as desired (it just slightly hurts performance).
899 */
Willy Tarreaub0253252008-11-30 21:37:12 +0100900void stream_sock_data_finish(struct stream_interface *si)
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200901{
Willy Tarreaub0253252008-11-30 21:37:12 +0100902 struct buffer *ib = si->ib;
903 struct buffer *ob = si->ob;
904 int fd = si->fd;
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200905
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200906 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 +0200907 now_ms, __FUNCTION__,
908 fd, fdtab[fd].owner,
909 ib, ob,
910 ib->rex, ob->wex,
911 ib->flags, ob->flags,
Willy Tarreaub0253252008-11-30 21:37:12 +0100912 ib->l, ob->l, si->state);
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200913
914 /* Check if we need to close the read side */
915 if (!(ib->flags & BF_SHUTR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200916 /* Read not closed, update FD status and timeout for reads */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200917 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200918 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200919 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100920 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau2d212792008-08-27 21:41:35 +0200921 EV_FD_COND_C(fd, DIR_RD);
922 ib->rex = TICK_ETERNITY;
923 }
924 else {
925 /* (re)start reading and update timeout. Note: we don't recompute the timeout
926 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200927 * update it if is was not yet set. The stream socket handler will already
928 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200929 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100930 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau2d212792008-08-27 21:41:35 +0200931 EV_FD_COND_S(fd, DIR_RD);
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200932 if (!(ib->flags & (BF_READ_NOEXP|BF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau2d212792008-08-27 21:41:35 +0200933 ib->rex = tick_add_ifset(now_ms, ib->rto);
934 }
935 }
936
937 /* Check if we need to close the write side */
938 if (!(ob->flags & BF_SHUTW)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200939 /* Write not closed, update FD status and timeout for writes */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200940 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200941 /* stop writing */
Willy Tarreau59454bf2009-09-20 11:13:40 +0200942 if ((ob->flags & (BF_FULL|BF_HIJACK|BF_SHUTW_NOW)) == 0)
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100943 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau2d212792008-08-27 21:41:35 +0200944 EV_FD_COND_C(fd, DIR_WR);
945 ob->wex = TICK_ETERNITY;
946 }
947 else {
948 /* (re)start writing and update timeout. Note: we don't recompute the timeout
949 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200950 * update it if is was not yet set. The stream socket handler will already
951 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200952 */
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 Tarreaufe8903c2009-10-04 10:56:08 +0200955 if (!tick_isset(ob->wex)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200956 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200957 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
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,
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200961 * except if it was already infinite or if we have explicitly setup
962 * independant streams.
Willy Tarreau2d212792008-08-27 21:41:35 +0200963 */
Willy Tarreaud06e7112009-03-29 10:18:41 +0200964 ib->rex = tick_add_ifset(now_ms, ib->rto);
Willy Tarreau2d212792008-08-27 21:41:35 +0200965 }
966 }
967 }
968 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200969}
970
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100971/* This function is used for inter-stream-interface calls. It is called by the
972 * consumer to inform the producer side that it may be interested in checking
973 * for free space in the buffer. Note that it intentionally does not update
974 * timeouts, so that we can still check them later at wake-up.
975 */
976void stream_sock_chk_rcv(struct stream_interface *si)
977{
978 struct buffer *ib = si->ib;
979
980 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",
981 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +0000982 si->fd, fdtab[si->fd].owner,
983 ib, si->ob,
984 ib->rex, si->ob->wex,
985 ib->flags, si->ob->flags,
986 ib->l, si->ob->l, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100987
988 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
989 return;
990
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200991 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100992 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200993 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100994 si->flags |= SI_FL_WAIT_ROOM;
995 EV_FD_COND_C(si->fd, DIR_RD);
996 }
997 else {
998 /* (re)start reading */
999 si->flags &= ~SI_FL_WAIT_ROOM;
1000 EV_FD_COND_S(si->fd, DIR_RD);
1001 }
1002}
1003
1004
1005/* This function is used for inter-stream-interface calls. It is called by the
1006 * producer to inform the consumer side that it may be interested in checking
1007 * for data in the buffer. Note that it intentionally does not update timeouts,
1008 * so that we can still check them later at wake-up.
1009 */
1010void stream_sock_chk_snd(struct stream_interface *si)
1011{
1012 struct buffer *ob = si->ob;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001013 int retval;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001014
1015 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",
1016 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +00001017 si->fd, fdtab[si->fd].owner,
1018 si->ib, ob,
1019 si->ib->rex, ob->wex,
1020 si->ib->flags, ob->flags,
1021 si->ib->l, ob->l, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001022
1023 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
1024 return;
1025
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001026 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
1027 (fdtab[si->fd].ev & FD_POLL_OUT) || /* we'll be called anyway */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001028 (ob->flags & BF_OUT_EMPTY)) /* called with nothing to send ! */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001029 return;
1030
1031 retval = stream_sock_write_loop(si, ob);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001032 /* here, we have :
1033 * retval < 0 if an error was encountered during write.
1034 * retval = 0 if we can't write anymore without polling
1035 * retval = 1 if we're invited to come back when desired
1036 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001037 if (retval < 0) {
1038 /* Write error on the file descriptor. We mark the FD as STERROR so
1039 * that we don't use it anymore and we notify the task.
1040 */
1041 fdtab[si->fd].state = FD_STERROR;
1042 fdtab[si->fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +01001043 EV_FD_REM(si->fd);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001044 si->flags |= SI_FL_ERR;
1045 goto out_wakeup;
1046 }
1047
Willy Tarreauc54aef32009-07-27 20:08:06 +02001048 /* OK, so now we know that retval >= 0 means that some data might have
1049 * been sent, and that we may have to poll first. We have to do that
1050 * too if the buffer is not empty.
1051 */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001052 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001053 /* the connection is established but we can't write. Either the
1054 * buffer is empty, or we just refrain from sending because the
1055 * send_max limit was reached. Maybe we just wrote the last
1056 * chunk and need to close.
1057 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02001058 if (((ob->flags & (BF_SHUTW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTW_NOW)) ==
1059 (BF_AUTO_CLOSE|BF_SHUTW_NOW)) &&
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001060 (si->state == SI_ST_EST)) {
1061 stream_sock_shutw(si);
1062 goto out_wakeup;
1063 }
Willy Tarreaud06e7112009-03-29 10:18:41 +02001064
Willy Tarreau59454bf2009-09-20 11:13:40 +02001065 if ((ob->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001066 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001067 ob->wex = TICK_ETERNITY;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001068 }
1069 else {
Willy Tarreauc54aef32009-07-27 20:08:06 +02001070 /* Otherwise there are remaining data to be sent in the buffer,
1071 * which means we have to poll before doing so.
1072 */
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001073 EV_FD_COND_S(si->fd, DIR_WR);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001074 si->flags &= ~SI_FL_WAIT_DATA;
1075 if (!tick_isset(ob->wex))
1076 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001077 }
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001078
Willy Tarreauc9619462009-03-09 22:40:57 +01001079 if (likely(ob->flags & BF_WRITE_ACTIVITY)) {
1080 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001081 if ((ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreauc9619462009-03-09 22:40:57 +01001082 ob->wex = tick_add_ifset(now_ms, ob->wto);
1083
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001084 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreauc9619462009-03-09 22:40:57 +01001085 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001086 * during writes, we refresh it. We only do this if the
1087 * interface is not configured for "independant streams",
1088 * because for some applications it's better not to do this,
1089 * for instance when continuously exchanging small amounts
1090 * of data which can full the socket buffers long before a
1091 * write timeout is detected.
Willy Tarreauc9619462009-03-09 22:40:57 +01001092 */
1093 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
1094 }
1095 }
1096
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001097 /* in case of special condition (error, shutdown, end of write...), we
1098 * have to notify the task.
1099 */
1100 if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001101 ((ob->flags & BF_OUT_EMPTY) && !ob->to_forward) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001102 si->state != SI_ST_EST)) {
1103 out_wakeup:
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001104 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
1105 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001106 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001107}
1108
Willy Tarreaubaaee002006-06-26 02:48:02 +02001109
1110/*
1111 * Local variables:
1112 * c-indent-level: 8
1113 * c-basic-offset: 8
1114 * End:
1115 */