blob: 8937c2a56ddb18abda66feeb66df5363fe3c27d6 [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) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100299 max = buffer_max_len(b) - b->l;
300
301 if (max <= 0) {
302 b->flags |= BF_FULL;
303 si->flags |= SI_FL_WAIT_ROOM;
304 break;
305 }
306
Willy Tarreau6996e152007-04-30 14:37:43 +0200307 /*
308 * 1. compute the maximum block size we can read at once.
309 */
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100310 if (b->l == 0) {
311 /* let's realign the buffer to optimize I/O */
312 b->r = b->w = b->lr = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200313 }
314 else if (b->r > b->w) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100315 /* remaining space wraps at the end, with a moving limit */
316 if (max > b->data + b->size - b->r)
317 max = b->data + b->size - b->r;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100318 }
Willy Tarreau864e8252009-12-28 17:36:37 +0100319 /* else max is already OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200320
Willy Tarreau6996e152007-04-30 14:37:43 +0200321 /*
322 * 2. read the largest possible block
323 */
Willy Tarreaufc1daaf2010-01-15 10:26:13 +0100324 ret = recv(fd, b->r, max, 0);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200325
Willy Tarreau83749182007-04-15 20:56:27 +0200326 if (ret > 0) {
327 b->r += ret;
328 b->l += ret;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200329 cur_read += ret;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100330
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100331 /* if we're allowed to directly forward data, we must update send_max */
Willy Tarreau31971e52009-09-20 12:07:52 +0200332 if (b->to_forward && !(b->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
333 unsigned long fwd = ret;
334 if (b->to_forward != BUF_INFINITE_FORWARD) {
335 if (fwd > b->to_forward)
336 fwd = b->to_forward;
337 b->to_forward -= fwd;
338 }
339 b->send_max += fwd;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200340 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100341 }
Willy Tarreauf890dc92008-12-13 21:12:26 +0100342
Willy Tarreaub38903c2008-11-23 21:33:29 +0100343 if (fdtab[fd].state == FD_STCONN)
344 fdtab[fd].state = FD_STREADY;
345
Willy Tarreau3da77c52008-08-29 09:58:42 +0200346 b->flags |= BF_READ_PARTIAL;
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100347
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200348 if (b->r == b->data + b->size) {
Willy Tarreau83749182007-04-15 20:56:27 +0200349 b->r = b->data; /* wrap around the buffer */
350 }
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100351
Willy Tarreau83749182007-04-15 20:56:27 +0200352 b->total += ret;
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100353
Willy Tarreau7c3c5412009-12-13 15:53:05 +0100354 if (b->l >= buffer_max_len(b)) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200355 /* The buffer is now full, there's no point in going through
356 * the loop again.
357 */
Willy Tarreau8a7af602008-05-03 23:07:14 +0200358 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == b->l)) {
359 b->xfer_small = 0;
360 b->xfer_large++;
361 if (b->xfer_large >= 3) {
362 /* we call this buffer a fast streamer if it manages
363 * to be filled in one call 3 consecutive times.
364 */
365 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
366 //fputc('+', stderr);
367 }
368 }
369 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200370 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200371 b->xfer_large = 0;
372 b->xfer_small++;
373 if (b->xfer_small >= 2) {
374 /* if the buffer has been at least half full twice,
375 * we receive faster than we send, so at least it
376 * is not a "fast streamer".
377 */
378 b->flags &= ~BF_STREAMER_FAST;
379 //fputc('-', stderr);
380 }
381 }
382 else {
383 b->xfer_small = 0;
384 b->xfer_large = 0;
385 }
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100386
387 b->flags |= BF_FULL;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100388 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100389 break;
Willy Tarreau6996e152007-04-30 14:37:43 +0200390 }
391
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200392 /* if too many bytes were missing from last read, it means that
393 * it's pointless trying to read again because the system does
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100394 * not have them in buffers. BTW, if FD_POLL_HUP was present,
395 * it means that we have reached the end and that the connection
396 * is closed.
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200397 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100398 if (ret < max) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200399 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200400 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200401 b->xfer_large = 0;
402 b->xfer_small++;
403 if (b->xfer_small >= 3) {
404 /* we have read less than half of the buffer in
405 * one pass, and this happened at least 3 times.
406 * This is definitely not a streamer.
407 */
408 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
409 //fputc('!', stderr);
410 }
411 }
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200412 /* unfortunately, on level-triggered events, POLL_HUP
413 * is generally delivered AFTER the system buffer is
414 * empty, so this one might never match.
415 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100416 if (fdtab[fd].ev & FD_POLL_HUP)
417 goto out_shutdown_r;
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200418
419 /* if a streamer has read few data, it may be because we
420 * have exhausted system buffers. It's not worth trying
421 * again.
422 */
423 if (b->flags & BF_STREAMER)
424 break;
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200425
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100426 /* generally if we read something smaller than 1 or 2 MSS,
427 * it means that either we have exhausted the system's
428 * buffers (streamer or question-response protocol) or
429 * that the connection will be closed. Streamers are
430 * easily detected so we return early. For other cases,
431 * it's still better to perform a last read to be sure,
432 * because it may save one complete poll/read/wakeup cycle
433 * in case of shutdown.
434 */
435 if (ret < MIN_RET_FOR_READ_LOOP && b->flags & BF_STREAMER)
436 break;
437
438 /* if we read a large block smaller than what we requested,
439 * it's almost certain we'll never get anything more.
440 */
441 if (ret >= global.tune.recv_enough)
442 break;
443 }
Willy Tarreau83749182007-04-15 20:56:27 +0200444
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100445 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200446 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200447 }
448 else if (ret == 0) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200449 /* connection closed */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100450 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200451 }
Willy Tarreau9f195292007-04-15 21:26:58 +0200452 else if (errno == EAGAIN) {
453 /* Ignore EAGAIN but inform the poller that there is
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100454 * nothing to read left if we did not read much, ie
455 * less than what we were still expecting to read.
456 * But we may have done some work justifying to notify
457 * the task.
Willy Tarreau9f195292007-04-15 21:26:58 +0200458 */
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100459 if (cur_read < MIN_RET_FOR_READ_LOOP)
460 retval = 0;
Willy Tarreau83749182007-04-15 20:56:27 +0200461 break;
462 }
463 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200464 goto out_error;
Willy Tarreau83749182007-04-15 20:56:27 +0200465 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200466 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200467
Willy Tarreau6996e152007-04-30 14:37:43 +0200468 out_wakeup:
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100469 /* We might have some data the consumer is waiting for */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200470 if (!(b->flags & BF_OUT_EMPTY) && (b->cons->flags & SI_FL_WAIT_DATA)) {
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100471 int last_len = b->pipe ? b->pipe->data : 0;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100472
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100473 b->cons->chk_snd(b->cons);
474
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100475 /* check if the consumer has freed some space */
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100476 if (!(b->flags & BF_FULL) &&
477 (!last_len || !b->pipe || b->pipe->data < last_len))
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100478 si->flags &= ~SI_FL_WAIT_ROOM;
479 }
480
481 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100482 EV_FD_CLR(fd, DIR_RD);
483 b->rex = TICK_ETERNITY;
484 }
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200485 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 +0100486 b->rex = tick_add_ifset(now_ms, b->rto);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100487
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100488 /* we have to wake up if there is a special event or if we don't have
489 * any more data to forward.
490 */
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100491 if ((b->flags & (BF_READ_NULL|BF_READ_ERROR|BF_SHUTR|BF_READ_DONTWAIT)) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100492 !b->to_forward ||
493 si->state != SI_ST_EST ||
494 b->cons->state != SI_ST_EST ||
495 (si->flags & SI_FL_ERR))
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100496 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100497
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100498 b->flags &= ~BF_READ_DONTWAIT;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100499 fdtab[fd].ev &= ~FD_POLL_IN;
Willy Tarreau83749182007-04-15 20:56:27 +0200500 return retval;
Willy Tarreau6996e152007-04-30 14:37:43 +0200501
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100502 out_shutdown_r:
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200503 /* we received a shutdown */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100504 fdtab[fd].ev &= ~FD_POLL_HUP;
505 b->flags |= BF_READ_NULL;
Willy Tarreau520d95e2009-09-19 21:04:57 +0200506 if (b->flags & BF_AUTO_CLOSE)
Willy Tarreau418fd472009-09-06 21:37:23 +0200507 buffer_shutw_now(b);
Willy Tarreau99126c32008-11-27 10:30:51 +0100508 stream_sock_shutr(si);
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200509 goto out_wakeup;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100510
Willy Tarreau6996e152007-04-30 14:37:43 +0200511 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100512 /* Read error on the file descriptor. We mark the FD as STERROR so
513 * that we don't use it anymore. The error is reported to the stream
514 * interface which will take proper action. We must not perturbate the
515 * buffer because the stream interface wants to ensure transparent
516 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200517 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100518
Willy Tarreau6996e152007-04-30 14:37:43 +0200519 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100520 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100521 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100522 si->flags |= SI_FL_ERR;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100523 retval = 1;
524 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200525}
526
527
528/*
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100529 * This function is called to send buffer data to a stream socket.
530 * It returns -1 in case of unrecoverable error, 0 if the caller needs to poll
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100531 * before calling it again, otherwise 1. If a pipe was associated with the
532 * buffer and it empties it, it releases it as well.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200533 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100534static int stream_sock_write_loop(struct stream_interface *si, struct buffer *b)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100535{
Willy Tarreau83749182007-04-15 20:56:27 +0200536 int write_poll = MAX_WRITE_POLL_LOOPS;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100537 int retval = 1;
538 int ret, max;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200539
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100540#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100541 while (b->pipe) {
542 ret = splice(b->pipe->cons, NULL, si->fd, NULL, b->pipe->data,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100543 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
544 if (ret <= 0) {
545 if (ret == 0 || errno == EAGAIN) {
546 retval = 0;
547 return retval;
548 }
549 /* here we have another error */
550 retval = -1;
551 return retval;
552 }
553
554 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100555 b->pipe->data -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100556
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100557 if (!b->pipe->data) {
558 put_pipe(b->pipe);
559 b->pipe = NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100560 break;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100561 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100562
563 if (--write_poll <= 0)
564 return retval;
565 }
566
567 /* At this point, the pipe is empty, but we may still have data pending
568 * in the normal buffer.
569 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100570#endif
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200571 if (!b->send_max) {
572 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100573 return retval;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200574 }
Willy Tarreau83749182007-04-15 20:56:27 +0200575
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100576 /* when we're in this loop, we already know that there is no spliced
577 * data left, and that there are sendable buffered data.
578 */
Willy Tarreau6996e152007-04-30 14:37:43 +0200579 while (1) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100580 if (b->r > b->w)
Willy Tarreau83749182007-04-15 20:56:27 +0200581 max = b->r - b->w;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100582 else
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200583 max = b->data + b->size - b->w;
Willy Tarreau83749182007-04-15 20:56:27 +0200584
Willy Tarreauf890dc92008-12-13 21:12:26 +0100585 /* limit the amount of outgoing data if required */
586 if (max > b->send_max)
587 max = b->send_max;
588
Willy Tarreau6db06d32009-08-19 11:14:11 +0200589 /* check if we want to inform the kernel that we're interested in
590 * sending more data after this call. We want this if :
591 * - we're about to close after this last send and want to merge
592 * the ongoing FIN with the last segment.
593 * - we know we can't send everything at once and must get back
594 * here because of unaligned data
Willy Tarreaud38b53b2010-01-03 11:18:34 +0100595 * - there is still a finite amount of data to forward
Willy Tarreau6db06d32009-08-19 11:14:11 +0200596 * The test is arranged so that the most common case does only 2
597 * tests.
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200598 */
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200599
Willy Tarreauface8392010-01-03 11:37:54 +0100600 if (MSG_NOSIGNAL && MSG_MORE) {
Willy Tarreau6db06d32009-08-19 11:14:11 +0200601 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
602
Willy Tarreauface8392010-01-03 11:37:54 +0100603 if (((b->to_forward && b->to_forward != BUF_INFINITE_FORWARD) ||
Willy Tarreaud38b53b2010-01-03 11:18:34 +0100604 ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == BF_SHUTW_NOW && (max == b->send_max)) ||
Willy Tarreau6db06d32009-08-19 11:14:11 +0200605 (max != b->l && max != b->send_max))
606 && (fdtab[si->fd].flags & FD_FL_TCP)) {
607 send_flag |= MSG_MORE;
608 }
Willy Tarreauface8392010-01-03 11:37:54 +0100609 else if (b->flags & BF_EXPECT_MORE) {
610 /* it was forced on the buffer, this flag is one-shoot */
611 b->flags &= ~BF_EXPECT_MORE;
612 send_flag |= MSG_MORE;
613 }
Willy Tarreau6db06d32009-08-19 11:14:11 +0200614
Willy Tarreau2be39392010-01-03 17:24:51 +0100615 /* this flag has precedence over the rest */
616 if (b->flags & BF_SEND_DONTWAIT)
617 send_flag &= ~MSG_MORE;
618
Willy Tarreau6db06d32009-08-19 11:14:11 +0200619 ret = send(si->fd, b->w, max, send_flag);
Willy Tarreau2be39392010-01-03 17:24:51 +0100620
621 /* disable it only once everything has been sent */
622 if (ret == max && (b->flags & BF_SEND_DONTWAIT))
623 b->flags &= ~BF_SEND_DONTWAIT;
Willy Tarreaud6d06902009-08-19 11:22:33 +0200624 } else {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200625 int skerr;
626 socklen_t lskerr = sizeof(skerr);
627
Willy Tarreau87bed622009-03-08 22:25:28 +0100628 ret = getsockopt(si->fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
Willy Tarreauc6423482006-10-15 14:59:03 +0200629 if (ret == -1 || skerr)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200630 ret = -1;
631 else
Willy Tarreau87bed622009-03-08 22:25:28 +0100632 ret = send(si->fd, b->w, max, MSG_DONTWAIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200633 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200634
635 if (ret > 0) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100636 if (fdtab[si->fd].state == FD_STCONN)
637 fdtab[si->fd].state = FD_STREADY;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100638
Willy Tarreau3da77c52008-08-29 09:58:42 +0200639 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreaue393fe22008-08-16 22:18:07 +0200640
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100641 b->w += ret;
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200642 if (b->w == b->data + b->size)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100643 b->w = b->data; /* wrap around the buffer */
644
645 b->l -= ret;
Willy Tarreau7c3c5412009-12-13 15:53:05 +0100646 if (likely(b->l < buffer_max_len(b)))
Willy Tarreaue393fe22008-08-16 22:18:07 +0200647 b->flags &= ~BF_FULL;
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100648
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200649 if (likely(!b->l))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100650 /* optimize data alignment in the buffer */
651 b->r = b->w = b->lr = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200652
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100653 b->send_max -= ret;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200654 if (!b->send_max) {
655 if (likely(!b->pipe))
656 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100657 break;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200658 }
Willy Tarreau83749182007-04-15 20:56:27 +0200659
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200660 /* if the system buffer is full, don't insist */
661 if (ret < max)
662 break;
663
Willy Tarreau6996e152007-04-30 14:37:43 +0200664 if (--write_poll <= 0)
665 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200666 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200667 else if (ret == 0 || errno == EAGAIN) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100668 /* nothing written, we need to poll for write first */
Willy Tarreau83749182007-04-15 20:56:27 +0200669 retval = 0;
670 break;
671 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200672 else {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100673 /* bad, we got an error */
674 retval = -1;
675 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200676 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200677 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200678
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100679 return retval;
680}
Willy Tarreau6996e152007-04-30 14:37:43 +0200681
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100682
683/*
684 * This function is called on a write event from a stream socket.
685 * It returns 0 if the caller needs to poll before calling it again, otherwise
686 * non-zero.
687 */
688int stream_sock_write(int fd)
689{
690 struct stream_interface *si = fdtab[fd].owner;
691 struct buffer *b = si->ob;
692 int retval = 1;
693
694#ifdef DEBUG_FULL
695 fprintf(stderr,"stream_sock_write : fd=%d, owner=%p\n", fd, fdtab[fd].owner);
696#endif
697
698 retval = 1;
Willy Tarreau71543652009-07-14 19:55:05 +0200699 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100700 goto out_error;
701
Willy Tarreaud06e7112009-03-29 10:18:41 +0200702 /* we might have been called just after an asynchronous shutw */
703 if (b->flags & BF_SHUTW)
704 goto out_wakeup;
705
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200706 if (likely(!(b->flags & BF_OUT_EMPTY))) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100707 /* OK there are data waiting to be sent */
708 retval = stream_sock_write_loop(si, b);
709 if (retval < 0)
710 goto out_error;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200711 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100712 else {
713 /* may be we have received a connection acknowledgement in TCP mode without data */
714 if (likely(fdtab[fd].state == FD_STCONN)) {
715 /* We have no data to send to check the connection, and
716 * getsockopt() will not inform us whether the connection
717 * is still pending. So we'll reuse connect() to check the
718 * state of the socket. This has the advantage of givig us
719 * the following info :
720 * - error
721 * - connecting (EALREADY, EINPROGRESS)
722 * - connected (EISCONN, 0)
723 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200724 if ((connect(fd, fdinfo[fd].peeraddr, fdinfo[fd].peerlen) == 0))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100725 errno = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200726
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100727 if (errno == EALREADY || errno == EINPROGRESS) {
728 retval = 0;
729 goto out_may_wakeup;
730 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100731
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100732 if (errno && errno != EISCONN)
733 goto out_error;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200734
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100735 /* OK we just need to indicate that we got a connection
736 * and that we wrote nothing.
737 */
738 b->flags |= BF_WRITE_NULL;
739 fdtab[fd].state = FD_STREADY;
740 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200741
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100742 /* Funny, we were called to write something but there wasn't
743 * anything. We can get there, for example if we were woken up
744 * on a write event to finish the splice, but the send_max is 0
745 * so we cannot write anything from the buffer. Let's disable
746 * the write event and pretend we never came there.
747 */
748 }
749
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200750 if (b->flags & BF_OUT_EMPTY) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100751 /* the connection is established but we can't write. Either the
752 * buffer is empty, or we just refrain from sending because the
753 * send_max limit was reached. Maybe we just wrote the last
754 * chunk and need to close.
755 */
Willy Tarreau520d95e2009-09-19 21:04:57 +0200756 if (((b->flags & (BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == BF_SHUTW_NOW) &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100757 (si->state == SI_ST_EST)) {
758 stream_sock_shutw(si);
759 goto out_wakeup;
760 }
761
Willy Tarreau59454bf2009-09-20 11:13:40 +0200762 if ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
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 Tarreauba0b63d2009-09-20 08:09:44 +0200772 if ((b->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100773 b->wex = tick_add_ifset(now_ms, b->wto);
774
775 out_wakeup:
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200776 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100777 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200778 * during writes, we refresh it. We only do this if the
779 * interface is not configured for "independant streams",
780 * because for some applications it's better not to do this,
781 * for instance when continuously exchanging small amounts
782 * of data which can full the socket buffers long before a
783 * write timeout is detected.
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100784 */
785 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
786 }
787
788 /* the producer might be waiting for more room to store data */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200789 if (likely((b->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL|BF_DONT_READ)) == BF_WRITE_PARTIAL &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100790 (b->prod->flags & SI_FL_WAIT_ROOM)))
791 b->prod->chk_rcv(b->prod);
792
793 /* we have to wake up if there is a special event or if we don't have
794 * any more data to forward and it's not planned to send any more.
795 */
796 if (likely((b->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200797 ((b->flags & BF_OUT_EMPTY) && !b->to_forward) ||
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100798 si->state != SI_ST_EST ||
799 b->prod->state != SI_ST_EST))
800 task_wakeup(si->owner, TASK_WOKEN_IO);
801 }
802
803 fdtab[fd].ev &= ~FD_POLL_OUT;
804 return retval;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100805
Willy Tarreau6996e152007-04-30 14:37:43 +0200806 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100807 /* Write error on the file descriptor. We mark the FD as STERROR so
808 * that we don't use it anymore. The error is reported to the stream
809 * interface which will take proper action. We must not perturbate the
810 * buffer because the stream interface wants to ensure transparent
811 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200812 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100813
Willy Tarreau6996e152007-04-30 14:37:43 +0200814 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100815 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100816 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100817 si->flags |= SI_FL_ERR;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200818 task_wakeup(si->owner, TASK_WOKEN_IO);
819 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200820}
821
Willy Tarreau48adac52008-08-30 04:58:38 +0200822/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200823 * This function performs a shutdown-write on a stream interface in a connected or
824 * init state (it does nothing for other states). It either shuts the write side
Willy Tarreau99126c32008-11-27 10:30:51 +0100825 * or closes the file descriptor and marks itself as closed. The buffer flags are
Willy Tarreau7340ca52010-01-16 10:03:45 +0100826 * updated to reflect the new state. It does also close everything is the SI was
827 * marked as being in error state.
Willy Tarreau48adac52008-08-30 04:58:38 +0200828 */
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100829void stream_sock_shutw(struct stream_interface *si)
Willy Tarreau48adac52008-08-30 04:58:38 +0200830{
Willy Tarreau418fd472009-09-06 21:37:23 +0200831 si->ob->flags &= ~BF_SHUTW_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100832 if (si->ob->flags & BF_SHUTW)
833 return;
834 si->ob->flags |= BF_SHUTW;
835 si->ob->wex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100836 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau99126c32008-11-27 10:30:51 +0100837
Willy Tarreaub38903c2008-11-23 21:33:29 +0100838 switch (si->state) {
Willy Tarreaub38903c2008-11-23 21:33:29 +0100839 case SI_ST_EST:
Willy Tarreau720058c2009-07-14 19:21:50 +0200840 /* we have to shut before closing, otherwise some short messages
841 * may never leave the system, especially when there are remaining
842 * unread data in the socket input buffer, or when nolinger is set.
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100843 * However, if SI_FL_NOLINGER is explicitly set, we know there is
844 * no risk so we close both sides immediately.
Willy Tarreau720058c2009-07-14 19:21:50 +0200845 */
Willy Tarreau7340ca52010-01-16 10:03:45 +0100846 if (si->flags & SI_FL_ERR) {
847 /* quick close, the socket is already shut. Remove pending flags. */
848 si->flags &= ~SI_FL_NOLINGER;
849 } else if (si->flags & SI_FL_NOLINGER) {
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100850 si->flags &= ~SI_FL_NOLINGER;
851 setsockopt(si->fd, SOL_SOCKET, SO_LINGER,
852 (struct linger *) &nolinger, sizeof(struct linger));
853 } else {
854 EV_FD_CLR(si->fd, DIR_WR);
855 shutdown(si->fd, SHUT_WR);
Willy Tarreau720058c2009-07-14 19:21:50 +0200856
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100857 if (!(si->ib->flags & (BF_SHUTR|BF_DONT_READ)))
858 return;
859 }
Willy Tarreau5d707e12009-06-28 11:09:07 +0200860
Willy Tarreaub38903c2008-11-23 21:33:29 +0100861 /* fall through */
862 case SI_ST_CON:
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100863 /* we may have to close a pending connection, and mark the
864 * response buffer as shutr
865 */
Willy Tarreau48adac52008-08-30 04:58:38 +0200866 fd_delete(si->fd);
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100867 /* fall through */
868 case SI_ST_CER:
Willy Tarreau7f006512008-12-07 14:04:04 +0100869 si->state = SI_ST_DIS;
870 default:
Willy Tarreaud06e7112009-03-29 10:18:41 +0200871 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100872 si->ib->flags |= BF_SHUTR;
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100873 si->ib->rex = TICK_ETERNITY;
Willy Tarreau127334e2009-03-28 10:47:26 +0100874 si->exp = TICK_ETERNITY;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100875 return;
Willy Tarreau48adac52008-08-30 04:58:38 +0200876 }
Willy Tarreau48adac52008-08-30 04:58:38 +0200877}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200878
Willy Tarreau2d212792008-08-27 21:41:35 +0200879/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200880 * This function performs a shutdown-read on a stream interface in a connected or
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100881 * init state (it does nothing for other states). It either shuts the read side
Willy Tarreau99126c32008-11-27 10:30:51 +0100882 * or closes the file descriptor and marks itself as closed. The buffer flags are
883 * updated to reflect the new state.
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200884 */
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100885void stream_sock_shutr(struct stream_interface *si)
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200886{
Willy Tarreau418fd472009-09-06 21:37:23 +0200887 si->ib->flags &= ~BF_SHUTR_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100888 if (si->ib->flags & BF_SHUTR)
889 return;
890 si->ib->flags |= BF_SHUTR;
891 si->ib->rex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100892 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100893
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100894 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100895 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200896
Willy Tarreaucff64112008-11-03 06:26:53 +0100897 if (si->ob->flags & BF_SHUTW) {
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200898 fd_delete(si->fd);
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100899 si->state = SI_ST_DIS;
Willy Tarreau127334e2009-03-28 10:47:26 +0100900 si->exp = TICK_ETERNITY;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100901 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200902 }
903 EV_FD_CLR(si->fd, DIR_RD);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100904 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200905}
906
907/*
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200908 * Updates a connected stream_sock file descriptor status and timeouts
909 * according to the buffers' flags. It should only be called once after the
910 * buffer flags have settled down, and before they are cleared. It doesn't
911 * harm to call it as often as desired (it just slightly hurts performance).
912 */
Willy Tarreaub0253252008-11-30 21:37:12 +0100913void stream_sock_data_finish(struct stream_interface *si)
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200914{
Willy Tarreaub0253252008-11-30 21:37:12 +0100915 struct buffer *ib = si->ib;
916 struct buffer *ob = si->ob;
917 int fd = si->fd;
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200918
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200919 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 +0200920 now_ms, __FUNCTION__,
921 fd, fdtab[fd].owner,
922 ib, ob,
923 ib->rex, ob->wex,
924 ib->flags, ob->flags,
Willy Tarreaub0253252008-11-30 21:37:12 +0100925 ib->l, ob->l, si->state);
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200926
927 /* Check if we need to close the read side */
928 if (!(ib->flags & BF_SHUTR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200929 /* Read not closed, update FD status and timeout for reads */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200930 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200931 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200932 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100933 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau2d212792008-08-27 21:41:35 +0200934 EV_FD_COND_C(fd, DIR_RD);
935 ib->rex = TICK_ETERNITY;
936 }
937 else {
938 /* (re)start reading and update timeout. Note: we don't recompute the timeout
939 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200940 * update it if is was not yet set. The stream socket handler will already
941 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200942 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100943 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau2d212792008-08-27 21:41:35 +0200944 EV_FD_COND_S(fd, DIR_RD);
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200945 if (!(ib->flags & (BF_READ_NOEXP|BF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau2d212792008-08-27 21:41:35 +0200946 ib->rex = tick_add_ifset(now_ms, ib->rto);
947 }
948 }
949
950 /* Check if we need to close the write side */
951 if (!(ob->flags & BF_SHUTW)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200952 /* Write not closed, update FD status and timeout for writes */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200953 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200954 /* stop writing */
Willy Tarreau59454bf2009-09-20 11:13:40 +0200955 if ((ob->flags & (BF_FULL|BF_HIJACK|BF_SHUTW_NOW)) == 0)
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100956 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau2d212792008-08-27 21:41:35 +0200957 EV_FD_COND_C(fd, DIR_WR);
958 ob->wex = TICK_ETERNITY;
959 }
960 else {
961 /* (re)start writing and update timeout. Note: we don't recompute the timeout
962 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200963 * update it if is was not yet set. The stream socket handler will already
964 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200965 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100966 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau2d212792008-08-27 21:41:35 +0200967 EV_FD_COND_S(fd, DIR_WR);
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200968 if (!tick_isset(ob->wex)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200969 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200970 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200971 /* Note: depending on the protocol, we don't know if we're waiting
972 * for incoming data or not. So in order to prevent the socket from
973 * expiring read timeouts during writes, we refresh the read timeout,
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200974 * except if it was already infinite or if we have explicitly setup
975 * independant streams.
Willy Tarreau2d212792008-08-27 21:41:35 +0200976 */
Willy Tarreaud06e7112009-03-29 10:18:41 +0200977 ib->rex = tick_add_ifset(now_ms, ib->rto);
Willy Tarreau2d212792008-08-27 21:41:35 +0200978 }
979 }
980 }
981 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200982}
983
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100984/* This function is used for inter-stream-interface calls. It is called by the
985 * consumer to inform the producer side that it may be interested in checking
986 * for free space in the buffer. Note that it intentionally does not update
987 * timeouts, so that we can still check them later at wake-up.
988 */
989void stream_sock_chk_rcv(struct stream_interface *si)
990{
991 struct buffer *ib = si->ib;
992
993 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",
994 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +0000995 si->fd, fdtab[si->fd].owner,
996 ib, si->ob,
997 ib->rex, si->ob->wex,
998 ib->flags, si->ob->flags,
999 ib->l, si->ob->l, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001000
1001 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
1002 return;
1003
Willy Tarreauf1ba4b32009-10-17 14:37:52 +02001004 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001005 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +02001006 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001007 si->flags |= SI_FL_WAIT_ROOM;
1008 EV_FD_COND_C(si->fd, DIR_RD);
1009 }
1010 else {
1011 /* (re)start reading */
1012 si->flags &= ~SI_FL_WAIT_ROOM;
1013 EV_FD_COND_S(si->fd, DIR_RD);
1014 }
1015}
1016
1017
1018/* This function is used for inter-stream-interface calls. It is called by the
1019 * producer to inform the consumer side that it may be interested in checking
1020 * for data in the buffer. Note that it intentionally does not update timeouts,
1021 * so that we can still check them later at wake-up.
1022 */
1023void stream_sock_chk_snd(struct stream_interface *si)
1024{
1025 struct buffer *ob = si->ob;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001026 int retval;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001027
1028 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",
1029 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +00001030 si->fd, fdtab[si->fd].owner,
1031 si->ib, ob,
1032 si->ib->rex, ob->wex,
1033 si->ib->flags, ob->flags,
1034 si->ib->l, ob->l, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001035
1036 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
1037 return;
1038
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001039 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
1040 (fdtab[si->fd].ev & FD_POLL_OUT) || /* we'll be called anyway */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001041 (ob->flags & BF_OUT_EMPTY)) /* called with nothing to send ! */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001042 return;
1043
1044 retval = stream_sock_write_loop(si, ob);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001045 /* here, we have :
1046 * retval < 0 if an error was encountered during write.
1047 * retval = 0 if we can't write anymore without polling
1048 * retval = 1 if we're invited to come back when desired
1049 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001050 if (retval < 0) {
1051 /* Write error on the file descriptor. We mark the FD as STERROR so
1052 * that we don't use it anymore and we notify the task.
1053 */
1054 fdtab[si->fd].state = FD_STERROR;
1055 fdtab[si->fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +01001056 EV_FD_REM(si->fd);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001057 si->flags |= SI_FL_ERR;
1058 goto out_wakeup;
1059 }
1060
Willy Tarreauc54aef32009-07-27 20:08:06 +02001061 /* OK, so now we know that retval >= 0 means that some data might have
1062 * been sent, and that we may have to poll first. We have to do that
1063 * too if the buffer is not empty.
1064 */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001065 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001066 /* the connection is established but we can't write. Either the
1067 * buffer is empty, or we just refrain from sending because the
1068 * send_max limit was reached. Maybe we just wrote the last
1069 * chunk and need to close.
1070 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02001071 if (((ob->flags & (BF_SHUTW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTW_NOW)) ==
1072 (BF_AUTO_CLOSE|BF_SHUTW_NOW)) &&
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001073 (si->state == SI_ST_EST)) {
1074 stream_sock_shutw(si);
1075 goto out_wakeup;
1076 }
Willy Tarreaud06e7112009-03-29 10:18:41 +02001077
Willy Tarreau59454bf2009-09-20 11:13:40 +02001078 if ((ob->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001079 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001080 ob->wex = TICK_ETERNITY;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001081 }
1082 else {
Willy Tarreauc54aef32009-07-27 20:08:06 +02001083 /* Otherwise there are remaining data to be sent in the buffer,
1084 * which means we have to poll before doing so.
1085 */
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001086 EV_FD_COND_S(si->fd, DIR_WR);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001087 si->flags &= ~SI_FL_WAIT_DATA;
1088 if (!tick_isset(ob->wex))
1089 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001090 }
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001091
Willy Tarreauc9619462009-03-09 22:40:57 +01001092 if (likely(ob->flags & BF_WRITE_ACTIVITY)) {
1093 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001094 if ((ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreauc9619462009-03-09 22:40:57 +01001095 ob->wex = tick_add_ifset(now_ms, ob->wto);
1096
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001097 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreauc9619462009-03-09 22:40:57 +01001098 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001099 * during writes, we refresh it. We only do this if the
1100 * interface is not configured for "independant streams",
1101 * because for some applications it's better not to do this,
1102 * for instance when continuously exchanging small amounts
1103 * of data which can full the socket buffers long before a
1104 * write timeout is detected.
Willy Tarreauc9619462009-03-09 22:40:57 +01001105 */
1106 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
1107 }
1108 }
1109
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001110 /* in case of special condition (error, shutdown, end of write...), we
1111 * have to notify the task.
1112 */
1113 if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001114 ((ob->flags & BF_OUT_EMPTY) && !ob->to_forward) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001115 si->state != SI_ST_EST)) {
1116 out_wakeup:
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001117 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
1118 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001119 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001120}
1121
Willy Tarreaubaaee002006-06-26 02:48:02 +02001122
1123/*
1124 * Local variables:
1125 * c-indent-level: 8
1126 * c-basic-offset: 8
1127 * End:
1128 */