blob: c5cd1e5a883c5ac4969f1502f766da961dea979c [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Functions operating on SOCK_STREAM and buffers.
3 *
Willy Tarreaub22e55b2011-03-20 10:16:46 +01004 * Copyright 2000-2011 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/fd.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020034#include <proto/freq_ctr.h>
Willy Tarreaub22e55b2011-03-20 10:16:46 +010035#include <proto/frontend.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020036#include <proto/log.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010037#include <proto/pipe.h>
Willy Tarreaufe598a72010-09-21 21:48:23 +020038#include <proto/protocols.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039#include <proto/stream_sock.h>
40#include <proto/task.h>
41
Willy Tarreau5bd8c372009-01-19 00:32:22 +010042#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043
Willy Tarreau6b4aad42009-01-18 21:59:13 +010044/* On recent Linux kernels, the splice() syscall may be used for faster data copy.
45 * But it's not always defined on some OS versions, and it even happens that some
46 * definitions are wrong with some glibc due to an offset bug in syscall().
47 */
48
49#if defined(CONFIG_HAP_LINUX_SPLICE)
50#include <unistd.h>
51#include <sys/syscall.h>
52
53#ifndef SPLICE_F_MOVE
54#define SPLICE_F_MOVE 0x1
55#endif
56
57#ifndef SPLICE_F_NONBLOCK
58#define SPLICE_F_NONBLOCK 0x2
59#endif
60
61#ifndef SPLICE_F_MORE
62#define SPLICE_F_MORE 0x4
63#endif
64
65#ifndef __NR_splice
66#if defined(__powerpc__) || defined(__powerpc64__)
67#define __NR_splice 283
68#elif defined(__sparc__) || defined(__sparc64__)
69#define __NR_splice 232
70#elif defined(__x86_64__)
71#define __NR_splice 275
72#elif defined(__alpha__)
73#define __NR_splice 468
74#elif defined (__i386__)
75#define __NR_splice 313
76#else
77#warning unsupported architecture, guessing __NR_splice=313 like x86...
78#define __NR_splice 313
79#endif /* $arch */
80
Willy Tarreau48d84c12010-11-14 17:09:33 +010081#if defined(CONFIG_HAP_LINUX_VSYSCALL) && defined(__linux__) && defined(__i386__)
82/* the syscall is redefined somewhere else */
83extern int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out, size_t len, unsigned long flags);
84#else
Willy Tarreau6b4aad42009-01-18 21:59:13 +010085_syscall6(int, splice, int, fdin, loff_t *, off_in, int, fdout, loff_t *, off_out, size_t, len, unsigned long, flags)
Willy Tarreau48d84c12010-11-14 17:09:33 +010086#endif
Willy Tarreau6b4aad42009-01-18 21:59:13 +010087#endif /* __NR_splice */
Willy Tarreau5bd8c372009-01-19 00:32:22 +010088
89/* A pipe contains 16 segments max, and it's common to see segments of 1448 bytes
90 * because of timestamps. Use this as a hint for not looping on splice().
91 */
92#define SPLICE_FULL_HINT 16*1448
93
Willy Tarreaua9de3332009-11-28 07:47:10 +010094/* how many data we attempt to splice at once when the buffer is configured for
95 * infinite forwarding */
96#define MAX_SPLICE_AT_ONCE (1<<30)
97
Willy Tarreau5bd8c372009-01-19 00:32:22 +010098/* Returns :
99 * -1 if splice is not possible or not possible anymore and we must switch to
100 * user-land copy (eg: to_forward reached)
101 * 0 when we know that polling is required to get more data (EAGAIN)
102 * 1 for all other cases (we can safely try again, or if an activity has been
103 * detected (DATA/NULL/ERR))
104 * Sets :
105 * BF_READ_NULL
106 * BF_READ_PARTIAL
107 * BF_WRITE_PARTIAL (during copy)
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200108 * BF_OUT_EMPTY (during copy)
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100109 * SI_FL_ERR
110 * SI_FL_WAIT_ROOM
111 * (SI_FL_WAIT_RECV)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100112 *
113 * This function automatically allocates a pipe from the pipe pool. It also
114 * carefully ensures to clear b->pipe whenever it leaves the pipe empty.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100115 */
116static int stream_sock_splice_in(struct buffer *b, struct stream_interface *si)
117{
118 int fd = si->fd;
Willy Tarreau31971e52009-09-20 12:07:52 +0200119 int ret;
120 unsigned long max;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100121 int retval = 1;
122
123 if (!b->to_forward)
124 return -1;
125
126 if (!(b->flags & BF_KERN_SPLICING))
127 return -1;
128
129 if (b->l) {
130 /* We're embarrassed, there are already data pending in
131 * the buffer and we don't want to have them at two
132 * locations at a time. Let's indicate we need some
133 * place and ask the consumer to hurry.
134 */
135 si->flags |= SI_FL_WAIT_ROOM;
136 EV_FD_CLR(fd, DIR_RD);
137 b->rex = TICK_ETERNITY;
138 b->cons->chk_snd(b->cons);
139 return 1;
140 }
141
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100142 if (unlikely(b->pipe == NULL)) {
143 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100144 b->flags &= ~BF_KERN_SPLICING;
145 return -1;
146 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100147 }
148
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100149 /* At this point, b->pipe is valid */
150
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100151 while (1) {
Willy Tarreaua9de3332009-11-28 07:47:10 +0100152 if (b->to_forward == BUF_INFINITE_FORWARD)
153 max = MAX_SPLICE_AT_ONCE;
154 else
155 max = b->to_forward;
156
Willy Tarreau31971e52009-09-20 12:07:52 +0200157 if (!max) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100158 /* It looks like the buffer + the pipe already contain
159 * the maximum amount of data to be transferred. Try to
160 * send those data immediately on the other side if it
161 * is currently waiting.
162 */
163 retval = -1; /* end of forwarding */
164 break;
165 }
166
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100167 ret = splice(fd, NULL, b->pipe->prod, NULL, max,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100168 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
169
170 if (ret <= 0) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100171 if (ret == 0) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100172 /* connection closed. This is only detected by
173 * recent kernels (>= 2.6.27.13).
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100174 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100175 b->flags |= BF_READ_NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100176 retval = 1; /* no need for further polling */
177 break;
178 }
179
180 if (errno == EAGAIN) {
181 /* there are two reasons for EAGAIN :
182 * - nothing in the socket buffer (standard)
183 * - pipe is full
Willy Tarreau98b306b2009-01-25 11:11:32 +0100184 * - the connection is closed (kernel < 2.6.27.13)
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100185 * Since we don't know if pipe is full, we'll
186 * stop if the pipe is not empty. Anyway, we
187 * will almost always fill/empty the pipe.
188 */
189
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100190 if (b->pipe->data) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100191 si->flags |= SI_FL_WAIT_ROOM;
192 retval = 1;
193 break;
194 }
195
Willy Tarreau98b306b2009-01-25 11:11:32 +0100196 /* We don't know if the connection was closed.
197 * But if we're called upon POLLIN with an empty
198 * pipe and get EAGAIN, it is suspect enought to
199 * try to fall back to the normal recv scheme
200 * which will be able to deal with the situation.
201 */
202 retval = -1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100203 break;
204 }
Willy Tarreaudc340a92009-06-28 23:10:19 +0200205
Willy Tarreaua9de3332009-11-28 07:47:10 +0100206 if (errno == ENOSYS || errno == EINVAL) {
Willy Tarreaudc340a92009-06-28 23:10:19 +0200207 /* splice not supported on this end, disable it */
208 b->flags &= ~BF_KERN_SPLICING;
209 si->flags &= ~SI_FL_CAP_SPLICE;
210 put_pipe(b->pipe);
211 b->pipe = NULL;
212 return -1;
213 }
214
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100215 /* here we have another error */
216 si->flags |= SI_FL_ERR;
217 retval = 1;
218 break;
219 } /* ret <= 0 */
220
Willy Tarreau31971e52009-09-20 12:07:52 +0200221 if (b->to_forward != BUF_INFINITE_FORWARD)
222 b->to_forward -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100223 b->total += ret;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100224 b->pipe->data += ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100225 b->flags |= BF_READ_PARTIAL;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200226 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100227
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100228 if (b->pipe->data >= SPLICE_FULL_HINT ||
229 ret >= global.tune.recv_enough) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100230 /* We've read enough of it for this time. */
231 retval = 1;
232 break;
233 }
234 } /* while */
235
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100236 if (unlikely(!b->pipe->data)) {
237 put_pipe(b->pipe);
238 b->pipe = NULL;
239 }
240
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100241 return retval;
242}
243
Willy Tarreau6b4aad42009-01-18 21:59:13 +0100244#endif /* CONFIG_HAP_LINUX_SPLICE */
245
246
Willy Tarreaubaaee002006-06-26 02:48:02 +0200247/*
Willy Tarreaud7971282006-07-29 18:36:34 +0200248 * this function is called on a read event from a stream socket.
Willy Tarreau83749182007-04-15 20:56:27 +0200249 * It returns 0 if we have a high confidence that we will not be
250 * able to read more data without polling first. Returns non-zero
251 * otherwise.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200252 */
Willy Tarreaud7971282006-07-29 18:36:34 +0200253int stream_sock_read(int fd) {
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200254 struct stream_interface *si = fdtab[fd].owner;
Willy Tarreau48adac52008-08-30 04:58:38 +0200255 struct buffer *b = si->ib;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200256 int ret, max, retval, cur_read;
Willy Tarreaub8949f12007-03-23 22:39:59 +0100257 int read_poll = MAX_READ_POLL_LOOPS;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200258
259#ifdef DEBUG_FULL
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100260 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 +0200261#endif
262
Willy Tarreau83749182007-04-15 20:56:27 +0200263 retval = 1;
264
Willy Tarreau71543652009-07-14 19:55:05 +0200265 /* stop immediately on errors. Note that we DON'T want to stop on
266 * POLL_ERR, as the poller might report a write error while there
267 * are still data available in the recv buffer. This typically
268 * happens when we send too large a request to a backend server
269 * which rejects it before reading it all.
270 */
271 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau6996e152007-04-30 14:37:43 +0200272 goto out_error;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100273
274 /* stop here if we reached the end of data */
275 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
276 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200277
Willy Tarreaud06e7112009-03-29 10:18:41 +0200278 /* maybe we were called immediately after an asynchronous shutr */
279 if (b->flags & BF_SHUTR)
280 goto out_wakeup;
281
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100282#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau14acc702011-05-11 20:47:24 +0200283 if (b->to_forward >= MIN_SPLICE_FORWARD && b->flags & BF_KERN_SPLICING) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100284
285 /* Under Linux, if FD_POLL_HUP is set, we have reached the end.
286 * Since older splice() implementations were buggy and returned
287 * EAGAIN on end of read, let's bypass the call to splice() now.
288 */
289 if (fdtab[fd].ev & FD_POLL_HUP)
290 goto out_shutdown_r;
291
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100292 retval = stream_sock_splice_in(b, si);
293
294 if (retval >= 0) {
295 if (si->flags & SI_FL_ERR)
296 goto out_error;
297 if (b->flags & BF_READ_NULL)
298 goto out_shutdown_r;
299 goto out_wakeup;
300 }
301 /* splice not possible (anymore), let's go on on standard copy */
302 }
303#endif
Willy Tarreau8a7af602008-05-03 23:07:14 +0200304 cur_read = 0;
Willy Tarreau6996e152007-04-30 14:37:43 +0200305 while (1) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100306 max = buffer_max_len(b) - b->l;
307
308 if (max <= 0) {
309 b->flags |= BF_FULL;
310 si->flags |= SI_FL_WAIT_ROOM;
311 break;
312 }
313
Willy Tarreau6996e152007-04-30 14:37:43 +0200314 /*
315 * 1. compute the maximum block size we can read at once.
316 */
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100317 if (b->l == 0) {
318 /* let's realign the buffer to optimize I/O */
319 b->r = b->w = b->lr = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200320 }
321 else if (b->r > b->w) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100322 /* remaining space wraps at the end, with a moving limit */
323 if (max > b->data + b->size - b->r)
324 max = b->data + b->size - b->r;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100325 }
Willy Tarreau864e8252009-12-28 17:36:37 +0100326 /* else max is already OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200327
Willy Tarreau6996e152007-04-30 14:37:43 +0200328 /*
329 * 2. read the largest possible block
330 */
Willy Tarreaufc1daaf2010-01-15 10:26:13 +0100331 ret = recv(fd, b->r, max, 0);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200332
Willy Tarreau83749182007-04-15 20:56:27 +0200333 if (ret > 0) {
334 b->r += ret;
335 b->l += ret;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200336 cur_read += ret;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100337
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100338 /* if we're allowed to directly forward data, we must update send_max */
Willy Tarreau31971e52009-09-20 12:07:52 +0200339 if (b->to_forward && !(b->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
340 unsigned long fwd = ret;
341 if (b->to_forward != BUF_INFINITE_FORWARD) {
342 if (fwd > b->to_forward)
343 fwd = b->to_forward;
344 b->to_forward -= fwd;
345 }
346 b->send_max += fwd;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200347 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100348 }
Willy Tarreauf890dc92008-12-13 21:12:26 +0100349
Willy Tarreaub38903c2008-11-23 21:33:29 +0100350 if (fdtab[fd].state == FD_STCONN)
351 fdtab[fd].state = FD_STREADY;
352
Willy Tarreau3da77c52008-08-29 09:58:42 +0200353 b->flags |= BF_READ_PARTIAL;
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100354
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200355 if (b->r == b->data + b->size) {
Willy Tarreau83749182007-04-15 20:56:27 +0200356 b->r = b->data; /* wrap around the buffer */
357 }
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100358
Willy Tarreau83749182007-04-15 20:56:27 +0200359 b->total += ret;
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100360
Willy Tarreau7c3c5412009-12-13 15:53:05 +0100361 if (b->l >= buffer_max_len(b)) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200362 /* The buffer is now full, there's no point in going through
363 * the loop again.
364 */
Willy Tarreau8a7af602008-05-03 23:07:14 +0200365 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == b->l)) {
366 b->xfer_small = 0;
367 b->xfer_large++;
368 if (b->xfer_large >= 3) {
369 /* we call this buffer a fast streamer if it manages
370 * to be filled in one call 3 consecutive times.
371 */
372 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
373 //fputc('+', stderr);
374 }
375 }
376 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200377 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200378 b->xfer_large = 0;
379 b->xfer_small++;
380 if (b->xfer_small >= 2) {
381 /* if the buffer has been at least half full twice,
382 * we receive faster than we send, so at least it
383 * is not a "fast streamer".
384 */
385 b->flags &= ~BF_STREAMER_FAST;
386 //fputc('-', stderr);
387 }
388 }
389 else {
390 b->xfer_small = 0;
391 b->xfer_large = 0;
392 }
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100393
394 b->flags |= BF_FULL;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100395 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100396 break;
Willy Tarreau6996e152007-04-30 14:37:43 +0200397 }
398
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200399 /* if too many bytes were missing from last read, it means that
400 * it's pointless trying to read again because the system does
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100401 * not have them in buffers. BTW, if FD_POLL_HUP was present,
402 * it means that we have reached the end and that the connection
403 * is closed.
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200404 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100405 if (ret < max) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200406 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200407 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200408 b->xfer_large = 0;
409 b->xfer_small++;
410 if (b->xfer_small >= 3) {
411 /* we have read less than half of the buffer in
412 * one pass, and this happened at least 3 times.
413 * This is definitely not a streamer.
414 */
415 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
416 //fputc('!', stderr);
417 }
418 }
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200419 /* unfortunately, on level-triggered events, POLL_HUP
420 * is generally delivered AFTER the system buffer is
421 * empty, so this one might never match.
422 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100423 if (fdtab[fd].ev & FD_POLL_HUP)
424 goto out_shutdown_r;
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200425
426 /* if a streamer has read few data, it may be because we
427 * have exhausted system buffers. It's not worth trying
428 * again.
429 */
430 if (b->flags & BF_STREAMER)
431 break;
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200432
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100433 /* generally if we read something smaller than 1 or 2 MSS,
434 * it means that either we have exhausted the system's
435 * buffers (streamer or question-response protocol) or
436 * that the connection will be closed. Streamers are
437 * easily detected so we return early. For other cases,
438 * it's still better to perform a last read to be sure,
439 * because it may save one complete poll/read/wakeup cycle
440 * in case of shutdown.
441 */
442 if (ret < MIN_RET_FOR_READ_LOOP && b->flags & BF_STREAMER)
443 break;
444
445 /* if we read a large block smaller than what we requested,
446 * it's almost certain we'll never get anything more.
447 */
448 if (ret >= global.tune.recv_enough)
449 break;
450 }
Willy Tarreau83749182007-04-15 20:56:27 +0200451
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100452 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200453 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200454 }
455 else if (ret == 0) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200456 /* connection closed */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100457 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200458 }
Willy Tarreau9f195292007-04-15 21:26:58 +0200459 else if (errno == EAGAIN) {
460 /* Ignore EAGAIN but inform the poller that there is
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100461 * nothing to read left if we did not read much, ie
462 * less than what we were still expecting to read.
463 * But we may have done some work justifying to notify
464 * the task.
Willy Tarreau9f195292007-04-15 21:26:58 +0200465 */
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100466 if (cur_read < MIN_RET_FOR_READ_LOOP)
467 retval = 0;
Willy Tarreau83749182007-04-15 20:56:27 +0200468 break;
469 }
470 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200471 goto out_error;
Willy Tarreau83749182007-04-15 20:56:27 +0200472 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200473 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200474
Willy Tarreau6996e152007-04-30 14:37:43 +0200475 out_wakeup:
Willy Tarreau22be90b2011-05-11 20:32:36 +0200476 /* We might have some data the consumer is waiting for.
477 * We can do fast-forwarding, but we avoid doing this for partial
478 * buffers, because it is very likely that it will be done again
479 * immediately afterwards once the following data is parsed (eg:
480 * HTTP chunking).
481 */
482 if ((b->pipe || b->send_max == b->l)
483 && (b->cons->flags & SI_FL_WAIT_DATA)) {
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100484 int last_len = b->pipe ? b->pipe->data : 0;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100485
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100486 b->cons->chk_snd(b->cons);
487
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100488 /* check if the consumer has freed some space */
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100489 if (!(b->flags & BF_FULL) &&
490 (!last_len || !b->pipe || b->pipe->data < last_len))
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100491 si->flags &= ~SI_FL_WAIT_ROOM;
492 }
493
494 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100495 EV_FD_CLR(fd, DIR_RD);
496 b->rex = TICK_ETERNITY;
497 }
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200498 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 +0100499 b->rex = tick_add_ifset(now_ms, b->rto);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100500
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100501 /* we have to wake up if there is a special event or if we don't have
502 * any more data to forward.
503 */
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200504 if ((b->flags & (BF_READ_NULL|BF_READ_ERROR)) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100505 si->state != SI_ST_EST ||
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200506 (si->flags & SI_FL_ERR) ||
507 ((b->flags & BF_READ_PARTIAL) && (!b->to_forward || b->cons->state != SI_ST_EST)))
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100508 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200509
510 if (b->flags & BF_READ_ACTIVITY)
511 b->flags &= ~BF_READ_DONTWAIT;
512
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100513 fdtab[fd].ev &= ~FD_POLL_IN;
Willy Tarreau83749182007-04-15 20:56:27 +0200514 return retval;
Willy Tarreau6996e152007-04-30 14:37:43 +0200515
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100516 out_shutdown_r:
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200517 /* we received a shutdown */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100518 fdtab[fd].ev &= ~FD_POLL_HUP;
519 b->flags |= BF_READ_NULL;
Willy Tarreau520d95e2009-09-19 21:04:57 +0200520 if (b->flags & BF_AUTO_CLOSE)
Willy Tarreau418fd472009-09-06 21:37:23 +0200521 buffer_shutw_now(b);
Willy Tarreau99126c32008-11-27 10:30:51 +0100522 stream_sock_shutr(si);
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200523 goto out_wakeup;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100524
Willy Tarreau6996e152007-04-30 14:37:43 +0200525 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100526 /* Read error on the file descriptor. We mark the FD as STERROR so
527 * that we don't use it anymore. The error is reported to the stream
528 * interface which will take proper action. We must not perturbate the
529 * buffer because the stream interface wants to ensure transparent
530 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200531 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100532
Willy Tarreau6996e152007-04-30 14:37:43 +0200533 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100534 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100535 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100536 si->flags |= SI_FL_ERR;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100537 retval = 1;
538 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200539}
540
541
542/*
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100543 * This function is called to send buffer data to a stream socket.
544 * It returns -1 in case of unrecoverable error, 0 if the caller needs to poll
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100545 * before calling it again, otherwise 1. If a pipe was associated with the
546 * buffer and it empties it, it releases it as well.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200547 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100548static int stream_sock_write_loop(struct stream_interface *si, struct buffer *b)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100549{
Willy Tarreau83749182007-04-15 20:56:27 +0200550 int write_poll = MAX_WRITE_POLL_LOOPS;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100551 int retval = 1;
552 int ret, max;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200553
Willy Tarreaub22e55b2011-03-20 10:16:46 +0100554 if (unlikely(si->send_proxy_ofs)) {
555 /* The target server expects a PROXY line to be sent first.
556 * If the send_proxy_ofs is negative, it corresponds to the
557 * offset to start sending from then end of the proxy string
558 * (which is recomputed every time since it's constant). If
559 * it is positive, it means we have to send from the start.
560 */
561 ret = make_proxy_line(trash, sizeof(trash),
562 &b->prod->addr.c.from, &b->prod->addr.c.to);
563 if (!ret)
564 return -1;
565
566 if (si->send_proxy_ofs > 0)
567 si->send_proxy_ofs = -ret; /* first call */
568
569 /* we have to send trash from (ret+sp for -sp bytes) */
570 ret = send(si->fd, trash + ret + si->send_proxy_ofs, -si->send_proxy_ofs,
571 (b->flags & BF_OUT_EMPTY) ? 0 : MSG_MORE);
572 if (ret > 0) {
573 if (fdtab[si->fd].state == FD_STCONN)
574 fdtab[si->fd].state = FD_STREADY;
575
576 si->send_proxy_ofs += ret; /* becomes zero once complete */
577 b->flags |= BF_WRITE_NULL; /* connect() succeeded */
578 }
579 else if (ret == 0 || errno == EAGAIN) {
580 /* nothing written, we need to poll for write first */
581 return 0;
582 }
583 else {
584 /* bad, we got an error */
585 return -1;
586 }
587 }
588
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100589#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100590 while (b->pipe) {
591 ret = splice(b->pipe->cons, NULL, si->fd, NULL, b->pipe->data,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100592 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
593 if (ret <= 0) {
594 if (ret == 0 || errno == EAGAIN) {
595 retval = 0;
596 return retval;
597 }
598 /* here we have another error */
599 retval = -1;
600 return retval;
601 }
602
603 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100604 b->pipe->data -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100605
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100606 if (!b->pipe->data) {
607 put_pipe(b->pipe);
608 b->pipe = NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100609 break;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100610 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100611
612 if (--write_poll <= 0)
613 return retval;
614 }
615
616 /* At this point, the pipe is empty, but we may still have data pending
617 * in the normal buffer.
618 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100619#endif
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200620 if (!b->send_max) {
621 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100622 return retval;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200623 }
Willy Tarreau83749182007-04-15 20:56:27 +0200624
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100625 /* when we're in this loop, we already know that there is no spliced
626 * data left, and that there are sendable buffered data.
627 */
Willy Tarreau6996e152007-04-30 14:37:43 +0200628 while (1) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100629 if (b->r > b->w)
Willy Tarreau83749182007-04-15 20:56:27 +0200630 max = b->r - b->w;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100631 else
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200632 max = b->data + b->size - b->w;
Willy Tarreau83749182007-04-15 20:56:27 +0200633
Willy Tarreauf890dc92008-12-13 21:12:26 +0100634 /* limit the amount of outgoing data if required */
635 if (max > b->send_max)
636 max = b->send_max;
637
Willy Tarreau6db06d32009-08-19 11:14:11 +0200638 /* check if we want to inform the kernel that we're interested in
639 * sending more data after this call. We want this if :
640 * - we're about to close after this last send and want to merge
641 * the ongoing FIN with the last segment.
642 * - we know we can't send everything at once and must get back
643 * here because of unaligned data
Willy Tarreaud38b53b2010-01-03 11:18:34 +0100644 * - there is still a finite amount of data to forward
Willy Tarreau6db06d32009-08-19 11:14:11 +0200645 * The test is arranged so that the most common case does only 2
646 * tests.
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200647 */
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200648
Willy Tarreauface8392010-01-03 11:37:54 +0100649 if (MSG_NOSIGNAL && MSG_MORE) {
Willy Tarreau6db06d32009-08-19 11:14:11 +0200650 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
651
Willy Tarreau96e31212011-05-30 18:10:30 +0200652 if ((!(b->flags & BF_NEVER_WAIT) &&
653 ((b->to_forward && b->to_forward != BUF_INFINITE_FORWARD) ||
654 (b->flags & BF_EXPECT_MORE))) ||
Willy Tarreauf8ca19b2011-05-30 17:32:53 +0200655 ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == BF_SHUTW_NOW && (max == b->send_max)) ||
656 (max != b->l && max != b->send_max)) {
Willy Tarreauface8392010-01-03 11:37:54 +0100657 send_flag |= MSG_MORE;
658 }
Willy Tarreau6db06d32009-08-19 11:14:11 +0200659
Willy Tarreau2be39392010-01-03 17:24:51 +0100660 /* this flag has precedence over the rest */
661 if (b->flags & BF_SEND_DONTWAIT)
662 send_flag &= ~MSG_MORE;
663
Willy Tarreau6db06d32009-08-19 11:14:11 +0200664 ret = send(si->fd, b->w, max, send_flag);
Willy Tarreau2be39392010-01-03 17:24:51 +0100665
Willy Tarreau8f8b4922011-05-11 20:14:03 +0200666 /* Always clear both flags once everything has been sent */
667 if (ret == max)
668 b->flags &= ~(BF_EXPECT_MORE | BF_SEND_DONTWAIT);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200669 } else {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200670 int skerr;
671 socklen_t lskerr = sizeof(skerr);
672
Willy Tarreau87bed622009-03-08 22:25:28 +0100673 ret = getsockopt(si->fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
Willy Tarreauc6423482006-10-15 14:59:03 +0200674 if (ret == -1 || skerr)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200675 ret = -1;
676 else
Willy Tarreau87bed622009-03-08 22:25:28 +0100677 ret = send(si->fd, b->w, max, MSG_DONTWAIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200678 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200679
680 if (ret > 0) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100681 if (fdtab[si->fd].state == FD_STCONN)
682 fdtab[si->fd].state = FD_STREADY;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100683
Willy Tarreau3da77c52008-08-29 09:58:42 +0200684 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreaue393fe22008-08-16 22:18:07 +0200685
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100686 b->w += ret;
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200687 if (b->w == b->data + b->size)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100688 b->w = b->data; /* wrap around the buffer */
689
690 b->l -= ret;
Willy Tarreau7c3c5412009-12-13 15:53:05 +0100691 if (likely(b->l < buffer_max_len(b)))
Willy Tarreaue393fe22008-08-16 22:18:07 +0200692 b->flags &= ~BF_FULL;
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100693
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200694 if (likely(!b->l))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100695 /* optimize data alignment in the buffer */
696 b->r = b->w = b->lr = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200697
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100698 b->send_max -= ret;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200699 if (!b->send_max) {
700 if (likely(!b->pipe))
701 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100702 break;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200703 }
Willy Tarreau83749182007-04-15 20:56:27 +0200704
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200705 /* if the system buffer is full, don't insist */
706 if (ret < max)
707 break;
708
Willy Tarreau6996e152007-04-30 14:37:43 +0200709 if (--write_poll <= 0)
710 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200711 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200712 else if (ret == 0 || errno == EAGAIN) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100713 /* nothing written, we need to poll for write first */
Willy Tarreau83749182007-04-15 20:56:27 +0200714 retval = 0;
715 break;
716 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200717 else {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100718 /* bad, we got an error */
719 retval = -1;
720 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200721 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200722 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200723
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100724 return retval;
725}
Willy Tarreau6996e152007-04-30 14:37:43 +0200726
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100727
728/*
729 * This function is called on a write event from a stream socket.
730 * It returns 0 if the caller needs to poll before calling it again, otherwise
731 * non-zero.
732 */
733int stream_sock_write(int fd)
734{
735 struct stream_interface *si = fdtab[fd].owner;
736 struct buffer *b = si->ob;
737 int retval = 1;
738
739#ifdef DEBUG_FULL
740 fprintf(stderr,"stream_sock_write : fd=%d, owner=%p\n", fd, fdtab[fd].owner);
741#endif
742
743 retval = 1;
Willy Tarreau71543652009-07-14 19:55:05 +0200744 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100745 goto out_error;
746
Willy Tarreaud06e7112009-03-29 10:18:41 +0200747 /* we might have been called just after an asynchronous shutw */
748 if (b->flags & BF_SHUTW)
749 goto out_wakeup;
750
Willy Tarreaub22e55b2011-03-20 10:16:46 +0100751 if (likely(!(b->flags & BF_OUT_EMPTY) || si->send_proxy_ofs)) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100752 /* OK there are data waiting to be sent */
753 retval = stream_sock_write_loop(si, b);
754 if (retval < 0)
755 goto out_error;
Willy Tarreau68f49da2011-03-28 23:17:54 +0200756 else if (retval == 0 && si->send_proxy_ofs)
757 goto out_may_wakeup; /* we failed to send the PROXY string */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200758 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100759 else {
760 /* may be we have received a connection acknowledgement in TCP mode without data */
761 if (likely(fdtab[fd].state == FD_STCONN)) {
762 /* We have no data to send to check the connection, and
763 * getsockopt() will not inform us whether the connection
764 * is still pending. So we'll reuse connect() to check the
765 * state of the socket. This has the advantage of givig us
766 * the following info :
767 * - error
768 * - connecting (EALREADY, EINPROGRESS)
769 * - connected (EISCONN, 0)
770 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200771 if ((connect(fd, fdinfo[fd].peeraddr, fdinfo[fd].peerlen) == 0))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100772 errno = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200773
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100774 if (errno == EALREADY || errno == EINPROGRESS) {
775 retval = 0;
776 goto out_may_wakeup;
777 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100778
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100779 if (errno && errno != EISCONN)
780 goto out_error;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200781
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100782 /* OK we just need to indicate that we got a connection
783 * and that we wrote nothing.
784 */
785 b->flags |= BF_WRITE_NULL;
786 fdtab[fd].state = FD_STREADY;
787 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200788
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100789 /* Funny, we were called to write something but there wasn't
790 * anything. We can get there, for example if we were woken up
791 * on a write event to finish the splice, but the send_max is 0
792 * so we cannot write anything from the buffer. Let's disable
793 * the write event and pretend we never came there.
794 */
795 }
796
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200797 if (b->flags & BF_OUT_EMPTY) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100798 /* the connection is established but we can't write. Either the
799 * buffer is empty, or we just refrain from sending because the
800 * send_max limit was reached. Maybe we just wrote the last
801 * chunk and need to close.
802 */
Willy Tarreau520d95e2009-09-19 21:04:57 +0200803 if (((b->flags & (BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == BF_SHUTW_NOW) &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100804 (si->state == SI_ST_EST)) {
805 stream_sock_shutw(si);
806 goto out_wakeup;
807 }
808
Willy Tarreau59454bf2009-09-20 11:13:40 +0200809 if ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreauac128fe2009-01-09 13:05:19 +0100810 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100811
Willy Tarreauac128fe2009-01-09 13:05:19 +0100812 EV_FD_CLR(fd, DIR_WR);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100813 b->wex = TICK_ETERNITY;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100814 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100815
816 out_may_wakeup:
817 if (b->flags & BF_WRITE_ACTIVITY) {
818 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200819 if ((b->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100820 b->wex = tick_add_ifset(now_ms, b->wto);
821
822 out_wakeup:
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200823 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100824 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200825 * during writes, we refresh it. We only do this if the
826 * interface is not configured for "independant streams",
827 * because for some applications it's better not to do this,
828 * for instance when continuously exchanging small amounts
829 * of data which can full the socket buffers long before a
830 * write timeout is detected.
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100831 */
832 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
833 }
834
835 /* the producer might be waiting for more room to store data */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200836 if (likely((b->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL|BF_DONT_READ)) == BF_WRITE_PARTIAL &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100837 (b->prod->flags & SI_FL_WAIT_ROOM)))
838 b->prod->chk_rcv(b->prod);
839
840 /* we have to wake up if there is a special event or if we don't have
841 * any more data to forward and it's not planned to send any more.
842 */
843 if (likely((b->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200844 ((b->flags & BF_OUT_EMPTY) && !b->to_forward) ||
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100845 si->state != SI_ST_EST ||
846 b->prod->state != SI_ST_EST))
847 task_wakeup(si->owner, TASK_WOKEN_IO);
848 }
849
850 fdtab[fd].ev &= ~FD_POLL_OUT;
851 return retval;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100852
Willy Tarreau6996e152007-04-30 14:37:43 +0200853 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100854 /* Write error on the file descriptor. We mark the FD as STERROR so
855 * that we don't use it anymore. The error is reported to the stream
856 * interface which will take proper action. We must not perturbate the
857 * buffer because the stream interface wants to ensure transparent
858 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200859 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100860
Willy Tarreau6996e152007-04-30 14:37:43 +0200861 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100862 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100863 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100864 si->flags |= SI_FL_ERR;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200865 task_wakeup(si->owner, TASK_WOKEN_IO);
866 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200867}
868
Willy Tarreau48adac52008-08-30 04:58:38 +0200869/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200870 * This function performs a shutdown-write on a stream interface in a connected or
871 * init state (it does nothing for other states). It either shuts the write side
Willy Tarreau99126c32008-11-27 10:30:51 +0100872 * or closes the file descriptor and marks itself as closed. The buffer flags are
Willy Tarreau7340ca52010-01-16 10:03:45 +0100873 * updated to reflect the new state. It does also close everything is the SI was
874 * marked as being in error state.
Willy Tarreau48adac52008-08-30 04:58:38 +0200875 */
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100876void stream_sock_shutw(struct stream_interface *si)
Willy Tarreau48adac52008-08-30 04:58:38 +0200877{
Willy Tarreau418fd472009-09-06 21:37:23 +0200878 si->ob->flags &= ~BF_SHUTW_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100879 if (si->ob->flags & BF_SHUTW)
880 return;
881 si->ob->flags |= BF_SHUTW;
882 si->ob->wex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100883 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau99126c32008-11-27 10:30:51 +0100884
Willy Tarreaub38903c2008-11-23 21:33:29 +0100885 switch (si->state) {
Willy Tarreaub38903c2008-11-23 21:33:29 +0100886 case SI_ST_EST:
Willy Tarreau720058c2009-07-14 19:21:50 +0200887 /* we have to shut before closing, otherwise some short messages
888 * may never leave the system, especially when there are remaining
889 * unread data in the socket input buffer, or when nolinger is set.
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100890 * However, if SI_FL_NOLINGER is explicitly set, we know there is
891 * no risk so we close both sides immediately.
Willy Tarreau720058c2009-07-14 19:21:50 +0200892 */
Willy Tarreau7340ca52010-01-16 10:03:45 +0100893 if (si->flags & SI_FL_ERR) {
894 /* quick close, the socket is already shut. Remove pending flags. */
895 si->flags &= ~SI_FL_NOLINGER;
896 } else if (si->flags & SI_FL_NOLINGER) {
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100897 si->flags &= ~SI_FL_NOLINGER;
898 setsockopt(si->fd, SOL_SOCKET, SO_LINGER,
899 (struct linger *) &nolinger, sizeof(struct linger));
900 } else {
901 EV_FD_CLR(si->fd, DIR_WR);
902 shutdown(si->fd, SHUT_WR);
Willy Tarreau720058c2009-07-14 19:21:50 +0200903
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100904 if (!(si->ib->flags & (BF_SHUTR|BF_DONT_READ)))
905 return;
906 }
Willy Tarreau5d707e12009-06-28 11:09:07 +0200907
Willy Tarreaub38903c2008-11-23 21:33:29 +0100908 /* fall through */
909 case SI_ST_CON:
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100910 /* we may have to close a pending connection, and mark the
911 * response buffer as shutr
912 */
Willy Tarreau48adac52008-08-30 04:58:38 +0200913 fd_delete(si->fd);
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100914 /* fall through */
915 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100916 case SI_ST_QUE:
917 case SI_ST_TAR:
Willy Tarreau7f006512008-12-07 14:04:04 +0100918 si->state = SI_ST_DIS;
919 default:
Willy Tarreaud06e7112009-03-29 10:18:41 +0200920 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100921 si->ib->flags |= BF_SHUTR;
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100922 si->ib->rex = TICK_ETERNITY;
Willy Tarreau127334e2009-03-28 10:47:26 +0100923 si->exp = TICK_ETERNITY;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100924 return;
Willy Tarreau48adac52008-08-30 04:58:38 +0200925 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200926
927 if (si->release)
928 si->release(si);
Willy Tarreau48adac52008-08-30 04:58:38 +0200929}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200930
Willy Tarreau2d212792008-08-27 21:41:35 +0200931/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200932 * This function performs a shutdown-read on a stream interface in a connected or
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100933 * init state (it does nothing for other states). It either shuts the read side
Willy Tarreau99126c32008-11-27 10:30:51 +0100934 * or closes the file descriptor and marks itself as closed. The buffer flags are
935 * updated to reflect the new state.
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200936 */
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100937void stream_sock_shutr(struct stream_interface *si)
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200938{
Willy Tarreau418fd472009-09-06 21:37:23 +0200939 si->ib->flags &= ~BF_SHUTR_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100940 if (si->ib->flags & BF_SHUTR)
941 return;
942 si->ib->flags |= BF_SHUTR;
943 si->ib->rex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100944 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100945
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100946 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100947 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200948
Willy Tarreaucff64112008-11-03 06:26:53 +0100949 if (si->ob->flags & BF_SHUTW) {
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200950 fd_delete(si->fd);
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100951 si->state = SI_ST_DIS;
Willy Tarreau127334e2009-03-28 10:47:26 +0100952 si->exp = TICK_ETERNITY;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200953
954 if (si->release)
955 si->release(si);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100956 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200957 }
958 EV_FD_CLR(si->fd, DIR_RD);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100959 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200960}
961
962/*
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200963 * Updates a connected stream_sock file descriptor status and timeouts
964 * according to the buffers' flags. It should only be called once after the
965 * buffer flags have settled down, and before they are cleared. It doesn't
966 * harm to call it as often as desired (it just slightly hurts performance).
967 */
Willy Tarreaub0253252008-11-30 21:37:12 +0100968void stream_sock_data_finish(struct stream_interface *si)
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200969{
Willy Tarreaub0253252008-11-30 21:37:12 +0100970 struct buffer *ib = si->ib;
971 struct buffer *ob = si->ob;
972 int fd = si->fd;
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200973
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200974 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 +0200975 now_ms, __FUNCTION__,
976 fd, fdtab[fd].owner,
977 ib, ob,
978 ib->rex, ob->wex,
979 ib->flags, ob->flags,
Willy Tarreaub0253252008-11-30 21:37:12 +0100980 ib->l, ob->l, si->state);
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200981
982 /* Check if we need to close the read side */
983 if (!(ib->flags & BF_SHUTR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200984 /* Read not closed, update FD status and timeout for reads */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200985 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200986 /* stop reading */
Willy Tarreau11f49402010-11-11 23:08:17 +0100987 if (!(si->flags & SI_FL_WAIT_ROOM)) {
988 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
989 si->flags |= SI_FL_WAIT_ROOM;
990 EV_FD_COND_C(fd, DIR_RD);
991 ib->rex = TICK_ETERNITY;
992 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200993 }
994 else {
995 /* (re)start reading and update timeout. Note: we don't recompute the timeout
996 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200997 * update it if is was not yet set. The stream socket handler will already
998 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200999 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +01001000 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau2d212792008-08-27 21:41:35 +02001001 EV_FD_COND_S(fd, DIR_RD);
Willy Tarreauf1ba4b32009-10-17 14:37:52 +02001002 if (!(ib->flags & (BF_READ_NOEXP|BF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau2d212792008-08-27 21:41:35 +02001003 ib->rex = tick_add_ifset(now_ms, ib->rto);
1004 }
1005 }
1006
1007 /* Check if we need to close the write side */
1008 if (!(ob->flags & BF_SHUTW)) {
Willy Tarreau2d212792008-08-27 21:41:35 +02001009 /* Write not closed, update FD status and timeout for writes */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001010 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreau2d212792008-08-27 21:41:35 +02001011 /* stop writing */
Willy Tarreau11f49402010-11-11 23:08:17 +01001012 if (!(si->flags & SI_FL_WAIT_DATA)) {
1013 if ((ob->flags & (BF_FULL|BF_HIJACK|BF_SHUTW_NOW)) == 0)
1014 si->flags |= SI_FL_WAIT_DATA;
1015 EV_FD_COND_C(fd, DIR_WR);
1016 ob->wex = TICK_ETERNITY;
1017 }
Willy Tarreau2d212792008-08-27 21:41:35 +02001018 }
1019 else {
1020 /* (re)start writing and update timeout. Note: we don't recompute the timeout
1021 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +02001022 * update it if is was not yet set. The stream socket handler will already
1023 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +02001024 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +01001025 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau2d212792008-08-27 21:41:35 +02001026 EV_FD_COND_S(fd, DIR_WR);
Willy Tarreaufe8903c2009-10-04 10:56:08 +02001027 if (!tick_isset(ob->wex)) {
Willy Tarreau2d212792008-08-27 21:41:35 +02001028 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001029 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +02001030 /* Note: depending on the protocol, we don't know if we're waiting
1031 * for incoming data or not. So in order to prevent the socket from
1032 * expiring read timeouts during writes, we refresh the read timeout,
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001033 * except if it was already infinite or if we have explicitly setup
1034 * independant streams.
Willy Tarreau2d212792008-08-27 21:41:35 +02001035 */
Willy Tarreaud06e7112009-03-29 10:18:41 +02001036 ib->rex = tick_add_ifset(now_ms, ib->rto);
Willy Tarreau2d212792008-08-27 21:41:35 +02001037 }
1038 }
1039 }
1040 }
Willy Tarreau2d212792008-08-27 21:41:35 +02001041}
1042
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001043/* This function is used for inter-stream-interface calls. It is called by the
1044 * consumer to inform the producer side that it may be interested in checking
1045 * for free space in the buffer. Note that it intentionally does not update
1046 * timeouts, so that we can still check them later at wake-up.
1047 */
1048void stream_sock_chk_rcv(struct stream_interface *si)
1049{
1050 struct buffer *ib = si->ib;
1051
1052 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",
1053 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +00001054 si->fd, fdtab[si->fd].owner,
1055 ib, si->ob,
1056 ib->rex, si->ob->wex,
1057 ib->flags, si->ob->flags,
1058 ib->l, si->ob->l, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001059
1060 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
1061 return;
1062
Willy Tarreauf1ba4b32009-10-17 14:37:52 +02001063 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001064 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +02001065 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001066 si->flags |= SI_FL_WAIT_ROOM;
1067 EV_FD_COND_C(si->fd, DIR_RD);
1068 }
1069 else {
1070 /* (re)start reading */
1071 si->flags &= ~SI_FL_WAIT_ROOM;
1072 EV_FD_COND_S(si->fd, DIR_RD);
1073 }
1074}
1075
1076
1077/* This function is used for inter-stream-interface calls. It is called by the
1078 * producer to inform the consumer side that it may be interested in checking
1079 * for data in the buffer. Note that it intentionally does not update timeouts,
1080 * so that we can still check them later at wake-up.
1081 */
1082void stream_sock_chk_snd(struct stream_interface *si)
1083{
1084 struct buffer *ob = si->ob;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001085 int retval;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001086
1087 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",
1088 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +00001089 si->fd, fdtab[si->fd].owner,
1090 si->ib, ob,
1091 si->ib->rex, ob->wex,
1092 si->ib->flags, ob->flags,
1093 si->ib->l, ob->l, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001094
1095 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
1096 return;
1097
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001098 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
1099 (fdtab[si->fd].ev & FD_POLL_OUT) || /* we'll be called anyway */
Willy Tarreaub22e55b2011-03-20 10:16:46 +01001100 ((ob->flags & BF_OUT_EMPTY) && !(si->send_proxy_ofs))) /* called with nothing to send ! */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001101 return;
1102
1103 retval = stream_sock_write_loop(si, ob);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001104 /* here, we have :
1105 * retval < 0 if an error was encountered during write.
1106 * retval = 0 if we can't write anymore without polling
1107 * retval = 1 if we're invited to come back when desired
1108 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001109 if (retval < 0) {
1110 /* Write error on the file descriptor. We mark the FD as STERROR so
1111 * that we don't use it anymore and we notify the task.
1112 */
1113 fdtab[si->fd].state = FD_STERROR;
1114 fdtab[si->fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +01001115 EV_FD_REM(si->fd);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001116 si->flags |= SI_FL_ERR;
1117 goto out_wakeup;
1118 }
Willy Tarreau68f49da2011-03-28 23:17:54 +02001119 else if (retval == 0 && si->send_proxy_ofs)
1120 goto out_may_wakeup; /* we failed to send the PROXY string */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001121
Willy Tarreauc54aef32009-07-27 20:08:06 +02001122 /* OK, so now we know that retval >= 0 means that some data might have
1123 * been sent, and that we may have to poll first. We have to do that
1124 * too if the buffer is not empty.
1125 */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001126 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001127 /* the connection is established but we can't write. Either the
1128 * buffer is empty, or we just refrain from sending because the
1129 * send_max limit was reached. Maybe we just wrote the last
1130 * chunk and need to close.
1131 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02001132 if (((ob->flags & (BF_SHUTW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTW_NOW)) ==
1133 (BF_AUTO_CLOSE|BF_SHUTW_NOW)) &&
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001134 (si->state == SI_ST_EST)) {
1135 stream_sock_shutw(si);
1136 goto out_wakeup;
1137 }
Willy Tarreaud06e7112009-03-29 10:18:41 +02001138
Willy Tarreau59454bf2009-09-20 11:13:40 +02001139 if ((ob->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001140 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001141 ob->wex = TICK_ETERNITY;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001142 }
1143 else {
Willy Tarreauc54aef32009-07-27 20:08:06 +02001144 /* Otherwise there are remaining data to be sent in the buffer,
1145 * which means we have to poll before doing so.
1146 */
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001147 EV_FD_COND_S(si->fd, DIR_WR);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001148 si->flags &= ~SI_FL_WAIT_DATA;
1149 if (!tick_isset(ob->wex))
1150 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001151 }
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001152
Willy Tarreau68f49da2011-03-28 23:17:54 +02001153 out_may_wakeup:
Willy Tarreauc9619462009-03-09 22:40:57 +01001154 if (likely(ob->flags & BF_WRITE_ACTIVITY)) {
1155 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001156 if ((ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreauc9619462009-03-09 22:40:57 +01001157 ob->wex = tick_add_ifset(now_ms, ob->wto);
1158
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001159 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreauc9619462009-03-09 22:40:57 +01001160 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001161 * during writes, we refresh it. We only do this if the
1162 * interface is not configured for "independant streams",
1163 * because for some applications it's better not to do this,
1164 * for instance when continuously exchanging small amounts
1165 * of data which can full the socket buffers long before a
1166 * write timeout is detected.
Willy Tarreauc9619462009-03-09 22:40:57 +01001167 */
1168 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
1169 }
1170 }
1171
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001172 /* in case of special condition (error, shutdown, end of write...), we
1173 * have to notify the task.
1174 */
1175 if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001176 ((ob->flags & BF_OUT_EMPTY) && !ob->to_forward) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001177 si->state != SI_ST_EST)) {
1178 out_wakeup:
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001179 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
1180 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001181 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001182}
1183
Willy Tarreaueb472682010-05-28 18:46:57 +02001184/* This function is called on a read event from a listening socket, corresponding
1185 * to an accept. It tries to accept as many connections as possible, and for each
1186 * calls the listener's accept handler (generally the frontend's accept handler).
1187 */
1188int stream_sock_accept(int fd)
1189{
1190 struct listener *l = fdtab[fd].owner;
1191 struct proxy *p = l->frontend;
1192 int max_accept = global.tune.maxaccept;
1193 int cfd;
1194 int ret;
1195
1196 if (unlikely(l->nbconn >= l->maxconn)) {
1197 EV_FD_CLR(l->fd, DIR_RD);
1198 l->state = LI_FULL;
1199 return 0;
1200 }
1201
1202 if (p && p->fe_sps_lim) {
1203 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
1204 if (max_accept > max)
1205 max_accept = max;
1206 }
1207
1208 while ((!p || p->feconn < p->maxconn) && actconn < global.maxconn && max_accept--) {
1209 struct sockaddr_storage addr;
1210 socklen_t laddr = sizeof(addr);
1211
1212 cfd = accept(fd, (struct sockaddr *)&addr, &laddr);
1213 if (unlikely(cfd == -1)) {
1214 switch (errno) {
1215 case EAGAIN:
1216 case EINTR:
1217 case ECONNABORTED:
1218 return 0; /* nothing more to accept */
1219 case ENFILE:
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001220 if (p)
1221 send_log(p, LOG_EMERG,
1222 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
1223 p->id, maxfd);
Willy Tarreau10029872011-07-22 16:56:33 +02001224 if (l->nbconn) {
1225 EV_FD_CLR(l->fd, DIR_RD);
1226 l->state = LI_FULL;
1227 }
Willy Tarreaueb472682010-05-28 18:46:57 +02001228 return 0;
1229 case EMFILE:
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001230 if (p)
1231 send_log(p, LOG_EMERG,
1232 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
1233 p->id, maxfd);
Willy Tarreau10029872011-07-22 16:56:33 +02001234 if (l->nbconn) {
1235 EV_FD_CLR(l->fd, DIR_RD);
1236 l->state = LI_FULL;
1237 }
Willy Tarreaueb472682010-05-28 18:46:57 +02001238 return 0;
1239 case ENOBUFS:
1240 case ENOMEM:
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001241 if (p)
1242 send_log(p, LOG_EMERG,
1243 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
1244 p->id, maxfd);
Willy Tarreau10029872011-07-22 16:56:33 +02001245 if (l->nbconn) {
1246 EV_FD_CLR(l->fd, DIR_RD);
1247 l->state = LI_FULL;
1248 }
Willy Tarreaueb472682010-05-28 18:46:57 +02001249 return 0;
1250 default:
1251 return 0;
1252 }
1253 }
1254
1255 if (unlikely(cfd >= global.maxsock)) {
Willy Tarreaufffe1322010-11-11 09:48:16 +01001256 send_log(p, LOG_EMERG,
1257 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
1258 p->id);
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001259 close(cfd);
1260 return 0;
Willy Tarreaueb472682010-05-28 18:46:57 +02001261 }
1262
Willy Tarreauaf7ad002010-08-31 15:39:26 +02001263 jobs++;
Willy Tarreau24dcaf32010-06-05 10:49:41 +02001264 actconn++;
1265 totalconn++;
1266 l->nbconn++;
1267
1268 if (l->counters) {
1269 if (l->nbconn > l->counters->conn_max)
1270 l->counters->conn_max = l->nbconn;
1271 }
1272
Willy Tarreaueb472682010-05-28 18:46:57 +02001273 ret = l->accept(l, cfd, &addr);
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001274 if (unlikely(ret <= 0)) {
1275 /* The connection was closed by session_accept(). Either
1276 * we just have to ignore it (ret == 0) or it's a critical
1277 * error due to a resource shortage, and we must stop the
1278 * listener (ret < 0).
1279 */
1280 jobs--;
1281 actconn--;
1282 l->nbconn--;
1283 if (ret == 0) /* successful termination */
1284 continue;
1285
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001286 if (p) {
Willy Tarreaue9f32db2010-09-21 21:14:29 +02001287 disable_listener(l);
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001288 p->state = PR_STIDLE;
1289 }
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001290 return 0;
Willy Tarreaueb472682010-05-28 18:46:57 +02001291 }
1292
Willy Tarreaueb472682010-05-28 18:46:57 +02001293 if (l->nbconn >= l->maxconn) {
1294 EV_FD_CLR(l->fd, DIR_RD);
1295 l->state = LI_FULL;
Willy Tarreauff45b8c2011-07-24 19:16:52 +02001296 return 0;
Willy Tarreaueb472682010-05-28 18:46:57 +02001297 }
Willy Tarreaueb472682010-05-28 18:46:57 +02001298 } /* end of while (p->feconn < p->maxconn) */
1299 return 0;
Willy Tarreaueb472682010-05-28 18:46:57 +02001300}
1301
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001302
Willy Tarreaua8f55d52010-05-31 17:44:19 +02001303/* Prepare a stream interface to be used in socket mode. */
1304void stream_sock_prepare_interface(struct stream_interface *si)
1305{
1306 si->update = stream_sock_data_finish;
1307 si->shutr = stream_sock_shutr;
1308 si->shutw = stream_sock_shutw;
1309 si->chk_rcv = stream_sock_chk_rcv;
1310 si->chk_snd = stream_sock_chk_snd;
Willy Tarreaua8f55d52010-05-31 17:44:19 +02001311}
1312
Willy Tarreaubaaee002006-06-26 02:48:02 +02001313
1314/*
1315 * Local variables:
1316 * c-indent-level: 8
1317 * c-basic-offset: 8
1318 * End:
1319 */